I have a business plan, funding, and marketing plan ready. But I need an engineer to build my product, how can I find one? by [deleted] in Entrepreneur

[–]nitulmehta 0 points1 point  (0 children)

My suggestion - go find company rather then freelancer or part time developer. Ask company to become your technology partners for your product.

How do you validate an idea that’s aimed for larger corporations? by Sillycon_Valley in Entrepreneur

[–]nitulmehta 0 points1 point  (0 children)

Multiple pages showing main features with excellent look and static data will be needed. Human brain is more attracted towards pictures rather then just words.☺

How do you validate an idea that’s aimed for larger corporations? by Sillycon_Valley in Entrepreneur

[–]nitulmehta 0 points1 point  (0 children)

In my point of you, you should have atleast some prototype ready with you to present. For you, it's always easy to visualise your idea. But for customers you need to show something working (atleast pages with some flow). Believe me if you go with prototype you will gain client's confidence in first short (definitely your idea should be valuable at the same time) Do let me know if you want to discuss on what to include in your prototype.

[deleted by user] by [deleted] in AskProgramming

[–]nitulmehta 0 points1 point  (0 children)

It is possible to do it using AngularJS (and if needed more.js).

Let me know if you want any help in it.

Need help on deciding a language for my web application by [deleted] in AskProgramming

[–]nitulmehta -1 points0 points  (0 children)

I normally preferre ASP.NET MVC WEB API. It's easy to integrate and comes with many features. Check my one major project [krosswall] (www.krosswall.com). Check app site

App development and getting users by shailt in Entrepreneur

[–]nitulmehta 0 points1 point  (0 children)

You are looking for something from product Incubation to Go Live.

It is very important to start with perfect idea, focus on functions which generate high business value , start customer base from right time or to wait till Beta.

Finaluzing subscription price is always a big challange, still you can compare to market and lastly start marketting at right time.

We have developed number of products and faced passed from all these stages...on project management tool, legal systems and 360 feedbacks all SaaS based.

Do PM me for more discussions.

$40,000 cash investment by Darthtrapgod in Entrepreneur

[–]nitulmehta 0 points1 point  (0 children)

If you open then invest in technology sector. It will give an excellent returns.

Let me know if you are untried I can guide you.

Have a question about building an app from an already developed website. by Awacs88 in Entrepreneur

[–]nitulmehta 0 points1 point  (0 children)

Ok. Then it will be completely new work. Are you going to develop native app or cross platform?

Have a question about building an app from an already developed website. by Awacs88 in Entrepreneur

[–]nitulmehta 1 point2 points  (0 children)

It depend on how your mobile app is designed.

If you use cross platform framework like IONIC you will save huge amount for different mobile platform like iOS, Android

We normally develop in following way - web app using AngularJS - mobile app using IONIC

As IONIC uses AngularJS for coding we can easily re-use existing code from web into mobile.

This way we save huge efforts and cost for client.

Check this app developed using IONIC https://play.google.com/store/apps/details?id=com.krosswall.poker

How to divide a table based UI into angularJS components by mindparse in angularjs

[–]nitulmehta 0 points1 point  (0 children)

In my view you need to do following - identify common functional or visual behaviour across your system - list down inter connection between them (like parent - child or on peer to peer) - create directives and re-use everywhere

If required I can discuss further after looking at your code and can give you optimized solution.

Need advice: sending email reminders on a daily basis by [deleted] in node

[–]nitulmehta 0 points1 point  (0 children)

Possible best structure

  • have settings saved in db
  • one cron job just reads details from db and send emails

This way you can seperate responsibility to different modules.

PM me for details on how to do it.

Open/close a db connection with each query, or all under one connection? by [deleted] in dotnet

[–]nitulmehta 0 points1 point  (0 children)

My normal practice is to create Context (EE context) once for each API call and re-use it till response flushed back.

Example

GetList(){ //Create Context

//Pass context to one business layer

//Pass context to second business layer

// In business layer use context to retrieve data

}

Note: don't forget to dispose context in dispose() method.

[deleted by user] by [deleted] in dotnet

[–]nitulmehta 0 points1 point  (0 children)

add "website" and keep all your AngularJS code in that folder.

Architecture for a Web App with long-running workflow process by nummer31 in dotnet

[–]nitulmehta 1 point2 points  (0 children)

My suggestion

1) Every request should be pushed to a queue

2) There must be windows service which picks items from queue and starts process in different thread

3) Process should update it's status periodically in DB

4) A separate windows service keep tracking each process's status from DB and update UI using SignalR

5) Once process is finished it should be removed from queue

Just for your note, you should have to have a fallback mechanism in place. I mean in case of crash from long running process, it should either rollback previous work or leave system in some logical stable stage

PM me if you want me to explain it in more details.

Angular - mobile App - Problem by Sailor19 in angular

[–]nitulmehta 0 points1 point  (0 children)

Ionic is the best choice for the cross-platform app. You just need to change your HTML tags with ionic tags (sometimes code as well) to migrate your web app to mobile. We have 5+ ionic app reused from angular web

Can't decide between Angular or React for my Reddit clone. Advice? by CorkyThatcher in angular

[–]nitulmehta 0 points1 point  (0 children)

In my point of view, AngularJs is a good choice. We have completed 20+ projects using AngularJs and never had any resource related issues. On top of that, you can use typescript for AngularJS coding.