Latest Updates: links RSS
-
erik
-
erik
damiannz’s ofxPd at master – GitHub – "ofxPd is an addon for openFrameworks that embeds the Pure Data synthesis engine in an openFrameworks application." -
erik
memo’s msalibs at master – GitHub – "A collection of C++ libraries / utilities, with bridges to openFrameworks and Cinder"…Fluid, particles, etc. -
erik
Dank – Open source CNC milling controller software for Arduino. -
erik
seriality – Project Hosting on Google Code – A browser plugin enabling Serial port access from JavaScript. Connect your web apps to microcontrollers!
Amazingly simple, but this is a really exciting project with massive hackability potential! Here’s a quick example from the project page:
<html> <head> <script type="text/javascript"> function setup() { var serial = (document.getElementById("seriality")).Seriality(); serial.begin(serial.ports[0], 9600); serial.write("Hello World"); } </script> </head> <body onload="setup();"> <object type="application/Seriality" id="seriality" width="0" height="0"></object> </body> </html> -
erik
A New Type of Phishing Attack « Aza on Design – A sneaky phishing attack by manipulating favicon and page contents of a background tab. Includes a video and live demonstration. -
erik
Who You Gonna Call? « Improv Everywhere – Ghostbusters improv at The New York Public Library -
erik
hummingbird @ GitHub – Real-time web tracking project built on node.js, canvas, websockets… -
erik
High concurrency counters without sharding – Nick’s Blog – Using memcache + tasks to increment and store counters rather than sharding (on App Engine.) -
erik
Plugging the CSS History Leak at Mozilla Security Blog – Description of how Mozilla is addressing the CSS History leak problem, and various attack vectors. -
erik
http://jarc.sourceforge.net/ – An Arc implementation in Java — allows interacting with Java classes (much like Clojure.) -
erik
Code Conventions for the JavaScript Programming Language – A coding style guide for JavaScript by Douglas Crockford. I agree with almost all of it… -
erik
PEG.js – Parser Generator for JavaScript – "a parser generator for JavaScript" with browser and command-line support. -
erik
re2 – "an efficient, principled regular expression library" – Should make for interesting source code reading. -
erik
Internet Explorer: Global Variables, and Stack Overflows – File away under "Obscure details to remember about bizarre JavaScript behavior in IE" — this case, " any recursion that happens through the window object is limited to a stack depth of 12" -
erik
Cocoa Text System – Nice examples on how to modify OS X keybindings. I didn't realize you could define macros like this. -
erik
Teambox | Project collaboration – Looks like a nice way to collaborate on projects. I like the use of short status messages (ala Twitter) and simple task lists. -
erik
textorize: Pristine font rendering for the web – OS X command-line tool (in Ruby) for rendering bitmap text. -
erik
manuel’s cyberlisp at master – GitHub – "A Lisp-to-JavaScript compiler" -
erik
django-devserver – GitHub – A replacement for django's runserver that supports additional debugging/profiling for request handling. Could be handy in development.