May 18, 2015

Recommended Podcasts

After having being recently asked some of my favorite podcasts, what better place to record than here. In no particular order.


  1. This American Life
  2. Radio Diaries
  3. Love + Radio
  4. 99% Invisible
  5. The Memory Palace
  6. HBR IdeaCast (nerdy, I know)
  7. StoryCorps
  8. Death, Sex & Money
  9. The Moth Podcast
  10. StartUp Podcast
  11. Serial 
  12. Reply All
  13. Planet Money
  14. Invisibilia
  15. Freakonomics Radio
  16. Criminal
  17. Radiolab from WNYC
  18. Criminal
  19. Every Little Thing
  20. Hidden Brain
  21. My Favorite Murder
  22. Revisionist History
  23. Science Friday
  24. Science Vs
  25. The Daily Show 
  26. The Kevin Rose Show
  27. The Pitch
  28. The Way I Heard It with Mike Rowe
  29. Tribe of Mentors
  30. Uncivil
  31. Without Fail

Sep 22, 2014

Ubuntu Gradle Update

Came across this issue when updating gradle on my Ubuntu VM. I'd run `apt-get upgrade gradle` which indicated it would upgrade to 2.1. However, a quick `gradle -v` indicated it was still on the 1.x version.

The fix for me was to remove the old file: /usr/bin/gradle and then link up the latest one:

sudo rm /usr/bin/gradle
sudo ln -s /usr/lib/gradle/2.1/bin/gradle  /usr/bin/gradle 


As always, hope this saves someone some time.

Sep 17, 2014

SSL Certifcate Fun...

Found it rather annoying to try to convert certificate files for the HealthVault platform. They expected .cer format which seemed to be of some funky variety. After digging a bit further, this is simply a self signed certificate which normally takes on a .crt file extension. Knowing this, you can simply google the best way to self sign a certificate for Microsoft, or you can use the commands below:


openssl req -new -key  server.key -out  server.csr
openssl x509 -req -days 365 -in server.csr -signkey server.key -out server.crt
cp server.crt server.cer

Hope this saves someone some time!

Apr 8, 2014

Local Testing from the Web

Useful tool that does port forwarding. It's a bit slow, but it get the job done if you need to test a local site on a device that isn't on the same network.

https://ngrok.com

Sep 12, 2013

D3 Charting

D3, a very powerful, low level charting package, can be difficult to start with. To create just a simple line graph can take a few hours to get off the ground. I found this site which has all a few templates to gets started: http://nvd3.org/ghpages/examples.html.

And, if you're interested in the more advanced D3 visualizations, there's always the Github gallery with some impressive examples:

https://github.com/mbostock/d3/wiki/Gallery.

Jul 16, 2013

Developer Application Management

Microsoft, Facebook and Google all have different URLs to manage applications.

Facebook is the easiest to remember: https://developers.facebook.com/ (Makes sense). Plus, if you're like me, I usually miss the "s" on developers, yet Facebook is smart enough to redirect me.

Microsoft and Google are both difficult to find. It's a good few minutes each time. 


Google also supports the "developers" subdomain, but it presents with too much information. You'd need to know you're looking for the API console.

This will certainly save me a few minutes next time I need to open up a dev server that has a different URL yet still needs the same API access.

jQuery Isotopes

Coworker pointed this out today, jQuery Isotopes. Looks interesting - a bit of eye candy. I'm not sure if I would put this on a website (using their homepage example), but it has a bit of promise for some other purposes. Something I'll keep in mind for future layouts.