Archives

Rotating Cube in JavaScript

My CSS-Parrot gave me an appetite for more in-browser graphics. This, led to my newest creation: A rotating "3D" cube, written with JavaScript. Check it out here: http://kanelynchsucks.com/sfsr/rot_cube.html (glory to Tzahi for hosting it) Edit: The page is currently unavailible. If you're interested, email me... View Article

2 Comments

Pickling Python Expressions

My last post introduced the concept of X, a class which "absorbs" operations and behaves like a function. As many people pointed out, this was merely a syntactic alternative to lambda. You may like it, you may not. Now, after a rewrite, X can now... View Article

3 Comments

Fun While Avoiding Lambda (Python)

Readers, meet X. X is a class I wrote in Python as an alternative to using lambda. It has two main features: It acts as an identity function ( so X(3) == 3, etc. ) When performing operations on it, it returns a new class... View Article

13 Comments