<?xml version="1.0" encoding="utf-8"?>
<feed xml:lang="en-us" xmlns="http://www.w3.org/2005/Atom"><title>Simon Willison's Weblog: events</title><link href="http://simonwillison.net/" rel="alternate"/><link href="http://simonwillison.net/tags/events.atom" rel="self"/><id>http://simonwillison.net/</id><updated>2024-11-27T20:45:25+00:00</updated><author><name>Simon Willison</name></author><entry><title>Storing times for human events</title><link href="https://simonwillison.net/2024/Nov/27/storing-times-for-human-events/#atom-tag" rel="alternate"/><published>2024-11-27T20:45:25+00:00</published><updated>2024-11-27T20:45:25+00:00</updated><id>https://simonwillison.net/2024/Nov/27/storing-times-for-human-events/#atom-tag</id><summary type="html">
    &lt;p&gt;I've worked on &lt;a href="https://en.wikipedia.org/wiki/Lanyrd"&gt;various&lt;/a&gt; event &lt;a href="https://en.wikipedia.org/wiki/Eventbrite"&gt;websites&lt;/a&gt; in the past, and one of the unintuitively difficult problems that inevitably comes up is the best way to store the time that an event is happening. Based on that past experience, here's my current recommendation.&lt;/p&gt;

&lt;p&gt;This is the expanded version of a &lt;a href="https://lobste.rs/s/sorhro/postgresql_timestamp_with_time_zone_s_set#c_xjj8ci"&gt;comment I posted on lobste.rs&lt;/a&gt; a few days ago, which ended up attracting a bunch of attention &lt;a href="https://twitter.com/iavins/status/1861468050748514547"&gt;on Twitter&lt;/a&gt;.&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;&lt;a href="https://simonwillison.net/2024/Nov/27/storing-times-for-human-events/#the-problem"&gt;The problem&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href="https://simonwillison.net/2024/Nov/27/storing-times-for-human-events/#the-best-practice-that-isn-t"&gt;The "best practice" that isn't&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href="https://simonwillison.net/2024/Nov/27/storing-times-for-human-events/#things-that-can-go-wrong"&gt;Things that can go wrong&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href="https://simonwillison.net/2024/Nov/27/storing-times-for-human-events/#user-error"&gt;User error&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href="https://simonwillison.net/2024/Nov/27/storing-times-for-human-events/#international-timezone-shenanigans"&gt;International timezone shenanigans&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href="https://simonwillison.net/2024/Nov/27/storing-times-for-human-events/#microsoft-exchange-and-the-dst-update-of-2007"&gt;Microsoft Exchange and the DST update of 2007&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href="https://simonwillison.net/2024/Nov/27/storing-times-for-human-events/#my-recommendation-store-the-user-s-intent-time-and-the-location-timezone"&gt;My recommendation: store the user's intent time and the location/timezone&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href="https://simonwillison.net/2024/Nov/27/storing-times-for-human-events/#timezone-uis-suck-generally"&gt;Timezone UIs suck, generally&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h4 id="the-problem"&gt;The problem&lt;/h4&gt;
&lt;p&gt;An event happens on a date, at a time. The precise details of that time are very important: if you tell people to show up to your event at 7pm and it turns out they should have arrived at 6pm they'll miss an hour of the event!&lt;/p&gt;
&lt;p&gt;Some of the worst bugs an events website can have are the ones that result in human beings traveling to a place at a time and finding that the event they came for is not happening at the time they expected.&lt;/p&gt;
&lt;p&gt;So how do you store the time of an event?&lt;/p&gt;
&lt;h4 id="the-best-practice-that-isn-t"&gt;The "best practice" that isn't&lt;/h4&gt;
&lt;p&gt;Any time you talk to database engineers about dates and times you're likely to get the same advice: store everything in UTC. Dates and times are complicated enough that the only unambiguous way to store them is in UTC - no daylight savings or timezones to worry about, it records the exact moment since the dawn of the universe at which the event will take place.&lt;/p&gt;
&lt;p&gt;Then, when you display those times to users, you can convert them to that user's current timezone - neatly available these days using the &lt;a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat/resolvedOptions"&gt;Intl.DateTimeFormat().resolvedOptions().timeZone&lt;/a&gt; browser API.&lt;/p&gt;
&lt;p&gt;There's a variant of this advice which you're more likely to hear from the PostgreSQL faithful: use &lt;a href="https://www.postgresql.org/docs/current/datatype-datetime.html#DATATYPE-DATETIME-INPUT-TIME-STAMPS"&gt;TIMESTAMP WITH TIME ZONE&lt;/a&gt; or its convenient alias &lt;code&gt;timestamptz&lt;/code&gt;. This stores the exact value in UTC and &lt;em&gt;sounds&lt;/em&gt; like it might store the timezone too... but it doesn't! &lt;a href="https://stackoverflow.com/questions/5876218/difference-between-timestamps-with-without-time-zone-in-postgresql#comment32979814_5876276"&gt;All that's stored&lt;/a&gt; is that UTC value, converted from whatever timezone was active or specified when the value was inserted.&lt;/p&gt;
&lt;p&gt;In either case, we are losing &lt;em&gt;critical&lt;/em&gt; information about when that event is going to happen.&lt;/p&gt;
&lt;h4 id="things-that-can-go-wrong"&gt;Things that can go wrong&lt;/h4&gt;
&lt;p&gt;What's wrong with calculating the exact UTC time the event is starting and storing only that?&lt;/p&gt;
&lt;p&gt;The problem is that we are losing crucial details about the event creator's original intent.&lt;/p&gt;
&lt;p&gt;If I arrange an evening meetup for next year on December 3rd at 6pm, I mean 6pm local time, by whatever definition of local time is active on that particular date.&lt;/p&gt;
&lt;p&gt;There are a number of ways this time can end up misinterpreted:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;User error: the user created the event &lt;strong&gt;with an incorrect timezone&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;User error: the user created the event &lt;strong&gt;in the wrong location&lt;/strong&gt;, and later needs to fix it&lt;/li&gt;
&lt;li&gt;International timezone shenanigans: the location in which the event is happening &lt;strong&gt;changes its timezone rules&lt;/strong&gt; at some point between the event being created and the event taking place&lt;/li&gt;
&lt;/ul&gt;
&lt;h4 id="user-error"&gt;User error&lt;/h4&gt;
&lt;p&gt;By far the most common issue here is &lt;strong&gt;user error&lt;/strong&gt; with respect to how the event was initially created.&lt;/p&gt;
&lt;p&gt;Maybe you asked the user to select the timezone as part of the event creation process. This is not a particularly great question: most users don't particularly care about timezones, or may not understand and respect them to the same extent as professional software developers.&lt;/p&gt;
&lt;p&gt;If they pick the wrong timezone we risk showing the wrong time to anyone else who views their event later on.&lt;/p&gt;
&lt;p&gt;My bigger concern is around location. Imagine a user creates their event in Springfield, Massachusetts... and then a few days later comes back and corrects the location to Springfield, Illinois.&lt;/p&gt;
&lt;p&gt;That means the event is happening in a different timezone. If the user fails to update the time of the event to match the new location, we're going to end up with an incorrect time stored in our database.&lt;/p&gt;
&lt;h4 id="international-timezone-shenanigans"&gt;International timezone shenanigans&lt;/h4&gt;
&lt;p&gt;One of my favourite niche corners of the internet is the &lt;a href="https://lists.iana.org/hyperkitty/list/tz@iana.org/latest"&gt;tz@iana.org mailing list&lt;/a&gt;. This is where the maintainers of the incredible open source &lt;a href="https://en.wikipedia.org/wiki/Tz_database"&gt;tz database&lt;/a&gt; hang out and keep track of global changes to timezone rules.&lt;/p&gt;
&lt;p&gt;It's easy to underestimate how much work this is, and how weird these rule changes can be. Here's a &lt;a href="https://lists.iana.org/hyperkitty/list/tz@iana.org/thread/5KMKN3JXZZHTUHGQWBCJSPTQXXYOPIPP/"&gt;recent email&lt;/a&gt;  proposing a brand new timezone: &lt;code&gt;Antarctica/Concordia&lt;/code&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Goodmorning. I'm writing here to propose a new time zone for an all-year open Antarctic base. The base is a French–Italian research facility that was built 3,233 m (10,607 ft) above sea level at a location called Dome C on the Antarctic Plateau, Antarctica. &lt;a href="https://en.wikipedia.org/wiki/Concordia_Station"&gt;https://en.wikipedia.org/wiki/Concordia_Station&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;The timezone is UTC+8 without DST.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;That's a pretty easy one. Here's a much more complicated example from March 2023: &lt;a href="https://lists.iana.org/hyperkitty/list/tz@iana.org/thread/EIBJYDJT3XQT5OWCNPIVVVH6U7INA2LW/"&gt;Lebanon DST change internally disputed&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Lebanon is going through many internal disputes surrounding the latest decision to delay DST. Many institutions are refusing to comply with the change and are going to adopt regular DST on Sunday Mar 26th. Those institutions include but are not limited to:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;News agencies&lt;/li&gt;
&lt;li&gt;Religious organizations&lt;/li&gt;
&lt;li&gt;Schools, universities, etc...&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The refusal is mainly centered the legality of that decision and, obviously, the technical chaos it will create because of its short notice. Moreover, as some of the below articles mention, this is also causing sectarian strife.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Lebanon ended up with more than one timezone active at the same time, depending on which institution you were talking to!&lt;/p&gt;
&lt;p&gt;It's surprisingly common for countries to make decisions about DST with very little notice. Turkey and Russia and Chile and Morocco are four more examples of countries that can often cause short-term chaos for software developers in this way.&lt;/p&gt;
&lt;p&gt;If you've stored your event start times using UTC this is a &lt;em&gt;big&lt;/em&gt; problem: the new DST rules mean that an already-existing event that starts at 6pm may now start at 5pm or 7pm local time, according to the UTC time you've stored in your database.&lt;/p&gt;
&lt;h4 id="microsoft-exchange-and-the-dst-update-of-2007"&gt;Microsoft Exchange and the DST update of 2007&lt;/h4&gt;
&lt;p&gt;Via &lt;a href="https://lobste.rs/s/shckuc/storing_times_for_human_events#c_ygbfqp"&gt;fanf on Lobsters&lt;/a&gt; I heard about a fascinating example of this problem in action. In 2005 the Bush administration passed the &lt;a href="https://en.wikipedia.org/wiki/Energy_Policy_Act_of_2005#Change_to_daylight_saving_time"&gt;Energy Policy Act of 2005&lt;/a&gt;, one part of which updated the rules for when DST would start across most of the USA.&lt;/p&gt;
&lt;p&gt;This resulted in a bug where Microsoft Exchange and Outlook would display appointment times incorrectly! From &lt;a href="https://learn.microsoft.com/en-us/previous-versions/exchange-server/exchange-80/bb267339(v=exchg.80)?redirectedfrom=MSDN"&gt;Exchange Server and Daylight Saving Time (DST) 2007&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;After installing the DST updates, all old recurring and single instance appointments that occur during the delta period between the DST 2007 rules and the previous DST rules will be one hour later. These appointments will need to be updated so that they will display correctly in Outlook and Outlook Web Access, and for CDO based applications.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Microsoft released a special "Exchange Calendar Update Tool" executable for people to run to fix all of those upcoming calendar events.&lt;/p&gt;
&lt;h4 id="my-recommendation-store-the-user-s-intent-time-and-the-location-timezone"&gt;My recommendation: store the user's intent time and the location/timezone&lt;/h4&gt;
&lt;p&gt;My strong recommendation here is that the most important thing to record is the &lt;strong&gt;original user's intent&lt;/strong&gt;. If they said the event is happening at 6pm, store that! Make sure that when they go to edit their event later they see the same editable time that they entered when they first created it.&lt;/p&gt;
&lt;p&gt;In addition to that, try to get the most accurate possible indication of the timezone in which that event is occurring.&lt;/p&gt;
&lt;p&gt;For most events I would argue that the best version of this is the exact location of the venue itself.&lt;/p&gt;
&lt;p&gt;Users may find timezones confusing, but they hopefully understand the importance of helping their attendees know where exactly the event is taking place.&lt;/p&gt;
&lt;p&gt;If you have the venue location you can &lt;em&gt;almost certainly&lt;/em&gt; derive the timezone from it. I say &lt;em&gt;almost&lt;/em&gt; because, as with anything involving time, there are going to be edge-cases - most critically for venues that are exactly on the line that divides one timezone from another.&lt;/p&gt;
&lt;p&gt;I haven't sat down to design my ideal UI for this, but I can imagine something which makes it &lt;em&gt;abundantly&lt;/em&gt; clear to the user exactly where and when the event is taking place at that crucial local scale.&lt;/p&gt;
&lt;p&gt;Now that we've precisely captured the user's intent and the event location (and through it the exact timezone) we can denormalize: &lt;strong&gt;figure out the UTC time of that event and store that as well&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;This UTC version can be used for all sorts of purposes: sorting events by time, figuring out what's happening now/next, displaying the event to other users with its time converted to their local timezone.&lt;/p&gt;
&lt;p&gt;But when the user goes to edit their event, we can show them exactly what they told us originally. When the user edits the location of their event we can maintain that original time, potentially confirming with the user if they want to modify that time based on the new location.&lt;/p&gt;
&lt;p&gt;And if some legislature somewhere on earth makes a surprising change to their DST rules, we can identify all of the events that are affected by that change and update that denormalized UTC time accordingly.&lt;/p&gt;
&lt;h4 id="timezone-uis-suck-generally"&gt;Timezone UIs suck, generally&lt;/h4&gt;
&lt;p&gt;As an aside, here's my least favorite time-related UI on the modern internet, from Google Calendar:&lt;/p&gt;
&lt;p&gt;&lt;img src="https://static.simonwillison.net/static/2024/google-calendar-timezones.jpg" alt="Google Calendar dialog for Event time zone, has a checkbox for Use separate start and end time zones and then a dropdown box with visible options (GMT-11:00) Niue Time, (GMT-11:00) Samoa Standard Time, (GMT-10:00) Cook Islands Standard Time, (GMT-10:00) Hawaii-Aleutian Standard Time, (GMT-10:00) Hawaii-Aleutian Time, (GMT-10:00) Tahiti Time, (GMT-09:30) Marquesas Time, (GMT-09:00) Alaska Time - Anchorage" style="max-width: 100%;" /&gt;&lt;/p&gt;
&lt;p&gt;There isn't even a search option! Good luck finding America/New_York in there, assuming you knew that's what you were looking for in the first place.&lt;/p&gt;
    
        &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/databases"&gt;databases&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/events"&gt;events&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/time"&gt;time&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/timezones"&gt;timezones&lt;/a&gt;&lt;/p&gt;
    

