Upping participation 1

Posted by Noah Sun, 17 Feb 2008 23:01:00 GMT

I’ve been spending lots of time trying to think of ways to increase participation in OnMyList from the thousands of users who visit the site each day. Generally, we get about 6-7000 users a day, but only about 6 or 7 signups, and usually only a couple of new lists. Not a very big percentage. I’ve identified a few area that I know can be improved upon.

(1) In order to make a list you have to be signed up. Right now if a user attempts ot make a list, they are first taken to the signup page. Kind of a buzz kill. We are going to remove this requirement and take them directly to the list creation first, and ask for singup at the end, but not require it.

(2) I feel many users land on a list page and dont even realize that they could make a list. They might think that onmylist is simply a personal website or an editorially driven one. We are going to make some changes to the messaging to more clearly encourage participation. In order for this to be more effective we are also going to work on simplifying (ie removing) unnecessary words or functions.

We’ll see how this works out…

Love Twitter and OnMyList? 1

Posted by Andrew Tue, 20 Nov 2007 19:48:00 GMT

Now we tweed when OMLers create or edit lists. The list titles and shortened URLs are included in the update. You can follow it at http://twitter.com/onmylist

OML tweeds (by AndrewNg.com)

Derek Powazek Joins our Team 1

Posted by Noah Fri, 16 Nov 2007 02:41:00 GMT

Derek and I met at Zazie in Cole Valley for a late morning brunch way back in June. He didn’t know me from Adam at the time but graciously agreed to meet up since we were practically neighbors. I wanted to run OnMyList past Derek and see what what his thoughts on the website and space were. I think we had just launched a week or two earlier. After our meeting I decided it would be good to have his opinion a little more often and began exploring adding him to the advisory board. Four months later we have.

Derek has a great set of past experiences on all kinds of interesting stuff from design to communities to publishing to photography to chihuahuas (that’s a funny word to type by the way). He played key roles at Blogger, Technorati, and was the founder of user generated magazine JPG. Derek also wrote a seminal book on online communities titled, “Design for Community: The Art of Connecting Real People in Virtual Places.”

Derek joins our existing advisory board members, who I would be remiss not to mention, Jude Lange, Jim Spencer, and Jeff Wasson.

OnMyList Redesign

Posted by Ray Sun, 11 Nov 2007 06:58:00 GMT

Over the last month, we worked very hard to design and implement a lot of new features and improvements for OnMyList and we’ve been so anxious to let the world know about it. Well, we finally did it! If you go to the site now, you should see a brand new user interface. It has a lot of cool new features. Here are some of them:

  • Improved profile – The new profile page now makes it easy for you to see lists you created, lists you made as favorites, lists you rated, people you subscribe to, and people who subscribe to you. You can also sort lists by new to old, old to new, or view count. The Latest Updates tab shows a newsfeed of your OnMyList activities, described next.
  • Newsfeeds – You can now spy on any list or anyone very easily because you will get notified when you make a list, comment on a list, someone else comment on your list or on a list that you commented on, subscribe to someone or someone subscribe to you, someone made your list a favorite, ...etc. We hope this will help our members to stay on top of lists that you are interested and facilitate interactions between members.
  • profile questions & answers – When you go to your profile page, you will find a link at the bottom of the right sidebar to add new profile question and answer to show off your personalities. We’ve also made the editing more obvious with the Edit buttons (We feel the in place editors were too subtle).
  • ticker news – There is a Overheard box on the homepage that shows selected lists that we’ve picked that are interesting. Pretty cool, huh?
  • invite friends – Want to let your friends know you are an OnMyList superstar? Want to show off your lists and what your favorites are? Have a list of images and videos that you want to impress someone? We’ve made it easy for you. Look around at the top of the site.
  • crop profile picture – We know you’ve been wanting to show your whole face in the profile picture. Now you have it.
  • facebook app – We have a facebook application for some time. You can show off your lists to your friends whenever you create or update your lists. You can make a list of favorite gifts for my birthday and have it show up in facebook, and hopefully get a few presents. Isn’t that cool?
  • widget – Just like the facebook app. And what’s more: You can choose to display your latest/favorites/highest rated lists. It just gets better! Get your widget to show off in your own blog or website by clicking My Widgets in your profile page now.

