<?xml version="1.0" encoding="utf-8"?>
<feed xml:lang="en-us" xmlns="http://www.w3.org/2005/Atom"><title>Simon Willison's Weblog: lanyrd</title><link href="http://simonwillison.net/" rel="alternate"/><link href="http://simonwillison.net/tags/lanyrd.atom" rel="self"/><id>http://simonwillison.net/</id><updated>2013-02-18T14:18:00+00:00</updated><author><name>Simon Willison</name></author><entry><title>Is Lanyrd any good?</title><link href="https://simonwillison.net/2013/Feb/18/is-lanyrd-any-good/#atom-tag" rel="alternate"/><published>2013-02-18T14:18:00+00:00</published><updated>2013-02-18T14:18:00+00:00</updated><id>https://simonwillison.net/2013/Feb/18/is-lanyrd-any-good/#atom-tag</id><summary type="html">
    &lt;p&gt;&lt;em&gt;My answer to &lt;a href="https://www.quora.com/Is-Lanyrd-any-good/answer/Simon-Willison"&gt;Is Lanyrd any good?&lt;/a&gt; on Quora&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;For some verticals, we're excellent: we have by far the most comprehensive listing of tech/programming/startup-related conferences anywhere online, curated by our growing community of event enthusiasts. If you're interested in events in those niches it's absolutely worth signing up, trying out our recommendations and subscribing to our email updates.&lt;/p&gt;

&lt;p&gt;Here are a few examples of areas we're doing particularly well in:&lt;/p&gt;

&lt;span&gt;&lt;a href="http://lanyrd.com/topics/social-media/"&gt;Social Media conferences&lt;/a&gt;&lt;/span&gt; - 76 upcoming events&lt;br /&gt;&lt;span&gt;&lt;a href="http://lanyrd.com/topics/mobile/"&gt;Mobile conferences&lt;/a&gt;&lt;/span&gt; - 99 upcoming events&lt;br /&gt;&lt;span&gt;&lt;a href="http://lanyrd.com/topics/web-development/"&gt;Web Development conferences&lt;/a&gt;&lt;/span&gt; - 89 upcoming events&lt;br /&gt;&lt;span&gt;&lt;a href="http://lanyrd.com/topics/javascript/"&gt;JavaScript conferences&lt;/a&gt;&lt;/span&gt; - 73 upcoming events&lt;br /&gt;&lt;span&gt;&lt;a href="http://lanyrd.com/topics/user-experience/"&gt;User Experience (UX) conferences and events&lt;/a&gt;&lt;/span&gt; - 69 upcoming events&lt;br /&gt;&lt;span&gt;&lt;a href="http://lanyrd.com/topics/ruby/"&gt;Ruby conferences&lt;/a&gt;&lt;/span&gt; - 51 upcoming events&lt;br /&gt;&lt;span&gt;&lt;a href="http://lanyrd.com/topics/ios/"&gt;iOS conferences and events&lt;/a&gt;&lt;/span&gt; - 35 upcoming events

