Jay McGavren's Journal

2007-11-28

Gamer/Game Maker

gamer_gamemaker.jpg

This picture was not (completely) staged.

Read more...
2007-11-24

turn_rate => 180, turn_angle => 80

turn_100.png

Read more...
2007-11-24

Hmmm, editing the search in GMail URLs seems to be working properly now…

https://mail.google.com/mail/?shva=1#search/zyps+label%3Astarred

Time to update a few shortcuts…

Read more...
2007-11-24

Hmmm…

		#Clear the background on the buffer.
		graphics_context.rgb_fg_color = Gdk::Color.new(0, 0, 0)
# 		buffer.draw_rectangle(
# 			graphics_context,
# 			true, #Filled.
# 			0, 0, #Lower-left corner.
# 			@width, @height #Upper-right corner.
# 		)

turn_chase_noerase.png

Or…

		@view = TrailsView.new(
			:width => options[:view_width],
			:height => options[:view_height])#,
			<strong>:trail_length => 100</strong>
		)

turn_flee_100.png

push_pull_100.png

Definitely gonna put no-erase and trail length options into the GUI. Hell, add a few effects, and it might be time to open an exhibition.

Read more...
2007-11-21

Finally got my Enso extension server working. I’ve begun replacing all my pipe-clipboard-to-batch-file utilities with EnsoExtension::Command objects, and the “feel” is pretty nice so far.

Unfortunately, I can’t publish them more widely yet. Anything that uses getUnicodeSelection followed by setUnicodeSelection makes line separators go all wonky in Word and Notepad. (But not Notetab Light, Wordpad, or Eclipse, oddly enough.) I’m sure the solution would be perfectly obvious to anyone who works with Unicode (or GUI selections) more regularly, but it’s giving me some trouble.

Oh, well, my own setup is pretty nice. I won’t worry about those using lesser editors for now.

I also finally set up a personal Ruby lib under my home directory, something I’d been meaning to do for a while. All the shared functionality between my different utilities is finally going to be consolidated into a few modules.

Read more...