Tag Archives: links
Writing Hadoop jobs as shell commands
Python library for auto-tagging text
Here’s an interesting text-classifying library that extracts/computes “tags” for a given piece of text:
Cleaning an Idle Air Control Value (IACV) on a Subaru
My ’02 WRX started-up with a wandering (and lean) idle this morning. Thankfully, all it took was a $6 gasket and 20-minutes of pulling, cleaning, and re-installing the IACV. So far, it seems to have worked. See the following for detailed instructions:
Mr. Job: A python framework for writing Hadoop jobs
Using progressive enhancement for mobile/web layout
You can’t (afford to) innovate like Apple
Using the Serial Port from JavaScript

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>