Links Archives

  1. Settling into Denver →

    Ever wonder what it’s like to accept a job at Crowd Favorite and move to Denver? Craig does a great job outlining his past 6 months. My favorite bit is probably this:

    There’s still much that I don’t know, and I’ll always be asking questions, but my coworkers are incredibly intelligent, helpful, patient, and they challenge me – a great combination to help further my career.

  2. Why There Was No New Hardware At Google I/O →

    The statement made by Google yesterday, instead, is that the war for mobile will not be won with devices or operating systems. It will be won instead with services.

    I like this approach for Google. Good things generally happen when companies play to their strengths.

  3. GistBox – Organize Code Snippets →

    When people talk about using Capsule for code snippets I think that’s fine, but that’s not what it’s designed for. GistBox is beautiful (appears to be free – no idea how they plan to support it) and finally provides the ability to tag Gists. This is great for code snippets, lousy as a developer journal. That’s the difference between Capsule and Gistbox – both look to be great tools for different jobs (though you certainly can put code snippets in Capsule if you’re also using it as a journal).

  4. Why We Should Teach Programming →

    Hadn’t thought of programming this way before but I completely agree. One big example for me is with legal contracts. Thinking of them as “this part does this, this part does that” makes them much easier to understand and negotiate.

  5. Where polyglotism and “right tool for the job” goes awry →

    One of the things I enjoy most is incorporating a good idea from one language/project/etc. into another (obviously, you need exposure to other languages/projects/ideas to do this). You can see examples of this in the code I’ve written that interacts with WordPress and how it’s adopted more of an MVC style over time.

  6. weaning yourself off jquery →

    I’m a tremendous fan of jQuery, but there are situations where you just need to insert a little JavaScript into a webpage/app and adding an additional library is overkill. This is a great reference map of jQuery methods to native JS methods.