18
votes
18answers
2k views
What Hosting Service is best for Django applications?
I have been using django a great deal lately and would like to find a home to host my apps.
What is the best django web host? (Official django support preferred)
Which service has the lowest …
12
votes
6answers
2k views
Automate Deployment for Web Applications?
My team is currently trying to automate the deployment of our .Net and PHP web applications. We want to streamline deployments, and to avoid the hassle and many of the headaches caused by doing it …
12
votes
14answers
1k views
What’s your opinion on using UUIDs as database row identifiers, particularly in web apps?
I've always preferred to use long integers as primary keys in databases, for simplicity and (assumed) speed. But when using a REST or Rails-like URL scheme for object instances, I'd then end up with …
11
votes
5answers
484 views
How can I try a new language or framework without installing it?
With so many languages and frameworks that exist, and with new ones appearing all the time, I don't have the time to download, install, and configure each one to evaluate it. In the past I've run …
10
votes
6answers
1k views
In Java, do I need to declare my collection synchronized if it’s read-only ?
I fill a collection one single time when my J2EE webapp starts.
Then, several thread may access it at same time but only to read it.
I know using a synchronized collection is mandatory for parallels …
10
votes
9answers
861 views
Is Java relevant in the game industry?
Hi everyone, I'm a web developer/apps programmer who wants to break in the game industry.
I used to code in C/C++/C# for desktop apps (mainly database-oriented enterprise apps)
but nowadays I mainly …
10
votes
9answers
3k views
iPhone web applications, templates, frameworks?
Does anyone have any good starting points for me when looking at making web pages/sites/applications specifically for viewing on the iPhone?
I've looked at templates like the one Joe Hewitt has made, …
7
votes
14answers
499 views
Why are web applications more popular than local applications?
I ask this because at work I am supposed to develop a web-application that is used in an intranet, by two people. It's an application that should keep some states in a workflow. So I have to keep …
7
votes
6answers
795 views
How to make subdomain user accounts in a webapp
I am looking to allow users to control of subdomain of an app I am toying with, much like Basecamp where it is 'customusername.seework.com'.
What is required on the DNS end to allow these to be …
6
votes
8answers
1k views
Which web development framework works best with Google App Engine?
Now that Google allows Java on App Engine, I'm wondering what effect this has on a choice of web framework for App Engine.
I realize Google provides the webapp
framework which is pretty barebones.
…
6
votes
8answers
379 views
Guidelines for accepting email messages as input to application
A number of applications have the handy feature of allowing users to respond to notification emails from the application. The responses are slurped back into the application.
For example, if you …
6
votes
8answers
296 views
Web Pages That Just Do Too Much Stuff
Concerning pages that build a web application:
Lately, I have found myself creating web pages that are simpler than the ones I used to. Before, I would try to jam as much functionality into a single …
5
votes
8answers
539 views
Where to store database credentials in a web app?
I'm wondering what techniques you use to store the database credentials for your application. I'm specifically concerned with java webapps, but I don't think there's any need to limit the questions …
5
votes
5answers
230 views
How to test a webapplication?
If I have java-webapp (servlets), what is the best way to create automated tests for this application?
Should I start a server? But that is very fragile. Should I call the servlets directly? But how …
5
votes
7answers
548 views
How do you support a web app with hashed or encrypted passwords?
When supporting a new web app in an enterprise environment, it is often necessary to log in as a specific user in order to diagnose a real or perceived problem they are having. Two opposing issues …
