Web development is the development of sites on the World Wide Web or private intranets. It includes many topics including server side programming, client side scripting, web services and site design.
711
votes
8answers
85k views
The Definitive Guide To Forms based Website Authentication
Form Based Authentication For Websites
Please help us create the definitive resource for this topic. We believe that stackoverflow should not just be a resource for very specific technical questions, ...
321
votes
4answers
42k views
What's the shebang/hashbang (#!) in Facebook and new Twitter URLs for?
I've just noticed that the long, convoluted Facebook URLs that we're used to now look like this:
http://www.facebook.com/example.profile#!/pages/Another-Page/123456789012345
As far as I can recall, ...
281
votes
13answers
19k views
How to Manage CSS Explosion
I have been heavily relying on CSS for a website that I am working on (currently, everything is done as property values within each tag on the website and I'm trying to get away from that to make ...
168
votes
23answers
21k views
Does Django Scale?
I'm building a web application with Django. The reasons I chose Django were:
I wanted to work with free/open-source tools
I like Python and feel it's a "long term" language, whereas regarding Ruby I ...
166
votes
11answers
9k views
Payment Processors - What do I need to know if I want to accept credit cards on my website?
This question talks about different payment processors and what they cost, but I'm looking for the answer to what do I need to do if I want to accept credit card payments?
Assume I need to store ...
158
votes
19answers
8k views
How do I politely decline building stuff for relatives/friends? [closed]
The build
I like to build stuff in my free time, and I have coded several websites for stuff I am part of. I've build a family webzone where my family can log in, and I've build the webportal of my ...
154
votes
15answers
144k views
Firebug-like debugger for Google Chrome
Is there anything like Firebug that you can use within Google Chrome?
Essential features I would like:
Inspect HTML source (select elements, delete them, etc.)
check CSS values (the built-in ...
133
votes
13answers
46k views
When is a CDATA section necessary within a script tag?
Are CDATA tags ever necessary in script tags and if so when?
In other words, when and where is this:
<script type="text/javascript">
//<![CDATA[
...code...
//]]>
</script>
...
129
votes
15answers
43k views
How do you disable browser Autocomplete on web form field / input tag?
How do you disable Autocomplete in the major browsers for a specific input (or form field)?
122
votes
20answers
3k views
Help building a website using punched cards?
My punched card looks like this:
* * * * *
* * * *
* * *
* * * *
* * * * *
* * * *
My website ...
122
votes
44answers
30k views
What is the longest human name you can expect? [closed]
What is the longest name that you should expect to get as input to your program or database?
I don't want to truncate unusual names, but I also don't want people to paste a novel in my name field as ...
122
votes
30answers
63k views
What is the best PHP programming book? [closed]
I'm interested to find out what Stack Overflow believes the best PHP book is - both for those who are beginners to web programming as well as those who have previous programming experience (they don't ...
97
votes
8answers
6k views
Why does 2 == [2] in JavaScript?
I recently discovered that 2 == [2] in JavaScript. As it turns out, this quirk has a couple of interesting consequences:
var a = [0, 1, 2, 3];
a[[2]] === a[2]; // this is true
Similarly, the ...
91
votes
2answers
15k views
CSS Selectors parsed right to left. Why?
CSS Selectors are parsed by browser engines right to left. So they first find the children and then check their parents to see if they match the rest of the parts of the rule.
Why is this?
Is it ...
90
votes
6answers
22k views
How do you make a web application in Clojure?
I suppose this is a strange question to the huge majority of programmers that work daily with Java. I don't. I know Java-the-language, because I worked on Java projects, but not Java-the-world. I ...
89
votes
9answers
3k views
I never really understood: what is CGI?
CGI is a Comman Gateway Interface. As the name says, it is a "common" gateway interface for everything. It is so trivial and naive from the name. I feel that I understood this and I felt this every ...
88
votes
9answers
6k views
What questions should a JavaScript programmer be able to answer?
Suppose a company is going to hire JavaScript coders. I wonder what question should this company use to properly evaluate them. Even though general programming skills are more important than ...
88
votes
13answers
26k views
SVG vs CANVAS, where is the Web World going towards?
I need to pick one of two technologies (svg, canvas) for an ongoing project of mine. I would prefer to pick the technology that is more maintained and in active development rather then choose a ...
87
votes
4answers
7k views
How to decide when to use NodeJS?
I am a n00b in this kind of stuff but lately I've been hearing a lot about how good NodeJS is. Considering how much I love working with jQuery and Javascript in general, I can't help but wonder how to ...
83
votes
9answers
5k views
Pagination in a REST web application
This is a more generic reformulation of this question (with the elimination of the Rails specific parts)
I am not sure how to implement pagination on a resource in a RESTful web application.
Assuming ...
83
votes
11answers
41k views
Cookie blocked/not saved in IFRAME in Internet Explorer
I have two websites, let's say they're example.com and anotherexample.net.
On anotherexample.net/page.html, I have an IFRAME SRC="http://example.com/someform.asp". That IFRAME displays a form for the ...
79
votes
35answers
37k views
Which is the future of web development: HTML5 or Silverlight(or other RIA framework)? [closed]
My colleagues have a heated debate on what is the future of web development. One side is supporting HTML5 and the other is supporting Silverlight. There is no conclusion of the debate yet.
In my ...
78
votes
17answers
3k views
Common Web UI Styles
I have to present a prototype of an web app in the following days to one of my clients, the thing is I'm not so good at CSS and worst of all I'm almost never happy with the results I get.
Coding the ...
73
votes
27answers
6k views
Is Perl still a viable language for web development?
I am currently in the process of designing a database-driven website to manage various personal data and some business data. This is primarily a personal app, however it will be used by a few clients ...
72
votes
16answers
5k views
How do you implement a “Did you mean”?
Suppose you have a search system already in your website. How can you implement the "Did you mean: " like Google does in some search queries?
69
votes
10answers
19k views
Will web browsers cache content over https
Will content requested over https still be cached by web browsers or do they consider this insecure behaviour? If this is the case is there anyway to tell them it's ok to cache?
65
votes
35answers
4k views
Tools for faster, better web development
Over the years most web developers will have built an arsenal of tools or "tools of the trade". Recently I discovered rsync and I am surprised how I managed to live without it all these years. What ...
65
votes
26answers
11k views
What are the pros and cons of the assorted Java web frameworks? [closed]
I am considering creating my own website using Java and am trying to decide what framework to use. However, doing a quick search for Java frameworks returns more than 50 to choose from!
My website is ...
64
votes
5answers
144k views
jQuery get textarea text
Recently I have started playing with jQuery, and have been following a couple of tutorials. Now I feel slightly competent with using it (it's pretty easy), and I thought it would be cool if I were ...
64
votes
33answers
39k views
What is the best web prototyping tool?
What is the best tool to create a web application interface prototype?
63
votes
31answers
5k views
Usability hints for building an adult web site?
What are the usability considerations that should be taken into account by anyone who decided to build a good adult web site?
Disclaimer: I know the question is going to cause some controversy, but ...
60
votes
33answers
2k views
Features/functions that make your app more professional? Coding hobbyhorses
What features do you implement (how) in your PHP web applications because
you deem it "more professional" in some way? Or do you have personal nitpicks
and code hobbyhorses, specifically small things ...
60
votes
7answers
6k views
Has anyone used Coffeescript for a production application? [closed]
Coffeescript looks pretty cool. Has anyone used it? What are its Pros & Cons?
59
votes
20answers
19k views
GET versus POST in terms of security?
This may be a dumb question, but between a http POST and GET, what are the differences from a security perspective? Is one inherently more secure then another? I realize that POST doesn't expose ...
58
votes
11answers
11k views
Why em instead of px?
I heard you should define sizes and distances in your stylesheet with em instead of in pixels. So the question is why should I use em instead of px when defining styles in css? Is there a good example ...
58
votes
9answers
62k views
Can jQuery read/write cookies to a browser?
Simple example: I want to have some items on a page (like divs or table rows) and I want to let the user click on them to select them. That seems easy enough in jquery. To save which items a user ...
57
votes
15answers
4k views
What is the best Distributed Brute Force countermeasure?
First, a little background: It is no secret that I am implementing an auth+auth system for CodeIgniter, and so far I'm winning (so to speak). But I've run into a pretty non-trivial challenge (one that ...
56
votes
6answers
11k views
Play Framework: Real-world production experiences? [closed]
Has anyone used the Play framework for a reasonably complex or large, deployed production app yet? If so, I would like to hear what the pros and cons of that experience were and what you might do ...
56
votes
5answers
2k views
Web scraping etiquette
I'm considering writing a simple web scraping application to extract information from a website that does not seem to specifically prohibit this.
I've checked for other alternatives (eg RSS, web ...
56
votes
9answers
6k views
UTF-8 all the way through
I'm setting up a new server, and want to support UTF-8 fully in my web application. I have tried in the past on existing servers and always seem to end up having to fall back to ISO-8859-1.
Where ...
55
votes
12answers
10k views
Programmatically access currency exchange rates
I'm setting up an online ordering system but I'm in Australia and for international customers I'd like to show prices in US dollars or Euros so they don't have to make the mental effort to convert ...
54
votes
26answers
24k views
How popular is C++ for making websites/web applications?
I don't know why this is question is bugging me, but time after time I come back to the though - why not make websites in C++? So far I know of none (except a rumor about Yahoo). Most use PHP, Java or ...
53
votes
17answers
3k views
Pre-installed Linux for Web Developers?
Does anybody know an ISO image of a up-to-date Linux distribution aimed at web developers with one, some or all of the following features:
LAMP stack readily set up (Readily installed Apache 2, ...
53
votes
30answers
4k views
What are the best web design sites?
I just wanted to know what are the best websites about web design?
I'm looking for websites about either web design, CSS, Photoshop for the web or web development in general (like new web ...
53
votes
7answers
9k views
REST API error return good practices
I'm looking for guidance on good practices when it comes to return errors from a REST API. I'm working on a new API so I can take it any direction right now. My content type is XML at the moment, but ...
52
votes
18answers
24k views
Choosing a Java Web Framework now? [closed]
we are in the planning stage of migrating a large website which is built on a custom developed mvc framework to a java based web framework which provides built-in support for ajax, rich media content, ...
52
votes
13answers
13k views
What is your preferred php deployment strategy?
I'm beginning a new project in PHP and I'd love to get some feedback from other developers on their preferred strategy for PHP deployment. I'd love to automate things a bit so that once changes are ...
52
votes
11answers
33k views
How do I send a cross-domain POST request via JavaScript?
How do I send a cross-domain POST request via JavaScript?
Notes - it shouldn't refresh the page, and I need to grab and parse the response afterward.
Your help with some code examples will be much ...
52
votes
5answers
1k views
Does it still make sense to use HTML comments on blocks of JavaScript?
In the past people used to wrap HTML comment tags around blocks of JavaScript in order to prevent "older" browsers from displaying the script. Even Lynx is smart enough to ignore JavaScript, so why do ...
51
votes
18answers
7k views
Is functional programming relevant to web development?
I've been seeing so much recently about functional programming and Clojure looks particularly interesting. While I 'understand' the basic description of what it is, I can't figure out how I would use ...