Please let us know whether you like it or not. Enjoy and list your pants off!

attachment_fu and s3 woes, or how I spent most of Friday 2

Posted by Andrew Sat, 10 Nov 2007 09:32:00 GMT

At OML we use Amazon S3 for storage, when we launched the site Gravatar was very unreliable so we had to roll our own with attachment_fu, and it worked fairly well.

With our redesign we want to make all avatars square coz the site looks better that way, so I added a JavaScript image cropper to help you crop your uploaded pictures into squares. It didn’t take long to write and it worked fine in my local development machine. But I was using file_system in attachment_fu locally instead of S3. (Now in retrospect I should’ve setup my own test bucket on S3)... I switched it to S3 on the beta site and it stopped working, that is, the images don’t get cropped properly! After about 10 hours of tracing through attachment_fu and trying silly things such as writing my own with_image override in s3_backend.rb, in the end I only had to add a single line and a minor change. Here are the before and after code…

before:

  def crop2square(args)
    image2crop = find_or_initialize_thumbnail(:full)
    image2crop.with_image do |img|
      @data = img.crop("#{args[:width]}x#{args[:height]}+#{args[:x1]}+#{args[:y1]}")
    end
    attachment_options[:thumbnails].each { |suffix, size| create_or_update_thumbnail(@data, suffix, *size) }
  end

after:

  def crop2square(args)
    image2crop = find_or_initialize_thumbnail(:full)
    image2crop.temp_path = image2crop.create_temp_file
    image2crop.with_image do |img|
      @data = img.crop("#{args[:width]}x#{args[:height]}+#{args[:x1]}+#{args[:y1]}")
    end
    attachment_options[:thumbnails].each { |suffix, size| create_or_update_thumbnail(@data.path, suffix, *size) }
  end

I don’t really feel like explaining why this works right now, and if you’re having the same problem I’m sure you won’t care either and you just want to copy and paste the code and move onto your next problem.

Hope this helps…

It must be Halloween time...

Posted by Noah Wed, 10 Oct 2007 21:04:00 GMT

....because that’s what OMLers are listing about. In the last week or so we’ve seen a deluge of Halloween related lists at OnMyList. We’re quickly becoming Halloween Headquarters. I still haven’t figured out what I am going to be this year. Perhaps I will go as a giant list and make it a marketing event.

Here’s a rundown of ghoulish lists:

Eerie Eats for Your Halloween Party

Things You Can Do With Your Halloween Pumpkin

Halloween Costumes for Couples

My Favorite Halloween Costumes That I Can’t Afford…DAMN!

Cool Halloween Decorations

Famous Witches

13 Awesomely Creative Halloween Costume Ideas

How to build a community according to Flickr

Posted by Noah Fri, 05 Oct 2007 02:50:00 GMT

I found this interesting article about how to build a community on Business Week. In it, Heather Champ, Flickr community manager, gives 10 tips on how to foster a great passionate community. I think we’re getting some of them right and need work on others. I especially like Champ’s assertion that schwag is “one of the core pillars of the Internet.”

Any suggestions for us on what we can do better?

Read the article/slideshow here.

Facebook app invites with RoR 5

Posted by Andrew Wed, 19 Sep 2007 20:25:00 GMT

Ray and I spent quite a while to get everything in our Facebook app to work. There were some blog posts about how get invites to work but they are outdated (and they involve some nasty FQLs).

One thing that I did was to create a beta fb application to test all this stuff out with our beta server, this helps a lot.

So in case you’re going crazy adding invites to your fb app, here’s how we did it. Keep in mind that the fb platform changes rapidly so by the time you read this there is probably a better way to do invites.

