Author Archives: Michael Koby

XKCD & Password Security

If you were on the internet last week, you probably saw an article, twitter, or Facebook post about the xkcd comic on password strength. The comic, which was (most likely) inspired by an article entitled, “The Usability of Passwords” basically says that using a multi-word password (3 or more words), is more secure than what I have referred to as “complex passwords” in past articles on this blog. The writer of the original article makes the point (which is what the xkcd comic points to) that passwords using three or more dictionary words, has more entropy and is thus harder to crack, therefore making them more secure. While there is a bit of truth to the article, it leads to some false understandings of how hackers actually go about hacking passwords, and make assumptions that aren’t entirely accurate. Continue reading

Posted in Security | Tagged , | 5 Comments

Cutting Worker Costs on Heroku

When we launched LiveShow, we utilized what Heroku calls a “Worker Dyno” to handle background tasks, specifically sending emails. Using a Heroku worker dyno allows you to offload work to a background task so that it doesn’t hold up the actual web server portion of your app. The downside to worker dynos is they cost money, $0.05/hour to be exact. And when you run one all day, everyday for a month, that can add up. Continue reading

Posted in Just for Bands, programming | Tagged , , , | Comments Off

The Noows

Today, I’m happy to announce the “official” launch of my second side project, The Noows. What is “The Noows” you ask? Quite simply it’s a site that lets you, the user, determine exactly what is news. The site works similar to Digg or Reddit in that you click the little button next to the article links and they’re “upvoted” and moved to the top of the homepage. Continue reading

Posted in Noows, Projects | Comments Off

Why Robert Scoble is Wrong (And a Little Right) About Apps

Robert Scoble is no stranger to opinions. He has several of them, and he posts them on Twitter daily. Sometimes his opinions are valid, other times they can come across as blatant fanboy. That’s okay though, that’s what the internet is for. But he has recently taken the stance that the success of the platform is based solely on the number of native applications it has available. Continue reading

Posted in Commentary, Internet, Technology | Tagged , , , , | Comments Off

Quick Thoughts on WWDC 2011 Announcements

Earlier today Apple kicked off it’s annual developer conference with it’s usual keynote address from Apple’s commander in chief Steve Jobs.  Lots of announcements this time around as they talked OSX, iOS, and their new cloud venture known as iCloud. … Continue reading

Posted in Technology | Comments Off

Completely Removing RVM

Today I had to change an single user installation of Ruby Version Manager (RVM), to a system wide installation. But after removing the .rvm folder and .rvmrc file from the user directory, running the RVM installation script would still install to the user directory instead of the system wide /usr/local/rvm directory. What I found is that RVM will embed itself deeply in your system and there are a few more things you have to do, below are the steps to completely remove RVM from your computer. Continue reading

Posted in programming | Tagged , , | 2 Comments