journal
all ![]() | Rob is 20,117 days old today. |
Apr 2006 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
June 2006 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 2005 jan feb mar apr may jun jul aug sep oct nov dec
2007 jan feb mar apr may jun jul aug sep oct nov dec |< << more >> >| |
Entries this day: Image_viewer_in_python coppermine whittle_wisty zzz_images Image viewer in python 8:51am JST Thursday 25 May 2006 (day 13210) Hmm. Python. I've just started looking into this as a viable option for writing my image thing. I was up until 4am reading about Python on pages I had downloaded at the university. I'm nearly convinced it would be a good tool for the project. But I gots to get more images off this HD before I dive into a new project. But here is my first bit of python code: class Image: def __init__(self,name,w=0,h=0,tn=None,): self.name=name self.dim=[`w`,`h`] self.tn=tn def __str__(self): str = "Image:" + self.name + " - " + ':'.join(self.dim) if self.tn: str = str + " thumb: " + self.tn else: str = str + " thumb: none" return str def thumb_src(self): str = '<img src="' + self.tn + '">' return str def html_src(self): str = '<img src="' + self.name + '">' if self.tn: str = '<a href="' + self.name + '">' + self.thumb_src() + '</a>' return str cat = Image('cat.jpg',100,50) dog = Image('dog.jpg',100,50,'thumbs/dog.jpg') print cat.html_src() print dog.html_src() Thing is, I'm not sure about the CGI interface. The examples I saw don't have the slick perl CGI module abilities. print CGI->header type stuff. permalinkcoppermine 8:58pm JST Thursday 25 May 2006 (day 13210) I've installed Coppermine photo gallery thing, which looks Really Really good. However, I haven't set it up; just six pictures are available so far. It doesn't have a way to use the thousands of thumbnails that I've already got on my site. I'd rather not create all new thumbnails. I haven't been able to figure out a way to organize the categories and albums the way my brain sees them, versus how they seem to be displayed by Coppermine. I wonder how to construct a search to find an answer to my query. permalinkwhittle wisty 12:45am JST Wednesday 24 May 2006 Things to doI am really happy to have finished moving all the pics from /image/journal directories. It took 3 days to do it and (hopefully) clean up any links, but I've been wanting to do that for 3 years. o = started; * = finished; X = バッツ
create more albums in images/need_to_upload decide what to do with /journal/images/kyoto_nara_kamakura Incorporate them into my journal entries from those occasions. Update iPhoto to iPhoto 6 (if it's a free upgrade, which I think it is) figure out what I have transcribed from PB 52 journal o list below what I need to transcribe from PB 52 journal transcribe Japanese journal from PB 52:
write card to あかね mail November card to Delphine mail card to あかね mail card to Genkiman Dan think about how logfiles can be sent to me Write about my trip from Kobe to the meditation center * Research photo album software * http://holocore.com/?PictureSync
plus, this extracts images from mail messages with perl. Awesome. http://www.macdevcenter.com/pub/a/mac/2004/05/07/iphoto_perl.html?page=2 Test the output of saving for web and updating (or hopefully scrapping!) iPhoto_2_legible.pl as necessary. write birthday reminder code read email research auto-geotagging camera start looking into how to do googlemaps again. draw that red line! look for official US govt info regarding Airplane Day archive it in 10 years, look up public school textbooks about Airplane Day archive proof against govt version physics911, etc add birthday field to Rob Updates db add birthdays:
write comic snagger with on/off switch allow Rob Updates to change directory think about writing site_visualizer; look for a free version look in to marketing Francois branded cups and shirts write to Jimmy regarding Francois branding offer to take teddybear Tomoko's teddybear up Mt Fuji login to quicken/turbotax to do taxes. Ask Zach from World of Where if I can get a registration code (I helped him find some bugs in his previous version of the software (and paid for a registration anyway after he gave me one free); perhaps if I can find bugs in the new version...) Write a Rob Update Decide where to go next if I continue TJ Biking: (basic ideas:
Decide what to do next... comment on http://www.yruuspider.com/ see why ひかり doesn't show up correctly on http://robnugen.com/cgi-local/journal.pl?type=all&date=2003/08/09 X Mess around with Laszlo (doesn't seem to be supported on my server, so fuckit) zzz images 1:05am JST Friday 26 May 2006 (day 13211) So super tired. Been reading Coppermine documentation, labeling photos, wondering if I want to use Coppermine; wondering how to speed up the batch upload process; wondering how to set up categories and albums. Not logistically how, but conceptually how. I fell asleep during the middle of that sentence. It's 1:09am now. 1:21am (and then everything changed after I read "just one more window") Curator looks nearly perfect. The description is just about exactly what I woulda written. Only difference: it creates thumbnails on the fly. I will tweak it to look for thumbnails and create on the fly if necessary. And it's written in Python, so it should be a fun intro to the language. permalinkprev day next day |