Simon Willison’s Weblog

Subscribe

Items tagged quora in 2011

Filters: Year: 2011 × quora × Sorted by date


Where can I get a calendar of upcoming tech conferences in South Africa?

Try our list here: http://lanyrd.com/places/south-a...

[... 25 words]

What are the best bachelor party ideas (other than strip clubs)?

My bachelor party (we call it a stag night over here) ended in a Karaoke club—one of the ones with private booths. It was awesome.

[... 44 words]

Are all Lanyrd conferences uploaded by users?

Yes—all of Lanyrd’s events are added by a regular user of the site.

[... 28 words]

How do you pronounce Lanyrd?

We pronounce it “Lan-yurd” or “Lan-yud”.

[... 17 words]

Which database engine does Lanyrd use?

We’re on MySQL (InnoDB), using Amazon’s RDS. We have enough to worry about without tuning and configuring our own database server.

[... 33 words]

What Y Combinator companies are going to SXSW this year?

Lanyrd (W11) will be there, we’re promoting our SXSW schedule planner / coverage tracker tool: http://sxsw.lanyrd.com/

[... 33 words]

Which Bay Area startups are going to SXSW 2011?

http://lanyrd.com/ will be there—both myself and Nat.

[... 25 words]

Where can I find a text corpus of English language personal email on the web?

The Enron email corpus is pretty useful, though I don’t know how “normal” you would consider it.

[... 38 words]

Is Lanyrd meant to be tech-industry specific, or is that just a byproduct of the early adopter demographic?

We want to cover all sorts of conferences (and user groups, and meetups, and conventions... any event where people get together to share their knowledge). We have a good start on technology because that’s where our early adopters are, but we’re starting to pick up in a few other categories as well. Here are some of my favourite examples:

[... 94 words]

What is the “best” programming language to learn if you want to mockup your own ideas but don’t have a technical background?

I knew a very talented UX designer at Yahoo! who did all of his interactive mockups in PowerPoint—including widgets that you click to transition to another “page” in the interface. I’ve heard of people doing the same thing in Keynote, and OmniGraffle Pro also has tools for creating interactive mockups.

[... 111 words]

Is a relational database with many-to-many relationships difficult to develop into a web app?

Many to Many tables can be a bit of a pain to deal with using regular SQL, but a good ORM can abstract away any potential complexity almost entirely. I find using the Django ORM means I’m much less likely to shy away from a design that involves a many-to-many relationship because I know it won’t increase the complexity of the application. I imagine the Rails ORM has the same effect.

[... 91 words]

Is South the best tool to use when doing database migrations in Django?

Yes. And I say that as an author of another Django migrations tool (dmigrations) which offered a small subset of South’s current functionality.

[... 42 words]

What are some good user interface/user experience workshops/conferences coming up this March(p.s. distance isn’t a factor, I’m willingly to travel)?

We have a list on http://lanyrd.com/topics/user-ex...—the best option in March looks to be Adaptive Path’s MX conference: http://lanyrd.com/2011/mx/ / http://mxconference.com/

[... 51 words]

What is it like going through the Y Combinator program?

This essay is pretty comprehensive—it’s what convinced us to apply to YC, and our experience so far has been true to what it describes: http://ycombinator.com/atyc.html

[... 44 words]

Where can I find a good list of conferences that take will place Boston in early April 2011?

http://lanyrd.com/places/boston/ lists a few events coming up in early April.

[... 35 words]

What are the top five food blogger conferences to attend?

I can’t give you a top five, but you might find this list of 10 upcoming food blogger conferences useful: http://lanyrd.com/topics/food-bl...

[... 38 words]

Why do websites contain multiple webpages when they could use AJAX?

Because it shouldn’t require a full-blown JavaScript interpreter just to access content on the Web.

[... 32 words]

What are the most recent Y Combinator startup companies as of 2011?

We (Lanyrd) are a YC startup! We’ve just announced our participation: http://techcrunch.com/2011/01/31...

[... 31 words]

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]

Is Node.js a strong platform to use to build a RESTful API platform?

Yes. It’s very, very good at speaking HTTP.

[... 27 words]

Who is attending Webstock 2011 in Wellington, New Zealand?

We have a list of 46 Twitter users who are attending Webstock 2011 here:

[... 44 words]

What are the must visit web conferences in the UK for 2011?

We’ve pretty much hit critical mass in the UK web scene with Lanyrd now, so there are very few notable UK web conferences in 2011 that aren’t listed. Here are some useful starting points:

[... 112 words]

What are the best design conferences or meetups in Switzerland?

I haven’t been myself, but Lift has an excellent reputation:

[... 30 words]

What are some of the wackiest panel discussion formats?

There’s a format called a fish bowl which is pretty fascinating:

[... 120 words]

Which web server suits Django best? Apache, Nginx or something else?

I’m still a big fan of a stripped down Apache+mod_wsgi running behind nginx.

[... 98 words]

Why exactly isn’t TextMate available for other platforms like Ubuntu?

Because it was written in Objective-C using the Cocoa framework, which is only available on OS X. Porting it would not be at all easy.

[... 41 words]

Why would someone browse the web with JavaScript disabled?

Security conscious users (who understand the implications of XSS and CSRF attacks) sometimes disable JavaScript completely, or use a tool like the NoScript extension to disable it for all sites and only re-enable it on a small whitelist of sites that they trust.

[... 67 words]

Are Silicon Valley entrepreneurs taking less risk than 8-9 yrs ago?

I’d guess internet startups today are taking advantage of the fact that there’s a LOT more knowledge now of what works online and what doesn’t. 9 years ago people were still figuring out what the internet is useful for. Today it’s easier to figure out a product that people are likely to want, based on nearly 20 years of experience of how people use the Web.

[... 83 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]

What are some great stories about Steve Jobs?

The stories on folklore.org are fantastic—here’s their collection about Steve Jobs: http://www.folklore.org/ProjectV...

[... 30 words]