Tag: development

  • TIP: How to Play a Sound Whenever You Commit to Git

    Writing code alone at home can be an isolating experience. There you are, day in day out, quietly making magic with your mind (sarcasm, obv.) only to silently commit the fruits of your labor into the void of your source control repository, appreciated by no one. If only a crowd of children could be retained […]

  • TIP: How to get “anonymous” class functions to show up in Safari’s JavaScript Profiler

    I’ve been developing a JavaScript module for some graphing work I’m doing. I’ve been using Safari’s built in profiler to figure out which functions are wasting the most CPU. It’s a great tool: For the longest time, I was running up against this one problem: some of my member functions were being listed simply as “(anonymous […]

  • CODE: A ‘Go’ Linked List Implementation

    So I’ve been experimenting with Google’s Go programming language. So far I’m liking it quite a bit. Here’s a rudimentary implementation of a Stack I made using a Linked List. As you can see, I’ve defined two interfaces — one for the Linked List functionality and one for the Stack functionality — but I haven’t […]