Simon Willison’s Weblog

Subscribe

Items tagged webdevelopment in Jan, 2011

Filters: Year: 2011 × Month: Jan × webdevelopment × Sorted by date


How do you stay up to date with Open Source products and technologies?

Lots of blogs and RSS feeds—in particular, I subscribe to the feed of the authors of the software that I’m using, if I can find them.

[... 61 words]

How does FriendFeed work, and what programming languages are used?

It was written in Python, using the Tornado asynchronous web server (which the FriendFeed team developed themselves). They used their own schemaless NoSQL-style store based on keeping serialized objects in MySQL.

[... 51 words]

How are real time web applications achievable with PHP?

You don’t need to build your comet server using the same technology as the rest of your site.

[... 181 words]

What makes mobile application backends different from Webapp backends?

Nothing at all.

[... 18 words]

How can I determine which web server a particular website is using (Apache, IIS, Nginx, etc)?

If you’re on Linux or OS X, use curl with the -I option (to make a HEAD request and see the HTTP headers):

[... 63 words]

Are there any summer conferences in the Bay Area for web development (or any other technology/Internet related topics)?

Have a browse through the list here: http://lanyrd.com/places/califor...—or filter by web development only: http://lanyrd.com/topics/web-dev...

[... 131 words]