Tag code

sortvis.org – sorting algorithm visualisations

TextMate Bundles – /trunk/Bundles

Code Bubbles Project: Rethinking the User Interface Paradigm of Integrated Development Environments

The essential goal of this project is to make it easier for developers to see many fragments of code (or other information) at once without having to navigate back and forth. Each of these fragments is shown in a bubble.

Evolution of a Python programmer.py

Daily delivery of an electronic newspaper

I subscribe to Investor’s Business Daily for insight and valuable education as I gradually learn how to effectively invest in the market. It comes out Monday-Friday and obviously is very time relevant. I initially signed up for the print version so that I could read it on the bus and have something to highlight. However, [...]

Extending link area using DOM methods

function addLoadEvent(func) { var oldonload = window.onload; if (typeof window.onload != ‘function’) { window.onload = func; } else { window.onload = function() { oldonload(); func(); } } } function linkTabs() { if(!document.getElementById(“top_tabs”)) return false; var topTabs = document.getElementById(“top_tabs”); var topTabsLi = topTabs.getElementsByTagName(“li”); for (var i = 0; i < topTabsLi.length; i++) { topTabsLi[i].onmouseover = function() [...]