In your canvas partial, add a link to http://apps.facebook.com/[yourappname]/invite

here’s how our invite method looks like:

  def invite
    @appname = ENV['RAILS_ENV'] == 'production' ? 'onmylist' : 'onmylist_beta'
    @appid = ENV['RAILS_ENV'] == 'production' ? 12345678 : 01234567

    if fbsession.is_valid?
      @friends2exclude = fbsession.friends_getAppUsers.uid_list        
    end

    render :partial => "select_fbml" 
  end

note: app id’s are not real! :)

Here’s the select_fbml partial:

<fb:fbml>
<fb:subtitle>Invite your friends to join OnMyList</fb:subtitle>

<div style="background-color:#f2fbdc;padding-bottom:0;margin-bottom:0">

<% join_button = CGI::escapeHTML "<fb:req-choice url='http://www.facebook.com/apps/application.php?id=#{@appid}' label='Join OnMyList'>" %>

<fb:request-form 
method="POST" 
invite="true" 
type="OnMyList" 
action="http://apps.facebook.com/<%= @appname %>/"
content="Let's join OnMyList so you can list your pants off! <%= join_button %>">

<fb:multi-friend-selector
rows="5"
exclude_ids="<%= @friends2exclude.join(',') %>"
showborder="false" 
actiontext="Here are your friends who don't have OnMyList. Invite them now!">
</fb:request-form>

</div>
</fb:fbml>

the exclude_ids param is to exclude your friends who already have the app installed.

9 out of 10 Ritual Coffee Customers prefer Apple

Posted by Noah Tue, 18 Sep 2007 23:38:00 GMT

Today Andrew, Margaret and I were all working from Ritual Coffee in the Mission. AS I walked in I looked on at the army of hopped up people working diligently on their computers. Staring back at me was a sea of glowing half eaten Apples. In fact I later did a little count. Of the 27 laptops in Ritual, 24 of them were macs. Pretty impressive! I wonder what the common thread is at Ritual?

Here’s Margaret designing the new OnMyList.

My PB, Margaret and her 17 MBP, Noah's PB (by AndrewNg.com)

Stats Watching

Posted by Noah Mon, 17 Sep 2007 01:49:00 GMT

I guess its kind of like scoreboard watching down the stretch in baseball. Waiting to see what other teams in your division are doing. Jockeying for wildcard or division position. Except in the startup version your obsessively watching your own traffic statistics. The commonality being that you should probably be more worried about winning your game and less worried about watching scores. I must have checked our Google stats 50 times today. We’re getting huge traffic from Stumbleupon which isn’t so surprising. The OnMyList concept is meant to be viral and search/stumble friendly. It has been so far. It’s always fascinating to watch the traffic roll in though. All those potential listers out there just waiting to be found. There’s gold in them hills!!!

Back to work. Won’t check stats for at least another 20 minutes.

Funny email received in response to our newsletter 3

Posted by Noah Tue, 11 Sep 2007 20:16:00 GMT

Top Ten List of Things Your Email Was

Irreverent Politically Incorrect Inflammatory Shameless Self-Promoting Debasing towards Certain Groups Stereotype Confirming Widget Flaunting Facebook Pandering FRIKKIN FUNNY AS HELL ahahahahaa

horns up \m/ but you shoulda linked to the Facebook appy!

OML has moved to EC2 and there is a new web widget 3

Posted by Ray Wed, 29 Aug 2007 18:24:00 GMT

We moved over to Amazon EC2 last night, went very smoothly and also deployed a new web widget that you can show off at your own website.

OnMyList being on EC2 helps us scale better and provide better performance. You will notice the site loads substantially faster.

You can follow these instructions to create your own web widget to put it on your website

Expected downtime Tuesday 8/28 8:30-10:30pm PDT

Posted by Andrew Mon, 27 Aug 2007 21:40:00 GMT

We are going to bring down our site for upgrades and to move to Amazon EC2 tomorrow 8/28 from 8:30 to 10:30 pm California time. If it all goes smoothly we might be back before 10:30… :)

