Almost a year a go, I set a goal to launch 12 startups in 12 months. The story was covered well by WIRED previously. They’re all MVPs, built to see if they can get market fit in a month. This month I launched Remote | OK. I’d like to share everything that went wrong, and the few things went right in building and launching it.
Backstory
I’ve been passionate about remote work for a while now. I think it’s up there with virtual reality in how radically it will transform societies.
It has big social, political and economic connotations. What does home really mean if your location changes every few months? What’s the point of governments and nation states if nobody feels tied to one country? What is a “local” community if everyone’s moving around? And how will people make money? How will it transform work?
I’ve explored lots of these questions, the problems that people doing this have and tried to come up with solutions in the form of products. I built Nomad List to get people to realize they could move to different places, save money and get a better quality of life. I’ve organized over 25 meetups in the last 6 months to get nomads together and started a chat community called #nomads for remote workers, which is now 2,500+ members strong and obviously I’ve been blogging a lot to spread the message.
Why? Because I think the net benefit of all of this can be positive for people worldwide.
Problem
But it’s not happening fast enough for me. If we want remote lives to become the standard, we need to make it easier for people to get jobs. I still talk to people every few days that would love to work remotely but they can’t find any jobs that allow them too. And that’s weird because I know those jobs are out there. There’s A LOT. The problem is discovery.
Major job boards are not embracing remote work yet. They often don’t have real categories for remote work, and it’s mostly just mentioned in the job posting. So it’s hard to find those jobs:
Then there’s a few dedicated niche remote job boards out there but the amount of jobs posted on each board is still pretty slim:
Solution
What if you can put all those remote jobs from all those standard job boards out there and put them together? That’d solve it. It’d make the point stronger that remote work is an option, and let people actually find jobs.
So, I wanted to build an aggregator. And that sounded a lot simpler then it turned out to be…
Ethics of aggregation
We all hate scraping sites. So how was I going to make this actually add some value? I thought about how Google News indexes articles and then creates traffic for the sites. Without asking them, it just did it, and it added value. I wanted to do that. I can’t just take people’s content and profit from it. So from the base up I wanted to have an extreme amount of accreditation to the sites where I sourced from and linking back to them wherever possible. It should be valuable for them mostly. Which meant, getting them traffic back.
Building
In terms of sourcing, most job boards out there have RSS feeds, or JSON accessible APIs. That meant I had to write a little robot for each feed. I made a folder called “sources” and simply started writing a PHP script for each source.
It’d analyze the feed, see which jobs were remote, then normalize the data and then push it into a simple SQLite database (yes, I’m not using JSON text files as a database anymore, thank you :P).
Normalization
Easy right? Well it’d be easy if everyone wrote their feeds in the same way. But they don’t. Some write it like this:
company: Acme, Inc.
position: Backend Developer
remote: yes
But then many write it like this:
company: Acme, Inc. is hiring a Back End Developer – Remote – San Francisco, US
But then often their feed changes up because a human takes over and writes it:
company: We’re hiring! VC-backed startup Acme, Inc. is looking for a Back End Developer (can work remote) – SF US
And sometimes there’s no company tag at all and you have to figure it out from the description:
position: Back End Developer
description: We, at Acme, Inc. are looking for a Back End Developer remotely.
And sometimes it’s not even a remote position but it matches the word “remote”:
description: We, at Acme, Inc. are looking for a Back End Developer, this position is NOT remote.
Haha, good luck with that!
So how do you solve that? Well you write loads of if statements and regular expressions to figure out what the job ad really means. That by far took the most time. Like weeks. And it still doesn’t get it right always:
Another challenge was detecting what kind of tags to add to a job. Well, the only thing I could do really is just make a humongous list that translated keywords to certain tags:
Design
I wanted to make the design really splashy when you first get there. I thought about what remote work really means for me. And it means we’re all moving around. What better way to show the power of that argument than to show our beautiful earth globe? I remembered there was a video shot from the ISS. And as NASA made it, it was in public domain so I could use it freely. I downloaded it, edited it, cropped the space station out of it and used it as the background of the first page:
On top if it I added a search bar that when not selected auto-types example jobs (yes, just like I did on Go Fucking Do It).
And to give the whole thing some credibility, I added the logos of the sources:
Then below it, I added the job list from the database, newest first and on the right a big image to credit the source of the job. If you hover over the job, the logo turns into a button and if you click it you go straight to the job at the source’s site, e.g. [http://authenticjobs.com](Authentic Jobs).
Each jobs also shows tags. These are for example the tech stack “JavaScript” or type of job “Full Time”. When you click it, it shows a page with ONLY those jobs.
When I first showed people, a lot expected that when they clicked on a tag it became a filter, and that they could keep clicking more tags to add to the filter. So I changed it into that:
For Google, I made the URLs of each filtered page look like this:
/remote-reactjs+css+python-jobs
My NGINX simply routes that to a PHP file with sees the query reactjs, css and python and shows the page.
Not all job sites show salaries, but some do. So when I have enough data on salaries I showed it on the page too:
And that made me think it’d be fun to have a chart of most popular and highest paid remote jobs:
Launch
Product Hunt
In true fashion, I was late for going to a party when I submitted it to Product Hunt (on Sunday 2015-02-22 at 01:44:44.644 PST). I’m in Korea now and this was 6pm Korean time. It was early morning SF time, which is great for submitting to Product Hunt as the page refreshes at midnight SF time.
Tweet
The most important visual part of the branding was the spinning globe. But how do you tweet that? So I made an animated GIF:
Capture mails
While my friend was shouting for me to get out of the house, it hit me. The site wasn’t capturing emails yet. It’s a basic thing to do. If you have emails, you can contact everyone later to tell about updates, new launches. And an email list of people that want a remote job is obviously very useful.
So in about 5 minutes I added this on top of every page:
Then I left the house and went for some drinks and my friend stopped shouting 🙂
Hacker News
I submitted it to Hacker News around the same time:
It was on the front page for a while, but then the HN algorithm pushed it away. The new HN algorithm (or moderator) is quite critical lately of product launches and they prefer to see technical articles. Maybe that’s on purpose since Product Hunt is a YC-company and they’d love to have product launches there? I don’t know…CONSPIRACY! 😀
I tried to reply to everyone’s feedback on HN too. In the end it did okay on HN but not amazing.
Someone submitted it to the /r/digitalnomad subreddit too. There was lots of feedback, which I replied to and feature requests I implemented immediately:
It was mostly positive and it reached #1 on the subreddit which was nice:
The result
It reached #1 on Product Hunt and became the #15 highest voted product of all time with 1,000 upvotes.
The next day I saw I forgot to add Google Analytics. So I had no idea of the first day traffic. Based on my previous projects, I know the drop off from Product Hunt is about 50% in the second day. So that means I estimate being #1 on Product Hunt in March 2015 gets you about 28,000 unique visits (second day 14,179 * 2):
That means the total after a month is estimated at near 100,000 unique users (67,313 + 28,000). That’s a lot of traffic.
To compare, that’s about three times as much as it was when I launched Nomad List to #1. That means Product Hunt has grown 3x as big in 6 months.
Product Hunt also asked me to do a collection called Products for Nomads:
Which helped it get more exposure:
Products for nomads and remote working: http://t.co/EiSA17sdgF curated by @levelsio pic.twitter.com/iq57kZB64u
— Product Hunt (@ProductHunt) February 17, 2015
Email signups
3,723 people signed up, that means 3.5% of users. I have no idea if that’s high or low conversion. I’m sure I could increase that by adding some deceptive “GET THIS FREE EBOOK” but I HATE that stuff with a passion. It’s tasteless. People should just want to sign up, I shouldn’t have to trick them.
That .GIF tweet
I couldn’t imagine how well tweeting that .GIF worked. That’s a crazy number of retweets and favorites. And since it linked to Product Hunt that resulted in upvotes. It’s really the time of visual communication. People like moving pictures:
Yay! My new startup http://t.co/LXa46PgDiR is now live @ http://t.co/tlzXLaVBuG, it indexes all remote jobs out there pic.twitter.com/RJnhlYteHO
— levels.io (@levelsio) February 22, 2015
Press coverage
I didn’t reach out to press, as it’s been increasingly hard to get reporters to write anything about me. As in, it’s more effective nowadays for me to just wait for them to contact me (they usually do). I think tech reporters are just overloaded with email and whatever you do, you probably won’t reach them. They’re out there looking for stories though.
The Next Web featured it, then Forbes followed and then Fast Company. And Lifehacker Russia. For some reason any project related to remote work or nomads I do, gets a massive response from Russia. Many of them are very smart programmers and tech workers, and many of them want to leave the country due to its political situation. Interesting…
The popular bookmarking service Pinboard recorded Remote | OK as one of the most bookmarked sites that week.
The cake is a lie
In my true #fail fashion, the daily/weekly jobs email people signed up to, it was a lie. It was just a MailChimp email submit.
Now a month later, I’m finally getting around to launching the email robot that will send everyone their emails. Making that just cost a bit of a time, here’s the layout. Getting this right also took long because writing HTML for emails is a mega pain. You have to specify every style INSIDE each HTML tag, AS IF IT’S 1997 AGAIN:
Replies from job sites
Honestly, if anything should go wrong, it would be the job sites I sourced emailing me and telling me to shut it down. But the opposite happened.
Angel List’s jobs head emailed me with some nice questions. Since he was asking me questions, not shutting me down, that was good news:
And WFH.io (Work From Home), a big remote job board actually asked to be indexed too:
@wfhio awesome guys! i need date, company, position, description and link to your page
— levels.io (@levelsio) March 2, 2015
And then many others followed. There was many job boards who made a custom feed for Remote | OK only.
So, something funny happened here. As they saw it was now a popular site, and it used their content, they were better of keeping it alive than shutting it down. Just like what happened with Google News.
Extra features
Many people asked for a Twitter feed of all jobs, so I made it, and I made it cute with emoji:
🚧 Want to work as a remote 🐳 Ruby on Rails Developer at @pkwde? #js #elasticsearch #sql 👉 https://t.co/0k5Ljx2uVy
— Remote | OK Jobs (@remoteok_jobs) April 2, 2015
It’s fully automated and actually writes pretty unique tweets for each job it finds. It also tries to match the company’s Twitter handle in the tweet.
Business model
As it’s an aggregator, it’d be unethical to let people post jobs and charge for it. As I’d be taking the content from other sites, and then compete with them. I don’t want to compete with them obviously. So when you click Add New Job you see this:
So how can I make money from this? One way is building up an audience, which means the daily traffic to the site and the growing mailing list, and then let people sponsor both. Think how a company might want to target only iOS devs. I have 100 of those on my list now.
I want to do that too ethically though. So no separate mailings, but maybe add a sponsorship box to the mailing and website, e.g.:
This message is sponsored by Meteor, the open-source platform for building top-quality web apps in a fraction of the time.
How much though? Well if I can grow the mailing list to 10,000 people. Then charge a premium CPM of $10-$25 to sponsor it. That’s $3,000 to $7,500 per month. That’s a crazy high CPM, you say? No, I don’t think so. This is a hyper targeted audience and the jobs market is different. An average job ads goes for $250 to $500. But I’m not there yet, so we’ll see.
Conclusion
Remote working is a rapidly growing market and this adds some value, so I think it has a good future ahead. I’m happy that whenever someone tells me again there’s no jobs you can do remotely, I can point them here and show them ALL THE remote jobs and tell them:
NOPE
P.S. I'm on Twitter too if you'd like to follow more of my stories. And I wrote a book called MAKE about building startups without funding. See a list of my stories or contact me. To get an alert when I write a new blog post, you can subscribe below: