0
votes
best library to do web-scraping
You can use tidy to convert it to XHTML, and then use whatever XML processing facilities your language of choice has available.
…
0
votes
How do you update a live, busy web site in the politest way possible?
Run your main server on a port other than 80. Stick a lightweight server (e.g. nginx) in front of it on port 80. When you update your site, start another instance on a new port. Test. When you …
7
votes
Running multiple sites from a single Python web framework
Django has this built in. See the sites framework.
As a general technique, include a …
0
votes
What identifying information can a website capture?
You can usually determine which language the user speaks through the Accept-Language HTTP header.
You can determine whether certain applications and browser plugins are …
14
votes
When is a browser considered “dead”?
Browsers don't die out completely for about a decade. The first thing you must realise is that you will have some visitors that are using a browser you don't support. The question is not …
1
vote
Is there a way to clear a user’s brower of my page, or say not to use cache?
Ignore everybody telling you to use <meta> elements or Pragma. They are very unreliable. You need to set the appropriate HTTP headers. A good tutorial on how to d …
5
votes
IE6 freezes due to *server* configuration
You need to determine the difference between them, so I'd start out with the following:
curl -D first.headers -o first.body http://first.example.com
curl -D second.headers -o second …
