Tag Archive ‘weblog scripts’

 

Pat Rock on Dec 16th, 2005Lapis - A Subversive Nintendo DS Game

This is great. A female game designer from Ubisoft has written a game for the Nintendo DS that uses the DS’s unique tactile properties to create a game to teach females about female stimulation.
It’s unique. Probably not work safe:
Lapis

Pat Rock on Apr 5th, 2005BlogRoll Updated or Perl and Sharpreader

I’ve updated my blogroll to reflect all the weblogs I’m currently reading in my newsreader. My newsreader is Sharpreader
The very nice windows .Net based reader produced by Luke Hutteman.
I know I know what you’re thinking. You’re thinking “wow! Pat, that is a lot of typing and cutting and pasting! Why go [...]

Pat Rock on Mar 29th, 2005Only in Dreams

Only in dreams
We see what it means
Reach out our hands
Hold on to hers
But when we wake
It’s all been erased
And so it seems
Only in dreams
–Weezer Only In Dreams
Abe Fathman told me one time that he frequently has dreams wherein he solves programming problems. That doesn’t happen often to me (really only once that I [...]

Pat Rock on Mar 18th, 2005Senate Watcher

I was getting really furious about the GOP is just shoving its collective way down our throats by consistently voting as a block in the Senate, and I was scanning around on the senate website trying to find a place where the votes are all tallied by party so that I could fuel my righteous [...]

Pat Rock on Feb 18th, 2005Using Perl to Make an m3u for iTunes

I have a directory with all the single mp3s and folders for each band and its albums. When I tried to import that into iTunes, iTunes only imported a fraction of that folder. Apparently iTunes can’t handle 1200 files and 100+ folders. Whatever.
So I realized that I needed to create a playlist [...]

Pat Rock on Jan 21st, 2005Connecting Windows Activestate Perl to Oracle

use ppm to uninstall the existing DBI module and then use PPM to install the following two modules:
ppm install ftp://ftp.esoftmatic.com/outgoing/DBI/5.8.4/DBI.ppd
pppm install ftp://ftp.esoftmatic.com/outgoing/DBI/5.8.4/DBD-Oracle.ppd
the version number in the URL should match the version number of Perl that you are running. Cruise around the FTP site to find what you are looking for.
MMV of course since you [...]

Pat Rock on Dec 21st, 2004Perl is Great and All

It really is, but one thing I don’t get is why do people think that Perl is somehow superior for web programming. My heavens what a mess of print statements!
Give me a language you can embed into the html anyday. Like PHP or ASP.
Also, if you are paying for hosting chances are that [...]

Pat Rock on Dec 9th, 2004Parsing a Bibliography part 3: Final Thoughts

Although I have been calling this series “Parsing a Bibliography” I haven’t really parsed much of anything. I used Perl to split the lines on spaces and took the first string that occurred making the general assumption that that was a last name. That’s really all I needed to do for this particular [...]

Pat Rock on Dec 9th, 2004Parsing a Bibliography Part 2

Our 2nd step is to search all of those bibliographies for common author last names.
Conceptually this is actually very very simple. It simply means performing an intersection on each set (array) and then combining the results. So given 4 lists I’ll have six possible intersections:
List1 + List2
List1 + List3
List1 + List4
List2 + List3
List2 [...]

Pat Rock on Dec 9th, 2004Parsing a Bibliography Part 1

I recently found myself having to try and do some work with several bibliographies and learned a little bit more about why Perl is THE pre-eminent language for carving up text.
My goal was to take several bibliography’s of biblical reference material. Some liberal, some conservative. I was aiming to find authors that appeared [...]