</summary><category term="databases"/><category term="events"/><category term="time"/><category term="timezones"/></entry><entry><title>Quoting Jeremy Keith</title><link href="https://simonwillison.net/2024/Sep/17/jeremy-keith/#atom-tag" rel="alternate"/><published>2024-09-17T18:15:52+00:00</published><updated>2024-09-17T18:15:52+00:00</updated><id>https://simonwillison.net/2024/Sep/17/jeremy-keith/#atom-tag</id><summary type="html">
    &lt;blockquote cite="https://adactio.com/journal/21421"&gt;&lt;p&gt;Something that I confirmed that other conference organisers are also experiencing is last-minute ticket sales. This is something that happened with UX London this year. For most of the year, ticket sales were trickling along. Then in the last few weeks before the event we sold more tickets than we had sold in the six months previously. […]&lt;/p&gt;
&lt;p&gt;When I was in Ireland I had a chat with a friend of mine who works at the Everyman Theatre in Cork. They’re experiencing something similar. So maybe it’s not related to the tech industry specifically.&lt;/p&gt;&lt;/blockquote&gt;
&lt;p class="cite"&gt;&amp;mdash; &lt;a href="https://adactio.com/journal/21421"&gt;Jeremy Keith&lt;/a&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/events"&gt;events&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/jeremy-keith"&gt;jeremy-keith&lt;/a&gt;&lt;/p&gt;



