Web applications are applications that are accessed over the "web", which can mean the Internet, or an internal network (an intranet).
-3
votes
0answers
20 views
Cloud storage with a frontend file browser widget [closed]
I'm building a CRM web app, and want to store documents on a per-customer basis. The way I'd do it is to simply create a separate directory for each customer, with their id being the name of the ...
2
votes
3answers
62 views
Create Offline Demo Environment Database Substitute
I would like to know if there is a best practice for creating demo environments that substitutes database interaction into other forms of resource
i.e. creating .json files containing the data that ...
0
votes
0answers
47 views
How to define requirements for mobile web applications?
A client who currently owns a huge client base has asked us for a mobile web application development, that should run on both phones and tablets for the Android and iOS platforms. The expected ...
2
votes
1answer
231 views
Power of HTML5?
HTML5 is becoming more and more popular everyday. Many great online applications are now being created and described as pure HTML5 apps. (Like Muro)
But I don't understand what is exactly so cool ...
2
votes
1answer
47 views
Good approaches for packaging PHP web applications for Debian
Many PHP web applications follow this model for installation and upgrade:
Un-tar a source tar ball.
Point Apache at the source.
Navigate a web browser to the home page.
Go through several web pages ...
0
votes
1answer
51 views
Converting Java applet to web application
I would like to convert this Java applet into an equivalent web app. This is my first time creating a web app, but I have some programming experience and time, and am willing to teach myself all of ...
2
votes
1answer
100 views
caching on multiple servers
Because we need to keep response times low, we get tons of requests, and we need to basically process ALMOST the same data (which I'll refer to as X) each request (the inputs are different though, so ...
-3
votes
0answers
88 views
Converting Java applet to “HTML5”? [closed]
I am a novice programmer, but the most experienced one in my organization.
We have a number of dated online Java applets (with source code) which run various simulations.
My task is to "convert them ...
2
votes
2answers
136 views
How can we avoid having to build yet another CRM system from scratch
We are building an accounting web application. In our database, we store basic data about our customers, like phone number, their login informations, because these things are tied into our web ...
-3
votes
0answers
57 views
Which programming languages are used to develop online Image Editing web application? [closed]
I'm looking to develop an online image editing web application, such as Picmonkey or Photoshop Express Editor, but a little less complex.
Which programming languages will best suit what I aim on ...
-2
votes
2answers
141 views
Is it reasonable to use Javascript MVC Frameworks for closed source paid web applications?
I am wondering if it is reasonable to write closed source, paid web apps in Javascript (JS MVC Frameworks like AngularJS, Backbone, Knockout, ...)? I'm concerned because in this type of frameworks you ...
-2
votes
0answers
116 views
What is the next step in app development after writing a cool program? [closed]
I've written a couple of programs in python on my computer that work well and I like a lot (keeping track of grades, setting goals and keeping track of progress in the gym, etc.).
I always run into ...
2
votes
3answers
145 views
How to get a Web Application to communicate between users
I am developing a multipalyer web Application for Anti-Chess. It would be hosted on Google App Engine.
I have a few questions:
How do I get two different users who have opened the webapp on their ...
0
votes
1answer
49 views
Application architecture for subscriber based system
I am planning on building a system where users "subscribe" to "records".
Records are updated on a schedule, several times a day.
When records are updated, the user should be notified that these ...
4
votes
6answers
410 views
HTTP Session or Database approach
I am confused a little as what should be my approach, Working on a design of shopping cart and i need to store shopping cart either in session or in database but not sure which approach would be ...