&lt;p&gt;(We have way more events in the past for each of these categories, but for the purposes of event recommendation the stuff that hasn't happened yet is obviously more important).&lt;/p&gt;

&lt;p&gt;We're growing in other non-tech verticals as well - &lt;span&gt;&lt;a href="http://lanyrd.com/topics/libraries/"&gt;Library conferences&lt;/a&gt;&lt;/span&gt; and &lt;span&gt;&lt;a href="http://lanyrd.com/topics/skepticism/"&gt;Skepticism conferences&lt;/a&gt;&lt;/span&gt; are doing pretty well for example.&lt;/p&gt;
    
        &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/conferences"&gt;conferences&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/quora"&gt;quora&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/lanyrd"&gt;lanyrd&lt;/a&gt;&lt;/p&gt;
    

</summary><category term="conferences"/><category term="quora"/><category term="lanyrd"/></entry><entry><title>What are good and easy practices for frequent web deployments?</title><link href="https://simonwillison.net/2013/Jan/8/what-are-good-and/#atom-tag" rel="alternate"/><published>2013-01-08T10:32:00+00:00</published><updated>2013-01-08T10:32:00+00:00</updated><id>https://simonwillison.net/2013/Jan/8/what-are-good-and/#atom-tag</id><summary type="html">
    &lt;p&gt;&lt;em&gt;My answer to &lt;a href="https://www.quora.com/What-are-good-and-easy-practices-for-frequent-web-deployments/answer/Simon-Willison"&gt;What are good and easy practices for frequent web deployments?&lt;/a&gt; on Quora&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;At Lanyrd we use a combination of Fabric to drive our deploy scripts, git to get the code on to the servers, puppet for configuration management and Jenkins to run continuous integration tests and provide a "deploy the site" button.&lt;/p&gt;

&lt;p&gt;Here are a few important techniques I've learned:&lt;/p&gt;

&lt;ul&gt;&lt;li&gt;Use symlink switching to keep the previous version of the code around, so you can switch back in the case of problems (that said, we've never actually used this capability - but its nice for atomic deploys as well)&lt;/li&gt;&lt;li&gt;Have your build script rename your static asset files (CSS/JS/etc) to include part of the md5 hash of the file contents in their filename. This means you can upload them to your static host provider (we use S3) before you run a deploy, guaranteeing that freshly deployed templates will point to the right files. It also keeps the older versions around in case you need to roll back.&lt;/li&gt;&lt;li&gt;Having one button that deploys the site is invaluable&lt;/li&gt;&lt;li&gt;Deploys need to be almost "free" in terms of impact on site performance - if it doesn't cost anything to deploy the site people will be freely able to deploy often and push out small fixes, which is good for the health of your codebase&lt;/li&gt;&lt;li&gt;Get new engineers to deploy on the first day! Doing so forces you/them to get a full development and deployment environment up and running for them on day one, which means that they can start doing real work on day two.&lt;/li&gt;&lt;/ul&gt;
    
        &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/continuous-integration"&gt;continuous-integration&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/startups"&gt;startups&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/quora"&gt;quora&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/lanyrd"&gt;lanyrd&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/devops"&gt;devops&lt;/a&gt;&lt;/p&gt;
    

</summary><category term="continuous-integration"/><category term="startups"/><category term="quora"/><category term="lanyrd"/><category term="devops"/></entry><entry><title>What is the technology stack behind Lanyrd?</title><link href="https://simonwillison.net/2012/Aug/18/what-is-the-technology/#atom-tag" rel="alternate"/><published>2012-08-18T13:49:00+00:00</published><updated>2012-08-18T13:49:00+00:00</updated><id>https://simonwillison.net/2012/Aug/18/what-is-the-technology/#atom-tag</id><summary type="html">
    &lt;p&gt;&lt;em&gt;My answer to &lt;a href="https://www.quora.com/What-is-the-technology-stack-behind-Lanyrd/answer/Simon-Willison"&gt;What is the technology stack behind Lanyrd?&lt;/a&gt; on Quora&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Lanyrd is principally a Django application - we use Django and Python for almost every aspect of the web application itself, as well as the backend for our iPhone  application.&lt;/p&gt;

&lt;p&gt;We're running on EC2, RDS and S3, and we recently switched from doing our own load balancing with nginx to using Amazon's ELB as well (to help support zero-downtime deploys). We serve cached pages to signed out users using varnish (which also helps with our iCal and Atom feeds).&lt;/p&gt;

&lt;p&gt;We make extensive use of Solr - not just for search, but also for our suggested events calendar feature and various other index pages around the site. We also use redis and memcached.&lt;/p&gt;

&lt;p&gt;Our offline tasks are managed using celery.&lt;/p&gt;

&lt;p&gt;We have some experimental features running on MongoDB and ElasticSearch, but we've been trying to reduce our dependence on those technologies in order to simplify our stack somewhat.&lt;/p&gt;

&lt;p&gt;Our deployments are managed using a combination of puppet and Fabric.&lt;/p&gt;

&lt;p&gt;We have a colophon listing the technologies we are using, but it needs to be updated a bit (thanks for the reminder!) &lt;span&gt;&lt;a href="http://lanyrd.com/colophon/"&gt;http://lanyrd.com/colophon/&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;
    
        &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/quora"&gt;quora&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/lanyrd"&gt;lanyrd&lt;/a&gt;&lt;/p&gt;
    

</summary><category term="quora"/><category term="lanyrd"/></entry><entry><title>How do events get listed on Lanyrd?</title><link href="https://simonwillison.net/2011/Dec/3/how-do-events-get/#atom-tag" rel="alternate"/><published>2011-12-03T10:18:00+00:00</published><updated>2011-12-03T10:18:00+00:00</updated><id>https://simonwillison.net/2011/Dec/3/how-do-events-get/#atom-tag</id><summary type="html">
    &lt;p&gt;&lt;em&gt;My answer to &lt;a href="https://www.quora.com/How-do-events-get-listed-on-Lanyrd/answer/Simon-Willison"&gt;How do events get listed on Lanyrd?&lt;/a&gt; on Quora&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;We're not automated - all of our events are added by our community. If we're not listing your event yet, you can sign in with twitter and add it yourself (try &lt;span&gt;&lt;a href="http://lanyrd.com/conferences/add"&gt;http://lanyrd.com/conferences/add&lt;/a&gt;&lt;/span&gt; )&lt;/p&gt;
    
        &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/quora"&gt;quora&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/lanyrd"&gt;lanyrd&lt;/a&gt;&lt;/p&gt;
    

</summary><category term="quora"/><category term="lanyrd"/></entry><entry><title>If Lanyrd allows anyone to edit conference information, how do you assure users that the information is correct?</title><link href="https://simonwillison.net/2011/Jul/1/if-lanyrd-allows-anyone/#atom-tag" rel="alternate"/><published>2011-07-01T15:17:00+00:00</published><updated>2011-07-01T15:17:00+00:00</updated><id>https://simonwillison.net/2011/Jul/1/if-lanyrd-allows-anyone/#atom-tag</id><summary type="html">
    &lt;p&gt;&lt;em&gt;My answer to &lt;a href="https://www.quora.com/If-Lanyrd-allows-anyone-to-edit-conference-information-how-do-you-assure-users-that-the-information-is-correct/answer/Simon-Willison"&gt;If Lanyrd allows anyone to edit conference information, how do you assure users that the information is correct?&lt;/a&gt; on Quora&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;The same way that wikipedia does - by relying on users to fix problems as they spot them. So far this has worked extremely well. We also prominently link to the official conference website so people can check the information themselves if they need to.&lt;/p&gt;
    
        &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/quora"&gt;quora&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/lanyrd"&gt;lanyrd&lt;/a&gt;&lt;/p&gt;
    

</summary><category term="quora"/><category term="lanyrd"/></entry><entry><title>Where can I get a calendar of upcoming tech conferences in South Africa?</title><link href="https://simonwillison.net/2011/May/9/where-can-i-get/#atom-tag" rel="alternate"/><published>2011-05-09T09:56:00+00:00</published><updated>2011-05-09T09:56:00+00:00</updated><id>https://simonwillison.net/2011/May/9/where-can-i-get/#atom-tag</id><summary type="html">
    &lt;p&gt;&lt;em&gt;My answer to &lt;a href="https://www.quora.com/Where-can-I-get-a-calendar-of-upcoming-tech-conferences-in-South-Africa/answer/Simon-Willison"&gt;Where can I get a calendar of upcoming tech conferences in South Africa?&lt;/a&gt; on Quora&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Try our list here: &lt;span&gt;&lt;a href="http://lanyrd.com/places/south-africa/"&gt;http://lanyrd.com/places/south-a...&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;
    
        &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/conferences"&gt;conferences&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/quora"&gt;quora&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/lanyrd"&gt;lanyrd&lt;/a&gt;&lt;/p&gt;
    

</summary><category term="conferences"/><category term="quora"/><category term="lanyrd"/></entry><entry><title>Are all Lanyrd conferences uploaded by users?</title><link href="https://simonwillison.net/2011/May/5/are-all-lanyrd-conferences/#atom-tag" rel="alternate"/><published>2011-05-05T16:24:00+00:00</published><updated>2011-05-05T16:24:00+00:00</updated><id>https://simonwillison.net/2011/May/5/are-all-lanyrd-conferences/#atom-tag</id><summary type="html">
    &lt;p&gt;&lt;em&gt;My answer to &lt;a href="https://www.quora.com/Are-all-Lanyrd-conferences-uploaded-by-users/answer/Simon-Willison"&gt;Are all Lanyrd conferences uploaded by users?&lt;/a&gt; on Quora&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Yes - all of Lanyrd's events are added by a regular user of the site.&lt;/p&gt;
    
        &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/quora"&gt;quora&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/lanyrd"&gt;lanyrd&lt;/a&gt;&lt;/p&gt;
    

</summary><category term="quora"/><category term="lanyrd"/></entry><entry><title>How do you pronounce Lanyrd?</title><link href="https://simonwillison.net/2011/May/5/how-do-you-pronounce/#atom-tag" rel="alternate"/><published>2011-05-05T13:57:00+00:00</published><updated>2011-05-05T13:57:00+00:00</updated><id>https://simonwillison.net/2011/May/5/how-do-you-pronounce/#atom-tag</id><summary type="html">
    &lt;p&gt;&lt;em&gt;My answer to &lt;a href="https://www.quora.com/How-do-you-pronounce-Lanyrd/answer/Simon-Willison"&gt;How do you pronounce Lanyrd?&lt;/a&gt; on Quora&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;We pronounce it "Lan-yurd" or "Lan-yud".&lt;/p&gt;
    
        &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/quora"&gt;quora&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/lanyrd"&gt;lanyrd&lt;/a&gt;&lt;/p&gt;
    

</summary><category term="quora"/><category term="lanyrd"/></entry><entry><title>Which database engine does Lanyrd use?</title><link href="https://simonwillison.net/2011/Apr/4/which-database-engine-does/#atom-tag" rel="alternate"/><published>2011-04-04T09:20:00+00:00</published><updated>2011-04-04T09:20:00+00:00</updated><id>https://simonwillison.net/2011/Apr/4/which-database-engine-does/#atom-tag</id><summary type="html">
    &lt;p&gt;&lt;em&gt;My answer to &lt;a href="https://www.quora.com/Which-database-engine-does-Lanyrd-use/answer/Simon-Willison"&gt;Which database engine does Lanyrd use?&lt;/a&gt; on Quora&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;We're on MySQL (InnoDB), using Amazon's RDS. We have enough to worry about without tuning and configuring our own database server.&lt;/p&gt;
    
        &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/quora"&gt;quora&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/lanyrd"&gt;lanyrd&lt;/a&gt;&lt;/p&gt;
    

</summary><category term="quora"/><category term="lanyrd"/></entry><entry><title>Is Lanyrd meant to be tech-industry specific, or is that just a byproduct of the early adopter demographic?</title><link href="https://simonwillison.net/2011/Feb/15/is-lanyrd-meant-to/#atom-tag" rel="alternate"/><published>2011-02-15T11:22:00+00:00</published><updated>2011-02-15T11:22:00+00:00</updated><id>https://simonwillison.net/2011/Feb/15/is-lanyrd-meant-to/#atom-tag</id><summary type="html">
    &lt;p&gt;&lt;em&gt;My answer to &lt;a href="https://www.quora.com/Is-Lanyrd-meant-to-be-tech-industry-specific-or-is-that-just-a-byproduct-of-the-early-adopter-demographic/answer/Simon-Willison"&gt;Is Lanyrd meant to be tech-industry specific, or is that just a byproduct of the early adopter demographic?&lt;/a&gt; on Quora&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;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:&lt;/p&gt;

&lt;p&gt;Genealogy: &lt;span&gt;&lt;a href="http://lanyrd.com/topics/genealogy/"&gt;http://lanyrd.com/topics/genealogy/&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;Crime fiction: &lt;span&gt;&lt;a href="http://lanyrd.com/topics/crime-fiction/"&gt;http://lanyrd.com/topics/crime-f...&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;Food blogging: &lt;span&gt;&lt;a href="http://lanyrd.com/topics/food-blogging/"&gt;http://lanyrd.com/topics/food-bl...&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;
    
        &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/social-media"&gt;social-media&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/quora"&gt;quora&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/lanyrd"&gt;lanyrd&lt;/a&gt;&lt;/p&gt;
    

</summary><category term="social-media"/><category term="quora"/><category term="lanyrd"/></entry><entry><title>Get Lanyrd conference recommendations by email</title><link href="https://simonwillison.net/2011/Jan/28/email/#atom-tag" rel="alternate"/><published>2011-01-28T11:28:00+00:00</published><updated>2011-01-28T11:28:00+00:00</updated><id>https://simonwillison.net/2011/Jan/28/email/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://lanyrd.com/blog/2011/email/"&gt;Get Lanyrd conference recommendations by email&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
This is the first time I’ve built a custom email subscription feature, and it’s been a very interesting ride. We’re trying to find the right balance between keeping people informed in a timely fashion with useful information while not overloading their inbox with too many messages. You can opt for daily, weekly, fortnightly or monthly emails and we’ll try to ensure you only hear about events you haven’t seen before.


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/email"&gt;email&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/lanyrd"&gt;lanyrd&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/recovered"&gt;recovered&lt;/a&gt;&lt;/p&gt;



</summary><category term="email"/><category term="lanyrd"/><category term="recovered"/></entry><entry><title>Display your events on your own website with Lanyrd Badges</title><link href="https://simonwillison.net/2011/Jan/13/badges/#atom-tag" rel="alternate"/><published>2011-01-13T20:38:00+00:00</published><updated>2011-01-13T20:38:00+00:00</updated><id>https://simonwillison.net/2011/Jan/13/badges/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://lanyrd.com/blog/2011/badges/"&gt;Display your events on your own website with Lanyrd Badges&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
We’ve launched badges for Lanyrd—JavaScript that lets you embed a top bar or a content “splat” showing events you plan to attend, talks you’ve given in the past and other various combinations. I’m quite pleased with the implementation—the badges are configured using classes on a link to your Lanyrd profile, and the badges themselves are served through a combination of Amazon CloudFront for the initial script and a Varnish cache for the badge data itself to keep things nice and snappy.


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/badges"&gt;badges&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/caching"&gt;caching&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/cloudfront"&gt;cloudfront&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/javascript"&gt;javascript&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/varnish"&gt;varnish&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/lanyrd"&gt;lanyrd&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/recovered"&gt;recovered&lt;/a&gt;&lt;/p&gt;



</summary><category term="badges"/><category term="caching"/><category term="cloudfront"/><category term="javascript"/><category term="varnish"/><category term="lanyrd"/><category term="recovered"/></entry><entry><title>Find conferences to speak at with Lanyrd</title><link href="https://simonwillison.net/2010/Nov/24/calls/#atom-tag" rel="alternate"/><published>2010-11-24T02:38:00+00:00</published><updated>2010-11-24T02:38:00+00:00</updated><id>https://simonwillison.net/2010/Nov/24/calls/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://lanyrd.com/blog/2010/calls/"&gt;Find conferences to speak at with Lanyrd&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
We just launched calls for participation on Lanyrd. You can list calls for any conference, browse them by topic, and subscribe to an Atom feed of calls for your area of interest.


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/conferences"&gt;conferences&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/projects"&gt;projects&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/lanyrd"&gt;lanyrd&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/recovered"&gt;recovered&lt;/a&gt;&lt;/p&gt;



</summary><category term="conferences"/><category term="projects"/><category term="lanyrd"/><category term="recovered"/></entry><entry><title>How does Lanyrd compare to Plancast?</title><link href="https://simonwillison.net/2010/Oct/3/how-does-lanyrd-compare/#atom-tag" rel="alternate"/><published>2010-10-03T13:00:00+00:00</published><updated>2010-10-03T13:00:00+00:00</updated><id>https://simonwillison.net/2010/Oct/3/how-does-lanyrd-compare/#atom-tag</id><summary type="html">
    &lt;p&gt;&lt;em&gt;My answer to &lt;a href="https://www.quora.com/How-does-Lanyrd-compare-to-Plancast/answer/Simon-Willison"&gt;How does Lanyrd compare to Plancast?&lt;/a&gt; on Quora&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Plancast is a general purpose event site. They handle concerts, birthday parties, gigs, conferences and so on. They allow you to sign in with Twitter or Facebook, and make use of your social graph from both.&lt;/p&gt;

&lt;p&gt;Lanyrd is focused exclusively on conferences and knowledge sharing events - basically anything with at least one speaker. We currently only support Twitter for authentication, for reasons described below.&lt;/p&gt;

&lt;p&gt;When you sign in to Lanyrd with Twitter, we pull the list of people you follow on Twitter and show you a calendar of events they are attending, speaking at, organising or tracking.&lt;/p&gt;

&lt;p&gt;We've been live for just over a month, but we already have over 2,500 conferences listed - of which 970 are happening in the future.&lt;/p&gt;

&lt;p&gt;One of the key features of Lanyrd is that anyone can edit an event (wikipedia style), and that includes adding the list of speakers for that event. Since we currently use Twitter as our identity platform, any speaker who has a Twitter account can be added to an event on Lanyrd. This means people can end up with a Lanyrd profile page without ever signing in to the site themselves. Note that we only do this for people speaking at conferences, since the information that e.g. "timoreilly is speaking at Web 2.0 Expo" is public knowledge. We won't be extending this feature to allow other people to report you as an attendee.&lt;/p&gt;

&lt;p&gt;This feature (adding speakers to events) has one huge benefit: if you are following a popular speaker (and the best speakers often have thousands of followers), when you sign in to Lanyrd for the first time we can instantly show you conferences that the people you follow on Twitter are speaking at.&lt;/p&gt;

&lt;p&gt;We're a very young site, but we have a lot of additional features planned. Our focus is on adding value before, during and after a conference. Before the conference we'll help you find events to attend (we do this pretty well already). During the conference we plan to help capture and navigate the coverage of the event on Twitter, as it happens. After the event we will collect sessions, slides, write-ups, videos and podcasts relating to that event.&lt;/p&gt;

&lt;p&gt;We're also very keen on helping people build up a speaker profile page showing all of the events they have spoken at and the talks they have given. To my observation, most speakers never get around to doing this on their own personal sites. Here's my profile page, for example: &lt;span&gt;&lt;a href="http://lanyrd.com/people/simonw/"&gt;http://lanyrd.com/people/simonw/&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;
    
        &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/calendars"&gt;calendars&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/events"&gt;events&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/quora"&gt;quora&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/plancast"&gt;plancast&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/lanyrd"&gt;lanyrd&lt;/a&gt;&lt;/p&gt;
    

</summary><category term="calendars"/><category term="events"/><category term="quora"/><category term="plancast"/><category term="lanyrd"/></entry><entry><title>Welcome to Lanyrd | The Lanyrd Blog</title><link href="https://simonwillison.net/2010/Sep/11/lanyrd/#atom-tag" rel="alternate"/><published>2010-09-11T21:32:00+00:00</published><updated>2010-09-11T21:32:00+00:00</updated><id>https://simonwillison.net/2010/Sep/11/lanyrd/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://lanyrd.com/blog/2010/welcome/"&gt;Welcome to Lanyrd | The Lanyrd Blog&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
We’ve started a blog for Lanyrd, our social conference directory project. We’re off to a great start: “Lanyrd is now listing 1,508 conferences and 5,167 individual speaker profiles. 5,637 people have signed in to the site and made 13,293 edits to our data.”


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/blogging"&gt;blogging&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/conferences"&gt;conferences&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/projects"&gt;projects&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/lanyrd"&gt;lanyrd&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/recovered"&gt;recovered&lt;/a&gt;&lt;/p&gt;



</summary><category term="blogging"/><category term="conferences"/><category term="projects"/><category term="lanyrd"/><category term="recovered"/></entry><entry><title>Lanyrd - the social conference directory</title><link href="https://simonwillison.net/2010/Aug/31/lanyrd/#atom-tag" rel="alternate"/><published>2010-08-31T19:41:00+00:00</published><updated>2010-08-31T19:41:00+00:00</updated><id>https://simonwillison.net/2010/Aug/31/lanyrd/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://lanyrd.com/"&gt;Lanyrd - the social conference directory&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
Nat and my new project, launched today and doing pretty well despite some early server hiccups. Sign in with Twitter to see conferences that your friends are speaking at, attending or tracking, then add your own events. We’re particularly keen on helping people build up a detailed profile of their previous talks, so adding older conferences is encouraged.


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/conferences"&gt;conferences&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/projects"&gt;projects&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/twitter"&gt;twitter&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/lanyrd"&gt;lanyrd&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/recovered"&gt;recovered&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/natimon"&gt;natimon&lt;/a&gt;&lt;/p&gt;



</summary><category term="conferences"/><category term="projects"/><category term="twitter"/><category term="lanyrd"/><category term="recovered"/><category term="natimon"/></entry></feed>