diff options
Diffstat (limited to 'content/posts/2002-10-27-scripts-and-more.html')
-rw-r--r-- | content/posts/2002-10-27-scripts-and-more.html | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/content/posts/2002-10-27-scripts-and-more.html b/content/posts/2002-10-27-scripts-and-more.html new file mode 100644 index 0000000..5c01a17 --- /dev/null +++ b/content/posts/2002-10-27-scripts-and-more.html @@ -0,0 +1,53 @@ +--- +date: "2002-10-27T01:19:10Z" +title: Scripts and More +--- + +<p> +I wrote a couple quick utilities this weekend. The first one is <a href='/download/cex-0.1.0.tar.gz'>here</a>; it allows you to write C as if it was a scripting language. Something like this, for example: +</p> + +<pre> +#!/usr/bin/env cex + +#include <stdlib.h> +#include <stdio.h> + +int main(int argc, char *argv[]) { + printf("foo\n"); + return EXIT_SUCCESS; +} +</pre> + +<p> +It's a total hack, but it's still kind of entertaining. Anyway, the second utility is just a <a href='http://www.procmail.org/'>Procmail</a> log colorizer. That's available <a href='/download/proccolor.pl'>here</a>. +</p> + +<p> +Random stuff. <a +href='http://www.graffiks.com/dylan_articles/dylan03.html'>Here's</a> an +article about the worst roommate in the world. +<a href='http://ps.superb.net/cardtric/tricks/intermed.htm'>Here</a> is +a huge list of card tricks (I just bought a deck of cards a few days +ago, and <a href='http://www.hhmecca.net/'>Alonzo</a> was showing me +some magic tricks he knew). <a +href='http://www.minion.de/nvidia/'>Here</a> are patches for the <a +href='http://www.nvidia.com/'>NVidia</a> kernel driver so it will work +under the 2.5 kernel (I haven't tried them yet). Looks like <a +href='http://www.snowman.net/'>Stephen</a> had a <a +href='/gallery/misc/20021026-snowy_priest.jpg'>change of faith</a>. I got an +early birthday present from <a +href='http://home.att.net/~rduncan618/'>my dad and stepmom</a>: a Lian +Li PC61 case! I haven't set it up yet, but <a +href='http://www.pablotron.org/gallery/misc/20021027-alonzo_pc61.jpg'>here's</a> +a picture of Alonzo checking it out, and <a +href='http://www.pablotron.org/gallery/misc/20021027-lian_li_pc61_case.jpg'>here</a> +is a picture of it on it's own. Finally, here's my random picture of +the day (posted in #gah by <a +href='http://www.xcomputerman.com/'>JeopardE</a>): +</p> + +<div align='center'> +<img src='/gallery/misc/corrupt.jpg' width='396' height='390' border='0' alt='bush scolds big business' /> +</div> + |