Filed under: Uncategorized
Filed under: Uncategorized
Filed under: Uncategorized
Who know it was so easy to update your twitter status ???? All you need is curl. Use this command:
curl -u username:password -d status=”your message here” http://twitter.com/statuses/update.json
I made a script to make my status the last command I typed in my shell :
#!/bin/bash
curl -u firedrill:mypassword -d status="tony@P_P-o $ `tail -1 ~/.bash_history`" http://twitter.com/statuses/update.json
Then I made it a daily cronjob to take care of this web2.0 microblogging boloney automatically….
twitter.cron
10 23 * * * /home/tony/twitter_update.sh
Filed under: Uncategorized
Here’s a perl script I made when I was bored: twitter3000
Just a junky little chatbox. Note that you can type html.
#!/usr/bin/perl
use CGI qw/:standard/;
print header,
start_html(-title=>'twitter 3000',-style=>'hithar.css'),
h1('hi thar'),
h2('beta'),
start_form,
"What's your name? ",textfield('name'),p,
"what do you say? ",textfield('blahblah'),p,
"color: ",p,
popup_menu(-name=>'color',
-values=>['red','green','blue','purple','yellow']),p,
submit(doitdoitdoit),
end_form,
hr;
if (param()) {
my $name = param('name');
my $blah = param('blahblah');
my $color = param('color');
open (chatfile, '>>chat.txt');
print chatfile b(escapeHTML($name . ': ')),
"" . $blah . "",
br;
close (chatfile);
}
$chatbox = "chat.txt";
open(DAT, $chatbox) || die("couldn't open file!");
@data=;
close (chatfile);
foreach $line (@data) {
print $line;
}
Filed under: Uncategorized
http://dzen.geekmode.org/dwiki/doku.php?id=dzen:procrastination-hack
Filed under: Uncategorized
I found this great tool that lets you write and post wordpress blog entries directly from Vim! Its written in vimscript. The commands are simple, just :BlogNew to create a new blogpost, and :BlogSend to upload it!
Note this won’t work with the evergreen blogs due to some sort of security setting.
Y
Filed under: Uncategorized
The gentoo wiki has been a mess ever since their old site crashed and they decided to rebuild it from scratch, so I thought maybe I could help out and write an article giving basic instructions for installing puredata with portage:
http://en.gentoo-wiki.com/wiki/PureData
Filed under: Uncategorized
That I have seen so far:
Filed under: Uncategorized
Rosa Menkman is a great new media artist exploring the areas of “glitch”. She sometimes collaborates with the chiptunes artist goto80. Check it out!!

Filed under: Uncategorized
I’ve been getting really caffeinated these days. I mean really caffeinated. More than ever. Its a new level of caffeination. I hope I don’t die.