</summary><category term="conferences"/><category term="events"/><category term="jeremy-keith"/></entry><entry><title>NumFOCUS DISCOVER Cookbook: Minimal Measures</title><link href="https://simonwillison.net/2024/May/19/numfocus-minimal-measures/#atom-tag" rel="alternate"/><published>2024-05-19T18:24:21+00:00</published><updated>2024-05-19T18:24:21+00:00</updated><id>https://simonwillison.net/2024/May/19/numfocus-minimal-measures/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="https://discover-cookbook.numfocus.org/02_minimal_measures.html"&gt;NumFOCUS DISCOVER Cookbook: Minimal Measures&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
NumFOCUS publish &lt;a href="https://discover-cookbook.numfocus.org/intro.html"&gt;a guide&lt;/a&gt; "for organizers of conferences and events to support and encourage diversity and inclusion at those events."&lt;/p&gt;
&lt;p&gt;It includes this useful collection of the easiest and most impactful measures that events can put in place, covering topics such as accessibility, speaker selection, catering and provision of gender-neutral restrooms.


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/events"&gt;events&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/diversity"&gt;diversity&lt;/a&gt;&lt;/p&gt;



</summary><category term="events"/><category term="diversity"/></entry><entry><title>What are good event venues to have a 100 person weekend hackathon in San Francisco?</title><link href="https://simonwillison.net/2014/Feb/24/what-are-good-event/#atom-tag" rel="alternate"/><published>2014-02-24T18:54:00+00:00</published><updated>2014-02-24T18:54:00+00:00</updated><id>https://simonwillison.net/2014/Feb/24/what-are-good-event/#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-event-venues-to-have-a-100-person-weekend-hackathon-in-San-Francisco/answer/Simon-Willison"&gt;What are good event venues to have a 100 person weekend hackathon in San Francisco?&lt;/a&gt; on Quora&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;As a general rule, tech companies in San Francisco are very supportive of hackathons and keen to host events. Eventbrite have hosted this kind of event in their office in the past, and I'm certain there are a bunch of other companies with decent spaces that would be worth approaching. Does the hackathon have a specific topic? I suggest approaching companies related to that topic as a starting point.&lt;/p&gt;
    
        &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/events"&gt;events&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/san-francisco"&gt;san-francisco&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/quora"&gt;quora&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/hackathons"&gt;hackathons&lt;/a&gt;&lt;/p&gt;
    

</summary><category term="events"/><category term="san-francisco"/><category term="quora"/><category term="hackathons"/></entry><entry><title>Why was LinkedIn Events shut down? Why isn't there now a social network for business events?</title><link href="https://simonwillison.net/2014/Jan/13/why-was-linkedin-events/#atom-tag" rel="alternate"/><published>2014-01-13T12:50:00+00:00</published><updated>2014-01-13T12:50:00+00:00</updated><id>https://simonwillison.net/2014/Jan/13/why-was-linkedin-events/#atom-tag</id><summary type="html">
    &lt;p&gt;&lt;em&gt;My answer to &lt;a href="https://www.quora.com/Why-was-LinkedIn-Events-shut-down-Why-isnt-there-now-a-social-network-for-business-events/answer/Simon-Willison"&gt;Why was LinkedIn Events shut down? Why isn&amp;#39;t there now a social network for business events?&lt;/a&gt; on Quora&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Our site Lanyrd offers LinkedIn signin and works as a social network for business and professional events. You can read more about our LinkedIn integration here: &lt;span&gt;&lt;a href="http://lanyrd.com/blog/2012/linkedin/"&gt;Use Lanyrd and LinkedIn to get more out of professional events and conferences&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;
    
        &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/business"&gt;business&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/events"&gt;events&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/linkedin"&gt;linkedin&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/networking"&gt;networking&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/social-media"&gt;social-media&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/social-networks"&gt;social-networks&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/quora"&gt;quora&lt;/a&gt;&lt;/p&gt;
    