Community Guru

Posted by Noah Wed, 25 Jul 2007 23:54:00 GMT

So you want to be a community guru huh? Well you’ve come to the right place. OnMyList is a burgeoning community that is spreading quickly for such a brand spanking new website. We just launched a little over a month ago and have already had over 100,000 unique visitors. We combine elements of blogging with elements of community. Throw in a dash of Digg, like the user voting element, and you have OnMyList.

Driving traffic is NOT building community. So one of the most important positions at OnMyList is the Community Relations Advocate. When you get the job, you can come up with a more snazzy title as your first order of business.

You’ll be responsible for all communications with existing members of OnMyList. It will be your responsibility to increase all usage numbers and to create high levels of satisfaction among users. You will also be expected to make the case for new developments that increase our chances of the above happening. You will have to work across almost every group in the company to make these things happen.

Qualifications:

  • Must be a very active member of at least 1, but preferably more, existing communities.
  • Must have exemplary written and verbal skills.
  • At least 5 years of solid work experience preferably in online space.
  • Good grasp of online marketing techniques is required.
  • Some technical fluency.
  • Must be a cool person to work with.
  • Absolutely must understand and commit to all of the things that come with a startup (creating processes, rolling sleeves up, working late/weekends, having fun)
  • College degree is essential

This position is in San Francisco, CA.

This position comes with equity and responsibility. Salary and health insurance will also be provided.

We are committed to being a very fun place to work and socially responsible company. Giving back will be a key piece of who we are.

Please submit resume and an informal email introducing yourself to:

jobs@onmylist.com

We're getting better

Posted by Andrew Mon, 09 Jul 2007 23:07:00 GMT

We have just posted a bunch of new features…

  • stats bar
  • new list create/edit page design
  • ability to change passwords (instead of just resetting them)
  • now you can login with either email or username
  • new categories (politics, family, & shopping)
  • you can post your lists to Facebook by clicking the little icon
  • you can delete comments on your own lists
  • RSS feeds for users and latest updates

Slave to the iPhone hype

Posted by Noah Sun, 01 Jul 2007 21:50:00 GMT

get busy pimping your best lists! we’re going to give an 8GB iPhone to the person with the most popular list between today and midnight of July 14. you are only counted once per day so don’t bother repeatedly clicking on your own list. however, you can get 14 easy views by doing it once per day between now and the 14th.

see the skinny here: OnMyList is giving away an iPhone.

memcached and cache_fu 6

Posted by Andrew Fri, 15 Jun 2007 04:12:00 GMT

After going live for about a week it became obvious that we should implement caching to help performance. I experimented with Rails’ page caching, but in Rails 1.2 the expire_cache helper does not deal with custom routes very well. Also, our pages have view counts, ratings, etc, that change way too often for us to be able to cache the entire page.

The next thing I looked at was caching the MySQL queries, this seemed easier than implementing fragment caching, coz I found a CachedModel tutorial and it looked very good. Took me about an hour to get everything with CachedModel working, I then looked at the verbose output of memcached and my development.log, it didn’t seem to be caching very much. After some more googling it turned out that CachedModel only caches find() queries, but we use custom finders in our models almost exclusively. To get it to cache more I had to manually cache and evict objects, which was kindda not fun.

So back to more googling, and I found a RailConf 2007 presentation by Chris Wanstrath on cache_fu, it was appropriately titled Kickin’ Ass with cache_fu. It seemed cool, and he talked about creating wrappers for custom finders, which was exactly what I needed. So I spent like an hour on it and moved from CachedModel to cache_fu.

