Feed on
Posts
Comments

Archive for the 'Code' Category

“Transparent messages are the brainchild of Jef Raskin. It’s simply a large and translucent message that’s displayed over the contents of your screen” from monolog_boxes_and_transparent_messages.
Transparent Messages are a nice way to alert your users that something has happened. The alert is not ‘modal’ in the same sense that a standard message box is. The user [...]

Read Full Post »

My new portfolio

I’m inviting everyone who stops by to take a look at my new portfolio.
http://jbloomdesign.com/portfolio
Let me know what you think.
Thanks.
I built the portfolio using YUI, Python and JSON
All of those technologies are great by the way. Highly recommended!

Read Full Post »

So I had a little time on my hands and thought it might be fun to get to the bottom of this Infinite Monkeys and Shakespeare dillema.
Here’s some python code that tries to randomly write the line “Alas, poor Yorick, I knew him, Horatio.” To make it easier I’ve ignored punctuation and case but still, [...]

Read Full Post »

After my recent wedding Jody and I were getting lots of invitations to view Kodak Easy Share photo galleries.

Unfortunately there is no ability to download quality copies of the images you are looking at.
Fortunately however I know me some intarweb. So without further ado I am happy to introduce RipAndZipKodakGallery.
Basically this a command anyone can [...]

Read Full Post »

Python reverse string method

Saw this easy way to reverse a string in python today, over at Answer My Searches
Here’s how to do it:

exampleString = ‘Hey there fancy pants’
reversedString = exampleString[::-1]
print reversedString
>> stnap ycnaf ereht yeH

This works because a String is a sequence type in python and you can apply all the ’slicing’ syntax you want to it. So [...]

Read Full Post »

Lyceum update scripts

Hey everyone, I’ve been testing Lyceum which is a multi user wordpress blogging system for an upcoming project at work. I needed to create a lot of blogs quickly and fortunately there is a handy import users feature which creates blogs for everyone.
Unfortunately it names the new blogs in an ugly way, http://multi.lyceumblog.com/username_blog_183
So I’m posting [...]

Read Full Post »

Love python

I’ve recently moved to Arizona as some of you may know and I’m in the middle of looking for a motorcycle. I’ve been in love with the BMW GS since I first saw one. Here’s an example I’m hotlinking to.

Anway I’ve been searching Craigslist for one of these bikes and they are pretty rare, I [...]

Read Full Post »

Alias VRML Fixer Upper

I’m releasing a new utility that I created for my design professor. He uses Alias to create VRML files to demo his designs to clients.
Unfortunately Alias is a bit backwards when it creates the files and instead of making .jpg files for the textures it creates .sgi or .rgb picture files, and it seems most [...]

Read Full Post »

A Python application that makes it easy to use iTunes as your alarm clock. It’s alot easier getting out of bed when you play some kick ass tunes.

Read Full Post »

Because Crystal Reports.Net has really poor documentation I’m going to post this here in case any other poor souls are running into this issue.
Basically a String type parameters have a length limitation of 255 Characters. I was passing in some text as a Parameter to be printed in the footer of a complicated report, [...]

Read Full Post »

« Prev - Next »