</summary><category term="business"/><category term="events"/><category term="linkedin"/><category term="networking"/><category term="social-media"/><category term="social-networks"/><category term="quora"/></entry><entry><title>Calendars: When posting a facebook event page for an event that is repeated on two dates, should you use one page or two? (The events are games that are identical and should not have overlapping players)</title><link href="https://simonwillison.net/2014/Jan/7/calendars-when-posting-a/#atom-tag" rel="alternate"/><published>2014-01-07T14:43:00+00:00</published><updated>2014-01-07T14:43:00+00:00</updated><id>https://simonwillison.net/2014/Jan/7/calendars-when-posting-a/#atom-tag</id><summary type="html">
    &lt;p&gt;&lt;em&gt;My answer to &lt;a href="https://www.quora.com/Calendars-When-posting-a-facebook-event-page-for-an-event-that-is-repeated-on-two-dates-should-you-use-one-page-or-two-The-events-are-games-that-are-identical-and-should-not-have-overlapping-players/answer/Simon-Willison"&gt;Calendars: When posting a facebook event page for an event that is repeated on two dates, should you use one page or two? (The events are games that are identical and should not have overlapping players)&lt;/a&gt; on Quora&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;I would use separate pages. The most valuable part of a Facebook event page is being able to see who is going to that event (and hence which of your friends will be there). If there are two events on two separate days you want to be able to maintain two separate lists of attendees.&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/facebook"&gt;facebook&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/games"&gt;games&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;/p&gt;
    

</summary><category term="calendars"/><category term="events"/><category term="facebook"/><category term="games"/><category term="startups"/><category term="quora"/></entry><entry><title>How do I network with speakers at events?</title><link href="https://simonwillison.net/2013/Dec/6/how-do-i-network/#atom-tag" rel="alternate"/><published>2013-12-06T11:31:00+00:00</published><updated>2013-12-06T11:31:00+00:00</updated><id>https://simonwillison.net/2013/Dec/6/how-do-i-network/#atom-tag</id><summary type="html">
    &lt;p&gt;&lt;em&gt;My answer to &lt;a href="https://www.quora.com/How-do-I-network-with-speakers-at-events/answer/Simon-Willison"&gt;How do I network with speakers at events?&lt;/a&gt; on Quora&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;I've spoken at loads of conferences, and I can tell you that speakers WANT you to approach them. They're definitely interested in talking to you - that's one of the main reasons they speak.&lt;/p&gt;

&lt;p&gt;Good speakers will hang around for the rest of the conference, and head to the after-party / bar afterwards. The initial rush of people after their talk almost always subsides within 20 minutes, so you should be able to talk to them later on without needing to queue.&lt;/p&gt;

&lt;p&gt;There are a few exceptions: VCs might not be too keen on having everyone at an event pitching their startup - but generally you should expect that most speakers would be happy to talk to you.&lt;/p&gt;
    
        &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/events"&gt;events&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/networking"&gt;networking&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/quora"&gt;quora&lt;/a&gt;&lt;/p&gt;
    

</summary><category term="events"/><category term="networking"/><category term="quora"/></entry><entry><title>Can Meetup be used to organize virtual events?</title><link href="https://simonwillison.net/2013/Nov/26/can-meetup-be-used/#atom-tag" rel="alternate"/><published>2013-11-26T18:05:00+00:00</published><updated>2013-11-26T18:05:00+00:00</updated><id>https://simonwillison.net/2013/Nov/26/can-meetup-be-used/#atom-tag</id><summary type="html">
    &lt;p&gt;&lt;em&gt;My answer to &lt;a href="https://www.quora.com/Can-Meetup-be-used-to-organize-virtual-events/answer/Simon-Willison"&gt;Can Meetup be used to organize virtual events?&lt;/a&gt; on Quora&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;I don't think so. From &lt;span&gt;&lt;a href="http://help.meetup.com/customer/portal/articles/865536-meetup-s-community-guidelines"&gt;http://help.meetup.com/customer/...&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;"Meetup is not a place for groups that ... Don’t meet face-to-face, such as a webinar, teleseminar, or conference call"&lt;/p&gt;
    
        &lt;p&gt;Tags: &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/meetup"&gt;meetup&lt;/a&gt;&lt;/p&gt;
    

</summary><category term="events"/><category term="quora"/><category term="meetup"/></entry><entry><title>Can I promote an online/virtual/ webinar event through Meetup?</title><link href="https://simonwillison.net/2013/Oct/30/can-i-promote-an/#atom-tag" rel="alternate"/><published>2013-10-30T18:20:00+00:00</published><updated>2013-10-30T18:20:00+00:00</updated><id>https://simonwillison.net/2013/Oct/30/can-i-promote-an/#atom-tag</id><summary type="html">
    &lt;p&gt;&lt;em&gt;My answer to &lt;a href="https://www.quora.com/Can-I-promote-an-online-virtual-webinar-event-through-Meetup/answer/Simon-Willison"&gt;Can I promote an online/virtual/ webinar event through Meetup?&lt;/a&gt; on Quora&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;No. That's specifically mentioned as something Meetup should not be used for in their community guidelines: &lt;span&gt;&lt;a href="http://help.meetup.com/customer/portal/articles/865536-meetup-s-community-guidelines"&gt;Meetup's Community Guidelines&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;"Meetup is not a place for groups that... Don’t meet face-to-face, such as a webinar, teleseminar, or conference call"&lt;/p&gt;
    
        &lt;p&gt;Tags: &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/meetup"&gt;meetup&lt;/a&gt;&lt;/p&gt;
    

</summary><category term="events"/><category term="quora"/><category term="meetup"/></entry><entry><title>Will it ever be possible to know all the variables involving a specific chaotic event, like the lottery numbers?</title><link href="https://simonwillison.net/2013/Oct/29/will-it-ever-be/#atom-tag" rel="alternate"/><published>2013-10-29T16:08:00+00:00</published><updated>2013-10-29T16:08:00+00:00</updated><id>https://simonwillison.net/2013/Oct/29/will-it-ever-be/#atom-tag</id><summary type="html">
    &lt;p&gt;&lt;em&gt;My answer to &lt;a href="https://www.quora.com/Will-it-ever-be-possible-to-know-all-the-variables-involving-a-specific-chaotic-event-like-the-lottery-numbers/answer/Simon-Willison"&gt;Will it ever be possible to know all the variables involving a specific chaotic event, like the lottery numbers?&lt;/a&gt; on Quora&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;IANAP (I Am Not A Physicist) but my understanding of Heisenberg's uncertainty principle is that it is impossible to know both the exact position and the exact momentum of a particle at the same time. So no.&lt;/p&gt;
    
        &lt;p&gt;Tags: &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;/p&gt;
    

</summary><category term="events"/><category term="quora"/></entry><entry><title>Which event gave you a real happiness?</title><link href="https://simonwillison.net/2013/Oct/28/which-event-gave-you/#atom-tag" rel="alternate"/><published>2013-10-28T12:07:00+00:00</published><updated>2013-10-28T12:07:00+00:00</updated><id>https://simonwillison.net/2013/Oct/28/which-event-gave-you/#atom-tag</id><summary type="html">
    &lt;p&gt;&lt;em&gt;My answer to &lt;a href="https://www.quora.com/Which-event-gave-you-a-real-happiness/answer/Simon-Willison"&gt;Which event gave you a real happiness?&lt;/a&gt; on Quora&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;The Maker Faire in California, and the Mini Maker Faire in Brighton, UK. The enthusiasm for making things for the sake of making things is delightful and infectious.&lt;/p&gt;
    
        &lt;p&gt;Tags: &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;/p&gt;
    

