738
votes
8answers
87k 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, ...
336
votes
4answers
43k 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, ...
287
votes
13answers
20k 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 ...
179
votes
23answers
22k 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 ...
168
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 ...
155
votes
15answers
146k 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 ...
142
votes
15answers
47k 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)?
140
votes
13answers
49k 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>
...
123
votes
20answers
3k views
Help building a website using punched cards? [closed]
My punched card looks like this:
* * * * *
* * * *
* * *
* * * *
* * * * *
* * * *
My website ...
103
votes
4answers
9k 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 ...
97
votes
2answers
16k 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 ...
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 ...
92
votes
6answers
23k 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 ...
91
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 ...
91
votes
13answers
27k 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 ...
90
votes
9answers
6k views
What questions should a JavaScript programmer be able to answer? [closed]
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 ...
89
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 ...
89
votes
10answers
46k 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 ...
81
votes
35answers
39k 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 ...
79
votes
6answers
2k views
Does any other language other than JavaScript have a difference between brace start locations (same line and next line)?
Today, while I was randomly reading the JavaScript patterns O'Reilly book, I found one interesting thing (page 27 for reference).
In JavaScript, in some cases, there is a difference if the brace ...
79
votes
17answers
4k 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 ...
75
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?
71
votes
10answers
20k 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?
68
votes
5answers
151k 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 ...
66
votes
33answers
42k views
What is the best web prototyping tool?
What is the best tool to create a web application interface prototype?
65
votes
35answers
4k views
Tools for faster, better web development [closed]
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
30answers
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 ...
62
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?
61
votes
21answers
20k views
GET versus POST in terms of security? [closed]
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 ...
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
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 ...
60
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 ...
60
votes
8answers
64k 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 ...
59
votes
28answers
26k 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 ...
58
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 ...
58
votes
11answers
35k 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 ...
58
votes
10answers
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 ...
57
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 ...
55
votes
7answers
10k 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 ...
55
votes
12answers
11k 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
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
17answers
4k 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
18answers
25k 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, ...
53
votes
14answers
14k 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 ...
53
votes
16answers
63k views
In JavaScript can I make a “click” event fire programmatically for a file input element?
I'd like to make a click event fire on an <input type="file"> tag programmatically.
Just calling click() doesn't seem to do anything or at least it doesn't pop up a file selection dialog.
I've ...
53
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 ...
52
votes
8answers
5k views
any experience with “Play” java web development framework?
I've just stumbled upon the following new java web framework: Play
http://www.playframework.org/
http://www.playframework.org/documentation/1.0/home
with such a stunning list of features, I'm ...