Categories
Linky
Archives
Meta
Category Archives: Linux
Kaoss Guitar – Day 1
For a while, a friend and I have been planning to build a specialized MIDI controller into a guitar to control a Korg Kaoss Pad KP2. The idea came from the guitar used by Matt Bellamy of Muse (check out … Continue reading
Posted in Electronics, Linux, Programming
Leave a comment
Wacom Jitter Fix (for Linux)
My Wacom Bamboo Fun tablet has been exceptionally jittery on my Lenovo ThinkPad. I assume this is probably caused by EM noise from the computer (though I’m not sure). Today I decided I should try to fix that. Here’s an … Continue reading
Posted in Linux
2 Comments
Python/Unix Calculator
david@second:~$ cat /home/david/.local/bin/= #!/usr/bin/env python __import__("sys").argv[1:] and __import__("subprocess").Popen(("bc","-lq"),? stdin=__import__("subprocess").PIPE).communicate(" ".join(__import__("sys")? .argv[1:]+["\n"])) or __import__("os").waitpid(__import__("subprocess")? .Popen(("bc","-lq")).pid,0) david@second:~$ = ’5*5 + 5′ 30 david@second:~$ = 3+1 4 last*2 8 david@second:~$
Posted in Linux
Leave a comment
Arduino 0017 on 64-bit Ubuntu 9.04 and 9.10
Edit: This post isn’t really relevant anymore—Arduino 0018 has a 64 bit binary. Original post follows.
Posted in Electronics, Linux
1 Comment