</summary><category term="events"/><category term="quora"/></entry><entry><title>Who would like to help set up a Wordpress site that is event focused?</title><link href="https://simonwillison.net/2013/Oct/23/who-would-like-to/#atom-tag" rel="alternate"/><published>2013-10-23T13:38:00+00:00</published><updated>2013-10-23T13:38:00+00:00</updated><id>https://simonwillison.net/2013/Oct/23/who-would-like-to/#atom-tag</id><summary type="html">
    &lt;p&gt;&lt;em&gt;My answer to &lt;a href="https://www.quora.com/Who-would-like-to-help-set-up-a-Wordpress-site-that-is-event-focused/answer/Simon-Willison"&gt;Who would like to help set up a Wordpress site that is event focused?&lt;/a&gt; on Quora&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Eventbrite (my employer) recently worked with &lt;span&gt;&lt;a href="http://WordPress.com"&gt;WordPress.com&lt;/a&gt;&lt;/span&gt; to provide an integration between the two services which you may find relevant - it makes it very easy to set up a &lt;span&gt;&lt;a href="http://WordPress.com"&gt;WordPress.com&lt;/a&gt;&lt;/span&gt; hosted site which ties in to the Eventbrite API to promote and enable ticket sales: &lt;span&gt;&lt;a href="https://www.eventbrite.com/l/wordpress"&gt;WordPress.com Integrations for Eventbrite&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;
    
        &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/events"&gt;events&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/web-development"&gt;web-development&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/wordpress"&gt;wordpress&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/quora"&gt;quora&lt;/a&gt;&lt;/p&gt;
    

</summary><category term="events"/><category term="web-development"/><category term="wordpress"/><category term="quora"/></entry><entry><title>What are some creative way-finding methods for events? Besides the usual signs.</title><link href="https://simonwillison.net/2013/Oct/15/what-are-some-creative/#atom-tag" rel="alternate"/><published>2013-10-15T09:16:00+00:00</published><updated>2013-10-15T09:16:00+00:00</updated><id>https://simonwillison.net/2013/Oct/15/what-are-some-creative/#atom-tag</id><summary type="html">
    &lt;p&gt;&lt;em&gt;My answer to &lt;a href="https://www.quora.com/What-are-some-creative-way-finding-methods-for-events-Besides-the-usual-signs/answer/Simon-Willison"&gt;What are some creative way-finding methods for events? Besides the usual signs.&lt;/a&gt; on Quora&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Add a venue map to the inside of the conference badge.&lt;/p&gt;

&lt;p&gt;Why the inside? Because the badge should have the attendee's name on both sides, in case it flips over.&lt;/p&gt;

&lt;p&gt;Adding a summary of the schedule to the badge (essentially turning the badge in to a little booklet) is a good idea too.&lt;/p&gt;

&lt;p&gt;dConstruct in Brighton is a good example of an event with a well designed booklet badge - though as it is single track there's no need for a venue map.&lt;/p&gt;

&lt;p&gt;(For a UX conference though if suggest that doing a really good job with the signs would be more appropriate than inventing a new, stylish but potentially less usable alternative to them).&lt;/p&gt;
    
        &lt;p&gt;Tags: &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;/p&gt;
    

</summary><category term="events"/><category term="quora"/></entry><entry><title>Other than CL, Yelp and Eventbrite, what are some good online event calendars to post to?</title><link href="https://simonwillison.net/2013/Sep/18/other-than-cl-yelp/#atom-tag" rel="alternate"/><published>2013-09-18T17:53:00+00:00</published><updated>2013-09-18T17:53:00+00:00</updated><id>https://simonwillison.net/2013/Sep/18/other-than-cl-yelp/#atom-tag</id><summary type="html">
    &lt;p&gt;&lt;em&gt;My answer to &lt;a href="https://www.quora.com/Other-than-CL-Yelp-and-Eventbrite-what-are-some-good-online-event-calendars-to-post-to/answer/Simon-Willison"&gt;Other than CL, Yelp and Eventbrite, what are some good online event calendars to post to?&lt;/a&gt; on Quora&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Make sure you are listed on &lt;span&gt;&lt;a href="http://lanyrd.com/"&gt;http://lanyrd.com/&lt;/a&gt;&lt;/span&gt; - and don't forget to add you event's speakers and tag it with the relevant topics (e.g. &lt;span&gt;&lt;a href="http://lanyrd.com/topics/social-media/"&gt;http://lanyrd.com/topics/social-...&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/events"&gt;events&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/quora"&gt;quora&lt;/a&gt;&lt;/p&gt;
    

</summary><category term="conferences"/><category term="events"/><category term="quora"/></entry><entry><title>Event Planning: What are some useful books and resources on professional events and conference planning?</title><link href="https://simonwillison.net/2013/Sep/18/event-planning-what-are/#atom-tag" rel="alternate"/><published>2013-09-18T16:39:00+00:00</published><updated>2013-09-18T16:39:00+00:00</updated><id>https://simonwillison.net/2013/Sep/18/event-planning-what-are/#atom-tag</id><summary type="html">
    &lt;p&gt;&lt;em&gt;My answer to &lt;a href="https://www.quora.com/Event-Planning-What-are-some-useful-books-and-resources-on-professional-events-and-conference-planning/answer/Simon-Willison"&gt;Event Planning: What are some useful books and resources on professional events and conference planning?&lt;/a&gt; on Quora&lt;/em&gt;&lt;/p&gt;

&lt;span&gt;&lt;a href="http://www.quirksmode.org/coh/"&gt;http://www.quirksmode.org/coh/&lt;/a&gt;&lt;/span&gt; is fantastic. It focuses on running small tech conferences, but there's plenty of advice in there that applies to all sizes of event.
    
        &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/conferences"&gt;conferences&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;/p&gt;
    

</summary><category term="conferences"/><category term="events"/><category term="quora"/></entry><entry><title>Event Planning: What can I do to protect myself from a keynote speaker not showing up?</title><link href="https://simonwillison.net/2013/Sep/15/event-planning-what-can/#atom-tag" rel="alternate"/><published>2013-09-15T17:33:00+00:00</published><updated>2013-09-15T17:33:00+00:00</updated><id>https://simonwillison.net/2013/Sep/15/event-planning-what-can/#atom-tag</id><summary type="html">
    &lt;p&gt;&lt;em&gt;My answer to &lt;a href="https://www.quora.com/Event-Planning-What-can-I-do-to-protect-myself-from-a-keynote-speaker-not-showing-up/answer/Simon-Willison"&gt;Event Planning: What can I do to protect myself from a keynote speaker not showing up?&lt;/a&gt; on Quora&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;My hunch is that if a keynote speaker doesn't show up it won't be for financial reasons - and they wouldn't expect their fee to be paid. Much more likely it would be a family emergency or unexpected travel problem.&lt;/p&gt;

&lt;p&gt;Have you investigated event insurance?&lt;/p&gt;
    
        &lt;p&gt;Tags: &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;/p&gt;
    

