Groundswell Test
New online platforms are arriving all the time so it's helpful to have a little test that separates the good from the bad. * Does it enable...
Digital Product Manager & Social Entrepreneur. Mostly write about AWS, Swift, R, and Ruby.
New online platforms are arriving all the time so it's helpful to have a little test that separates the good from the bad. * Does it enable...
This project is incredible. It really captures my mind and helps me understand the new generation of digital products that contain an analog experience. > "We'...
Below is USC Annenberg professor @ABHollingshead [https://twitter.com/ABHollingshead] guide on how to conduct a website audit. Website Audit * Context: How appealing is the layout and design?...
This quote is fantastic. It keeps me thinking that in the old days, pre Internet, the obstacle every music listener faced did not have enough money to purchase...
I use Geohash all the time to store latitude and longitude inside a MySQL or SQLite database. If I'm using Postgres, Couch, or MongoDB, latitude, and...
A few of my favorite quotes on being a DJ. Focus > Focusing on doing one thing 100%. Too many ideas confuse people. – DJ Nu-Mark (2004 [http://www....
This is the simplest NodeJS app you can make that uses TCP. var net = require('net'); var server = net.createServer( onServerHandler ); server.listen(8080, 'http:...
I saw this excellent Kickstarter interview on Bleu, the entrepreneurial-style musician who earned $40k to start a record label [http://blog.kickstarter.com/post/1602573894/bleu-talks-to-kickstarter]. What I...
I've written about 8 or 9 streaming music players in the past six years, and considering how quickly client-side technology changes, I figure I'll...
I've watched this video so many times I'm almost at the point of memorizing it. There's just so much to learn from...
> If it ain't broke, but it cost a lot of money, fix it....
Deprecated I'm not sure if Gen Y'ers in the UK are responsible for shaping my opinion of Blackberry [http://bit.ly/gen-y-uk-bb] or if...
> The surest way to corrupt a youth is to instruct him to hold in higher esteem those who think alike than those who think differently."--Friedrich...
I'm extremely late to this whole Last.fm thing, but then again, I'm not sure if I've missed much. From what I...
First, I have to say; I love @Spotify. I fell in love with the software while I was visiting a friend in London. He just had all this...
DEPRECATED This article is here for archival purposes. The Yahoo YQL [https://developer.yahoo.com/yql/] website is incredible for data scraping and crawling. The examples below were...
Here are a few handy searches I've collected over the years. Search for Audio MP3s -inurl:(htm|html|php) intitle:"index of" +"last...
This Event Listener + Handler will detect the new height of the browser window. <script type="text/javascript" charset="utf-8" src="https://ajax....
There have been a few times where I've been forced to reduce myself to browser sniffing. In this example, I'm making an ad hoc...
Ok so here's the scenario, Suppose you have some sort of form with a couple of checkboxes and you want the user to select at least...
Download Feedparser [https://pypi.org/project/feedparser/] through Pip. import feedparser d = feedparser.parse("http://feeds.delicious.com/v2/rss/twelvetone") print d['feed'...
Tar is short for Tape Archive and is unique in that you can pick between different compressions such as gzip, bzip2 or xz. Archive Example 1 - gzip...
There are two ways to insert a Module above the objects singleton class but before the objects Class. # You can open the class definition body of a singleton...