Untitled
Wednesday, October 31st, 2007Photo by Dr. Charless Fowlkes, PhD read more…
Photo by Dr. Charless Fowlkes, PhD read more…
Photo by Dr. Charless Fowlkes, PhD read more…
Create an executable file called "tinyurl" in your executable path which contains something like:
#!/bin/sh
wget -q -O - \
-U "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.8) Gecko/20071008 Firefox/2.0.0.8" \
--header="Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,video/x-mng,image/png,image/jpeg,image/gif;q=0.2,*/*;q=0.1" \
--header="Accept-Language: en" \
--header="Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7" \ read more...
I laughed so hard that I cried.
And I am ashamed that I've had so much exposure to the circle-jerk-osphere that this idea would even occur to me in the first place. read more…
And I am ashamed that I've had so much exposure to the circle jerk -osphere that this idea would even occur to me in the first place. read more…
The U.S. Terrorist Watch List appears to be growing in some kind of automated fashion. Given the current size, it seems to have run into Bonferroni's Principle.read more…
Example code showing how to use Drupal API's support for xml rpc to post an item to a blog which supports the metaweblog XML-RPC api:
xmlrpc('http://blogs.www.friendster.com/t/api', 'metaWeblog.newPost', '31337', 'example@example.com', 'sample password', array('title' => 'drupal xmlrpc and metaweblog.newpost tutorial', 'link' => 'http://wtanaka.com/node/7746', 'description' => 'sample code for using xmlrpc and metaweblog.newpost in drupal'));