</summary><category term="events"/><category term="quora"/></entry><entry><title>Events (leisure): What are the best places in San Francisco for organizing a small meetup?</title><link href="https://simonwillison.net/2013/Aug/8/events-leisure-what-are/#atom-tag" rel="alternate"/><published>2013-08-08T17:20:00+00:00</published><updated>2013-08-08T17:20:00+00:00</updated><id>https://simonwillison.net/2013/Aug/8/events-leisure-what-are/#atom-tag</id><summary type="html">
    &lt;p&gt;&lt;em&gt;My answer to &lt;a href="https://www.quora.com/Events-leisure-What-are-the-best-places-in-San-Francisco-for-organizing-a-small-meetup/answer/Simon-Willison"&gt;Events (leisure): What are the best places in San Francisco for organizing a small meetup?&lt;/a&gt; on Quora&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;If it's a technical event, there are dozens of tech companies with excellent facilities who might be convinced to host the event for free.&lt;/p&gt;
    
        &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/events"&gt;events&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/san-francisco"&gt;san-francisco&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/quora"&gt;quora&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/meetup"&gt;meetup&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/sanfranciscobayarea"&gt;sanfranciscobayarea&lt;/a&gt;&lt;/p&gt;
    

</summary><category term="events"/><category term="san-francisco"/><category term="quora"/><category term="meetup"/><category term="sanfranciscobayarea"/></entry><entry><title>What are the most exciting sporting events in the world?</title><link href="https://simonwillison.net/2013/Aug/4/what-are-the-most/#atom-tag" rel="alternate"/><published>2013-08-04T14:26:00+00:00</published><updated>2013-08-04T14:26:00+00:00</updated><id>https://simonwillison.net/2013/Aug/4/what-are-the-most/#atom-tag</id><summary type="html">
    &lt;p&gt;&lt;em&gt;My answer to &lt;a href="https://www.quora.com/What-are-the-most-exciting-sporting-events-in-the-world/answer/Simon-Willison"&gt;What are the most exciting sporting events in the world?&lt;/a&gt; on Quora&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;That's easy... The Mongolian Golden Eagle Hunting Festival, held every October.&lt;/p&gt;

&lt;div&gt;&lt;img src="https://qph.ec.quoracdn.net/main-qimg-49f222f9c95b27545b4fbd35de4363fd-c" width="500" height="338" style="max-width: 100%" /&gt;&lt;/div&gt;&lt;br /&gt;What do they hunt? Wolves!

&lt;div&gt;&lt;img src="https://qph.ec.quoracdn.net/main-qimg-269b1e7124189e919187b562eef4956e-c" width="624" height="310" style="max-width: 100%" /&gt;&lt;/div&gt;&lt;br /&gt;&lt;span&gt;&lt;a href="http://m.travel.cnn.com/ireport/ireport-eagle-hunters-mongolia-880476"&gt;http://m.travel.cnn.com/ireport/...&lt;/a&gt;&lt;/span&gt;
    
        &lt;p&gt;Tags: &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/sports"&gt;sports&lt;/a&gt;&lt;/p&gt;
    

</summary><category term="events"/><category term="quora"/><category term="sports"/></entry><entry><title>Events (leisure): How do you organize a conferencce?</title><link href="https://simonwillison.net/2013/Jul/31/events-leisure-how-do/#atom-tag" rel="alternate"/><published>2013-07-31T14:44:00+00:00</published><updated>2013-07-31T14:44:00+00:00</updated><id>https://simonwillison.net/2013/Jul/31/events-leisure-how-do/#atom-tag</id><summary type="html">
    &lt;p&gt;&lt;em&gt;My answer to &lt;a href="https://www.quora.com/Events-leisure-How-do-you-organize-a-conferencce/answer/Simon-Willison"&gt;Events (leisure): How do you organize a conferencce?&lt;/a&gt; on Quora&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Read &lt;span&gt;&lt;a href="http://www.quirksmode.org/coh/"&gt;http://www.quirksmode.org/coh/&lt;/a&gt;&lt;/span&gt; - and good luck!&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/events"&gt;events&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/quora"&gt;quora&lt;/a&gt;&lt;/p&gt;
    

</summary><category term="conferences"/><category term="events"/><category term="quora"/></entry><entry><title>How can I successfully organize a conference?</title><link href="https://simonwillison.net/2013/Jul/29/how-can-i-successfully/#atom-tag" rel="alternate"/><published>2013-07-29T11:59:00+00:00</published><updated>2013-07-29T11:59:00+00:00</updated><id>https://simonwillison.net/2013/Jul/29/how-can-i-successfully/#atom-tag</id><summary type="html">
    &lt;p&gt;&lt;em&gt;My answer to &lt;a href="https://www.quora.com/How-can-I-successfully-organize-a-conference/answer/Simon-Willison"&gt;How can I successfully organize a conference?&lt;/a&gt; on Quora&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;PPK's conference organisers handbook is crammed with useful advice on running this kind of event:  &lt;span&gt;&lt;a href="http://www.quirksmode.org/coh/"&gt;http://www.quirksmode.org/coh/&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;
    
        &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/business"&gt;business&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/conferences"&gt;conferences&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/conference"&gt;conference&lt;/a&gt;&lt;/p&gt;
    

</summary><category term="business"/><category term="conferences"/><category term="events"/><category term="quora"/><category term="conference"/></entry><entry><title>Events (leisure): What platforms based on sharing/creating users' future plans with friends have been successful?</title><link href="https://simonwillison.net/2013/Jul/21/events-leisure-what-platforms/#atom-tag" rel="alternate"/><published>2013-07-21T12:35:00+00:00</published><updated>2013-07-21T12:35:00+00:00</updated><id>https://simonwillison.net/2013/Jul/21/events-leisure-what-platforms/#atom-tag</id><summary type="html">
    &lt;p&gt;&lt;em&gt;My answer to &lt;a href="https://www.quora.com/Events-leisure-What-platforms-based-on-sharing-creating-users-future-plans-with-friends-have-been-successful/answer/Simon-Willison"&gt;Events (leisure): What platforms based on sharing/creating users&amp;#39; future plans with friends have been successful?&lt;/a&gt; on Quora&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;The founder of Plancast wrote an extensive post mortem discussing the challenges involved here: &lt;/p&gt;

&lt;span&gt;&lt;a href="http://www.techcrunch.com/2012/01/22/post-mortem-for-plancast/"&gt;http://www.techcrunch.com/2012/0...&lt;/a&gt;&lt;/span&gt;

&lt;p&gt;A key challenge is that people don't tend to announce their plans more than a few days in advance, which means that the information they share has a very short shelf life during which it is useful.&lt;/p&gt;

&lt;p&gt;We've managed to avoid that particular trap at &lt;span&gt;&lt;a href="http://lanyrd.com/"&gt;http://lanyrd.com/&lt;/a&gt;&lt;/span&gt; because people (in particular speakers) announce their participation in a conference months in advance - unlike social or entertainment events.&lt;/p&gt;
    
        &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/events"&gt;events&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/social-networks"&gt;social-networks&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/quora"&gt;quora&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/foursquare"&gt;foursquare&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/plancast"&gt;plancast&lt;/a&gt;&lt;/p&gt;
    