I was all excited that it was so easy, almost too easy right? Yeah, I restarted my development server in Locomotive, loaded the main page, and was greeted with a “NoMethodError: protected method” error. It was pretty weird, I spent quite a while trying to figure it out by going through the cache_fu code, still couldn’t figure out it. I emailed Chris, who was extremely helpful and replied to my mails in lightning fast speed (thanks Chris!), he had never seen an error like that before either. After a while I went ahead and checked out cache_fu on our production server and ran the test suites that comes with it, it worked! Chris suspected that the problem had to do with Locomotive, I went ahead and installed a few gems to my global environment and ran the tests outside of the Locomotive sandbox, it worked! So after comparing the installed gem lists between Locomotive and MacPorts’ Ruby installation, I narrowed it down to the Ruby-MemCache gem. Uninstalled that, everything worked! So I thought I’d blog about this in case someone run into the same problem in the future. I have no idea when I installed that gem, I guess the name looked good so I installed it.

cache_fu is pretty neat, I created finders that check if there are cached version of the data and I’m using these new finders in our controllers, for example, here’s how the custom finder that locates recently updated lists looks like (I’ve removed some irrelevant code):

def List.recently_updated(category, find_conditions, 
  sort_column, sort_direction, limit, offset)

  find_conditions += 
    " AND (lists.is_private=0 OR lists.is_private IS NULL)"
  lists = List.find(:all, :conditions => find_conditions,
    :order => "updated_at DESC", :limit => limit, 
    :offset => offset)  

  lists = List.cached_perform_roster_sort(lists, 
    sort_column, sort_direction)

  lists
end

The cached version of it looks like this:

def List.cached_recently_updated(category, find_conditions, 
  sort_column, sort_direction, limit, offset)

  get_cache('recently_updated:' + category.to_s +
    conditions.to_s + sort_direction.to_s + 
    limit.to_s + offset.to_s) do

    recently_updated(category, find_conditions, 
      sort_column, sort_direction, limit, offset)
  end
end

pretty clean and simple! :) We’re testing the version of our site that uses memcached right now, if all goes well we will deploy it to the live site and hopefully you will enjoy a nice speedup.

Now we just have to tune the caching a bit, probably will add fragment caching to various places. Next big thing for me is to scale, right now we’re considering EC2 and Joyent.

Expected down time tonight, 10pm EST

Posted by Andrew Mon, 11 Jun 2007 21:22:00 GMT

We have to bring the server down for a few minutes to install a card to provide console access, if everything goes smoothly we should be back online at 10:15 or so…

Sorry about the down time

Posted by Andrew Sat, 09 Jun 2007 20:27:00 GMT

The server that hosts OML had a problem this morning and our site was down for a couple of hours. We couldn’t log onto it remotely so we had to get the hosting company to locate the server and reboot it from there, which took a good couple of hours. Unfortunately we didn’t have a serial rescue console setup with this server so it’s hard for us to figure out what went wrong. We will get that setup ASAP and will look through all the logs to try to figure out what happened… Will post updates to this blog…

aws-s3 woes 3

Posted by Andrew Fri, 08 Jun 2007 21:30:00 GMT

At OML we use Amazon’s S3 for profile pics storage, we switched from local disk to S3 for scalability reasons when we need to move to multiple app servers or Amazon EC2. To implement S3 with attachment_fu was fairly straight-forward. However, we ran into a lot of problems with the aws-s3 gem. Basically the S3 backend, which uses aws-s3, failed with a broken pipe.

I did a bit of googling on this and found out the author of aws-s3 attempted to fix this in the latest subversion snapshot (# attempts changed to 10 by yours truly):

rescue Errno::EPIPE, Timeout::Error, Errno::EPIPE, Errno::EINVAL
    @http = create_connection
    attempts == 10 ? raise : (attempts += 1; retry)
end

So I checked out the latest SVN snapshot as a plugin, but it didn’t quite fix it, from time to time I still got the same error. So I ended up retrying it a couple more time in my own rescue block, if it still fails, then catch the exception and fail gracefully.

It seems to work for me, feel free to post comments if you are still having problems with profile pics… It would be great if you would also email the pics you tried to upload to feedback@onmylist.com

Thanks! Now go list your pants off!

Older posts: 1 2