All posts by nouyang

Plotting a maker businesses meetup in Boston

A friend of mine suggested I find people to mentor me as I startup.

I naturally decided I should go Organize A Thing. To get a rough gauge of how many maker businesses / hardware startups there are in cambridge/boston, I skimmed through kickstarter by city (both cambridge and boston).
http://www.kickstarter.com/discover/cities/cambridge-ma/funding?ref=more#p1
(sadly, you can’t sort by both “boston” and “technology”

The spreadsheet is here:
http://goo.gl/0092S

There will be edit privileges for the next few weeks or so for that link unless something terrible starts happening. Feel free to contribute notes.

The conclusion was that somewhere upwards of 30 companies, I think within the last 5 years, have been successfully funded: (see google docs for links to the kickstarter pages) (accounting for there are probably companies I missed on my skim, and for instance Twine, founded by MIT Media Lab grads, would probably be willing to be part of the network even if they are not in Boston right now).

Additionally, I was linked to this site that already does data around kickstarter when I asked whether there was a graph of OneTesla’s funding:
http://www.kicktraq.com/projects/onetesla/onetesla-a-diy-singing-tesla-coil

The Companies:

  1. Fuel: The world’s smallest cell phone charger
  2. drive with dash
  3. monkeyoh
  4. 3doodler
  5. Carbon Fiber Jewelry Rings
  6. The Orbit Turntable
  7. Loud Bicycle: Car horn for your bike
  8. Mini Pouch for your iPad Mini, Nexus, Kindle and more
  9. Pocket Monkey: The Wallet Utility Tool
  10. iStrike Shuttle- iOS controlled drone
  11. Convertable Axis Bracket CAB / The Ultimate Cheese-Plate UCP
  12. The Pen Project
  13. The Kick – a pocket sized lighting studio for photo & video
  14. Knut: Stay Connected
  15. Corter Leather Bottle Hook
  16. Cam Crate: DSLR Life Proof Camera Case
  17. diFeltro Fold, Italian handcrafted bag for iPad
  18. The Retina Project
  19. The Clip by LittleBonsai
  20. FXdoctor 8-Bit Fuzz Pedal’s US Tour
  21. CEE: The USB analog electronics multi-tool
  22. WALdok :: Wall Plug-In Speaker/Charger for iPhone/iPods
  23. Modkit – Electronics (Arduino) for Everyone
  24. Lockpicks by Open Locksport
  25. Inevitable: dystopian tabletop gaming
  26. BrickItUp!
  27. Twine
  28. Olopede
  29. onetesla

The meetup would be something like “share one lesson you learned” sort of lightning talk deal to create a supportive ecosystem of maker businesses.
As for whether an actual Meetup will happen… somewhere in my copious spare time…

[edit 3/31] some ones i missed: sprout pencil

Setting up the open source Mechanical MOOC, part one

Step 2 for dumb demo, set up a site where I can post content and syllabi.
For this, I am following the popular Learning Creative Learning course and using Mechanical MOOC, and open-source version of the massive open online course software used by Udacity and Coursera and EdX and others. Their github page is well-documented and made this process a breeze — maybe 30 minutes because I had to install basic things (this is starting from a clean xubuntu installation, well, running on liveusb actually).

anndd it’s live! http://cryptic-sea-7936.herokuapp.com/ for the next few hours/days, at least.

Sentences highlighted are the non-liveblog, what you actually want to do steps.

  • Spin up an xubuntu liveusb… I really don’t want to try to do webdev on a windows machine

https://github.com/p2pu/mechanicalmooc/wiki/Getting-it-Running#wiki-heroku
step 1: git clone https://github.com/p2pu/mechanicalmooc

  • Install git
  • It’s a fairly old xubuntu liveusb (12.10 from lsb_release -a) so some repository 404s initially

sudo apt-get install git

Failed to fetch http://archive.ubuntu.com/ubuntu/pool/main/g/git/git_1.7.10.4-1_i386.deb  404  Not Found [IP: 91.189.92.201 80]
E: Unable to fetch some archives, maybe run apt-get update or try with –fix-missing?

sudo apt-get update –fix-missing
sudo apt-get install git
okay works now.
git clone https://github.com/p2pu/mechanicalmooc

step 2: Spin up a new instance of the heroku cedar stack

  • https://devcenter.heroku.com/articles/cedar Needs CLI

step 3: git push to heroku instance

  • git push git@heroku.com:cryptic-sea-7936.git
    Permission denied (publickey).
    fatal: The remote end hung up unexpectedly
  • Right, I need to do the remote key thing https://help.github.com/articles/generating-ssh-keys
    cd ~/.sshssh-keygen -t rsa -C "your_email@example.com"

    cat id_rsa.pub

  • Copy paste into https://dashboard.heroku.com/account and hit “Add new key”
  • cd ~/mechanicalmooc/
    git push git@heroku.com:cryptic-sea-7936.git
    fatal: ‘master’ does not appear to be a git repository
  • lol not a valid command. okay time to refresh flaky memory
    http://gitref.org/remotes/
    enh that is too manpage like for me to understand, try this instead
    http://git-scm.com/book/ch2-5.html
  • Well this works, hope it doesn’t mess anything up.
    git remote add heroku git@heroku.com:cryptic-sea-7936.git
    git push heroku master
  • visit site http://cryptic-sea-7936.herokuapp.com/

Hrm, okay, now to fix things up