</summary><category term="events"/><category term="social-networks"/><category term="quora"/><category term="foursquare"/><category term="plancast"/></entry><entry><title>What do you offer to a high-profile speaker when inviting him to an event?</title><link href="https://simonwillison.net/2013/Jun/24/what-do-you-offer/#atom-tag" rel="alternate"/><published>2013-06-24T14:12:00+00:00</published><updated>2013-06-24T14:12:00+00:00</updated><id>https://simonwillison.net/2013/Jun/24/what-do-you-offer/#atom-tag</id><summary type="html">
    &lt;p&gt;&lt;em&gt;My answer to &lt;a href="https://www.quora.com/What-do-you-offer-to-a-high-profile-speaker-when-inviting-him-to-an-event/answer/Simon-Willison"&gt;What do you offer to a high-profile speaker when inviting him to an event?&lt;/a&gt; on Quora&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Unless they live locally it's almost rude not to offer flights and accommodation - they will certainly expect it.&lt;/p&gt;

&lt;p&gt;If you want to make a really good impression, have someone pick them up at the airport and take them to their hotel. It can be a black car, but it's also a nice gesture if the event organiser does it personally.&lt;/p&gt;

&lt;p&gt;For massive bonus points: provide them with a preloaded data SIM card (maybe even in a device that does tethering which they can borrow for the trip). Speakers from abroad will appreciate this enormously.&lt;/p&gt;

&lt;p&gt;Have a speakers dinner at a good restaurant.&lt;/p&gt;

&lt;p&gt;Don't be surprised if high profile speakers expect a speakers fee.&lt;/p&gt;
    
        &lt;p&gt;Tags: &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;/p&gt;
    

</summary><category term="events"/><category term="quora"/></entry><entry><title>What is the best conference welcome video you've ever seen?</title><link href="https://simonwillison.net/2013/Jun/11/what-is-the-best/#atom-tag" rel="alternate"/><published>2013-06-11T11:35:00+00:00</published><updated>2013-06-11T11:35:00+00:00</updated><id>https://simonwillison.net/2013/Jun/11/what-is-the-best/#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-best-conference-welcome-video-youve-ever-seen/answer/Simon-Willison"&gt;What is the best conference welcome video you&amp;#39;ve ever seen?&lt;/a&gt; on Quora&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Webstock always have awesome opening titles. Here's their 2013 one: &lt;span&gt;&lt;a href="http://vimeo.com/61502202"&gt;Webstock '13 opening&lt;/a&gt;&lt;/span&gt; - it's worth hunting around for previous years as well.&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/events"&gt;events&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/quora"&gt;quora&lt;/a&gt;&lt;/p&gt;
    

</summary><category term="conferences"/><category term="events"/><category term="quora"/></entry><entry><title>What tech conferences will be taking place in Seattle the summer of 2013?</title><link href="https://simonwillison.net/2013/Jun/3/what-tech-conferences-will/#atom-tag" rel="alternate"/><published>2013-06-03T18:00:00+00:00</published><updated>2013-06-03T18:00:00+00:00</updated><id>https://simonwillison.net/2013/Jun/3/what-tech-conferences-will/#atom-tag</id><summary type="html">
    &lt;p&gt;&lt;em&gt;My answer to &lt;a href="https://www.quora.com/What-tech-conferences-will-be-taking-place-in-Seattle-the-summer-of-2013/answer/Simon-Willison"&gt;What tech conferences will be taking place in Seattle the summer of 2013?&lt;/a&gt; on Quora&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;We have a list of upcoming (mostly tech) professional events and conferences in Seattle here: &lt;span&gt;&lt;a href="http://lanyrd.com/places/seattle/"&gt;Conferences in Seattle | Conferences &amp;amp; Events | Lanyrd&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;You can subscribe to iCal or RSS feeds of that page to stay up to date with new events.&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/events"&gt;events&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/software-engineering"&gt;software-engineering&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/technology"&gt;technology&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/quora"&gt;quora&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/conference"&gt;conference&lt;/a&gt;&lt;/p&gt;
    

</summary><category term="conferences"/><category term="events"/><category term="software-engineering"/><category term="technology"/><category term="quora"/><category term="conference"/></entry><entry><title>What are some personalized ways to search for an event?</title><link href="https://simonwillison.net/2013/Jun/1/what-are-some-personalized/#atom-tag" rel="alternate"/><published>2013-06-01T14:23:00+00:00</published><updated>2013-06-01T14:23:00+00:00</updated><id>https://simonwillison.net/2013/Jun/1/what-are-some-personalized/#atom-tag</id><summary type="html">
    &lt;p&gt;&lt;em&gt;My answer to &lt;a href="https://www.quora.com/What-are-some-personalized-ways-to-search-for-an-event/answer/Simon-Willison"&gt;What are some personalized ways to search for an event?&lt;/a&gt; on Quora&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;For conferences and professional events, try out our service &lt;span&gt;&lt;a href="http://lanyrd.com/"&gt;http://lanyrd.com/&lt;/a&gt;&lt;/span&gt; - if you sign in with Twitter (or LinkedIn) we'll show you events the people you are connected to are speaking at or attending, and we can make further recommendations based on your interest graph if you let us know which topics you are interested in.&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/events"&gt;events&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/quora"&gt;quora&lt;/a&gt;&lt;/p&gt;
    

</summary><category term="conferences"/><category term="events"/><category term="quora"/></entry><entry><title>What should tech conferences, events and planners do to add diversity?</title><link href="https://simonwillison.net/2013/Jun/1/what-should-tech-conferences/#atom-tag" rel="alternate"/><published>2013-06-01T10:17:00+00:00</published><updated>2013-06-01T10:17:00+00:00</updated><id>https://simonwillison.net/2013/Jun/1/what-should-tech-conferences/#atom-tag</id><summary type="html">
    &lt;p&gt;&lt;em&gt;My answer to &lt;a href="https://www.quora.com/What-should-tech-conferences-events-and-planners-do-to-add-diversity/answer/Simon-Willison"&gt;What should tech conferences, events and planners do to add diversity?&lt;/a&gt; on Quora&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;JSConf did something very clever that helped them get 25% female speakers last year: &lt;span&gt;&lt;a href="http://2012.jsconf.eu/2012/09/17/beating-the-odds-how-we-got-25-percent-women-speakers.html"&gt;Beating the Odds - How We got 25% Women Speakers for JSConf EU 2012&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;Their trick was to run an anonymous call for proposals, and then have a separate team go out and actively encourage people from under-represented groups to submit talks, and coach them to help them put together a great submission.&lt;/p&gt;

&lt;p&gt;Read their article: it was a really successful strategy.&lt;/p&gt;
    
        &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/call-for-proposals"&gt;call-for-proposals&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/conferences"&gt;conferences&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/events"&gt;events&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/technology"&gt;technology&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/quora"&gt;quora&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/conference"&gt;conference&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/diversity"&gt;diversity&lt;/a&gt;&lt;/p&gt;
    

</summary><category term="call-for-proposals"/><category term="conferences"/><category term="events"/><category term="technology"/><category term="quora"/><category term="conference"/><category term="diversity"/></entry><entry><title>What are the best web solutions available for coordinating people you send out for events?</title><link href="https://simonwillison.net/2013/May/1/what-are-the-best/#atom-tag" rel="alternate"/><published>2013-05-01T14:46:00+00:00</published><updated>2013-05-01T14:46:00+00:00</updated><id>https://simonwillison.net/2013/May/1/what-are-the-best/#atom-tag</id><summary type="html">
    &lt;p&gt;&lt;em&gt;My answer to &lt;a href="https://www.quora.com/What-are-the-best-web-solutions-available-for-coordinating-people-you-send-out-for-events/answer/Simon-Willison"&gt;What are the best web solutions available for coordinating people you send out for events?&lt;/a&gt; on Quora&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;We recently released a product that solves exactly this problem. Lanyrd Pro is designed to help companies that promote themselves through attending, speaking at and sponsoring events co-ordinate their event strategy internally and promote it externally.&lt;/p&gt;

&lt;p&gt;A key feature of the product is a private events calendar which pulls together information about what your team are already doing, and allows you to collect relevant events and annotate them with private notes and labels. Here's a screenshot:&lt;/p&gt;

&lt;div&gt;&lt;img src="https://qph.ec.quoracdn.net/main-qimg-2e2fc187d214b5b2c482afbc720817ee" width="1280" height="960" style="max-width: 100%" /&gt;&lt;/div&gt;&lt;br /&gt;We can provide a detailed breakdown of events your team have attended or spoken at in the past, highlight events with open calls for proposals, show you slides and videos from your team's presentations and help you plan your upcoming event strategy.

&lt;p&gt;Our tools can also suggest events your team may want to attend based on your previous activity (and our huge database of professional events and conferences around the world).&lt;/p&gt;

&lt;p&gt;The other half of the product is a branded, public page for communicating your event involvement to the outside world. Companies using the product for this include &lt;span&gt;&lt;a href="http://github.lanyrd.com/"&gt;GitHub&lt;/a&gt;&lt;/span&gt;, &lt;span&gt;&lt;a href="http://facebook-developers.lanyrd.com/"&gt;Facebook Developers&lt;/a&gt;&lt;/span&gt; and &lt;span&gt;&lt;a href="http://events.heroku.com/"&gt;Heroku&lt;/a&gt;&lt;/span&gt;. Here's a screenshot of one of our public-facing team pages:&lt;/p&gt;

&lt;div&gt;&lt;img src="https://qph.ec.quoracdn.net/main-qimg-6a8df4cf53c4dafc1d1430516a56d431" width="1280" height="954" style="max-width: 100%" /&gt;&lt;/div&gt;&lt;br /&gt;You can find out more about our Pro product &lt;span&gt;&lt;a href="http://lanyrd.com/blog/2013/lanyrd-pro/"&gt;on our blog&lt;/a&gt;&lt;/span&gt; or in &lt;span&gt;&lt;a href="http://www.slideshare.net/lanyrd/lanyrd-pro"&gt;this presentation on SlideShare&lt;/a&gt;&lt;/span&gt;.
    
        &lt;p&gt;Tags: &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;/p&gt;
    

</summary><category term="events"/><category term="quora"/></entry><entry><title>What are some cool and cost-effective things to do for and at a wedding reception?</title><link href="https://simonwillison.net/2013/May/1/what-are-some-cool/#atom-tag" rel="alternate"/><published>2013-05-01T10:04:00+00:00</published><updated>2013-05-01T10:04:00+00:00</updated><id>https://simonwillison.net/2013/May/1/what-are-some-cool/#atom-tag</id><summary type="html">
    &lt;p&gt;&lt;em&gt;My answer to &lt;a href="https://www.quora.com/What-are-some-cool-and-cost-effective-things-to-do-for-and-at-a-wedding-reception/answer/Simon-Willison"&gt;What are some cool and cost-effective things to do for and at a wedding reception?&lt;/a&gt; on Quora&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Lawn games! Croquet, pétanque, coits and the like. Cheap, fun, easy for people to pick up, won't ruin any suits and (at least for a UK wedding) traditional without being overly cheesey.&lt;/p&gt;
    
        &lt;p&gt;Tags: &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/weddings"&gt;weddings&lt;/a&gt;&lt;/p&gt;
    

</summary><category term="events"/><category term="quora"/><category term="weddings"/></entry><entry><title>How do conferences make money?</title><link href="https://simonwillison.net/2013/Feb/27/how-do-conferences-make/#atom-tag" rel="alternate"/><published>2013-02-27T11:16:00+00:00</published><updated>2013-02-27T11:16:00+00:00</updated><id>https://simonwillison.net/2013/Feb/27/how-do-conferences-make/#atom-tag</id><summary type="html">
    &lt;p&gt;&lt;em&gt;My answer to &lt;a href="https://www.quora.com/How-do-conferences-make-money/answer/Simon-Willison"&gt;How do conferences make money?&lt;/a&gt; on Quora&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Ticket sales and sponsorships.&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/events"&gt;events&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/eventbrite"&gt;eventbrite&lt;/a&gt;&lt;/p&gt;
    

</summary><category term="conferences"/><category term="events"/><category term="startups"/><category term="quora"/><category term="eventbrite"/></entry><entry><title>What are Startup Friendly Event Venues in Berlin?</title><link href="https://simonwillison.net/2013/Feb/22/what-are-startup-friendly/#atom-tag" rel="alternate"/><published>2013-02-22T10:33:00+00:00</published><updated>2013-02-22T10:33:00+00:00</updated><id>https://simonwillison.net/2013/Feb/22/what-are-startup-friendly/#atom-tag</id><summary type="html">
    &lt;p&gt;&lt;em&gt;My answer to &lt;a href="https://www.quora.com/What-are-Startup-Friendly-Event-Venues-in-Berlin/answer/Simon-Willison"&gt;What are Startup Friendly Event Venues in Berlin?&lt;/a&gt; on Quora&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;We have a list of conference event venues in Berlin here (it's a semi-unreleased feature, so I'd love to get your feedback on if it helps solve your problem): &lt;span&gt;&lt;a href="http://lanyrd.com/venues/berlin/"&gt;Venues in Berlin | Lanyrd&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;At the moment we don't record things like the maximum capacity of a venue, but we DO show you other events that have run there in the past. You should be able to find a good venue for your event by keeping an eye out for venues that have hosted similar sized events, then researching those venues directly yourself.&lt;/p&gt;
    
        &lt;p&gt;Tags: &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;/p&gt;
    

</summary><category term="events"/><category term="quora"/></entry></feed>