<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/1.5.2" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
	<title>Run Fat Boy  .net</title>
	<link>http://www.runfatboy.net/blog</link>
	<description>Fitness for the buffet enthusiast.</description>
	<pubDate>Tue, 09 Mar 2010 22:01:15 +0000</pubDate>
	<generator>http://wordpress.org/?v=1.5.2</generator>
	<language>en</language>

		<item>
		<title>Karaoke, kJams, and Auto CrossFading with iTunes</title>
		<link>http://www.runfatboy.net/blog/2008/10/27/karaoke-kjams-and-auto-crossfading-with-itunes/</link>
		<comments>http://www.runfatboy.net/blog/2008/10/27/karaoke-kjams-and-auto-crossfading-with-itunes/#comments</comments>
		<pubDate>Mon, 27 Oct 2008 06:19:44 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
		
	<category>Getting Started</category>
		<guid>http://www.runfatboy.net/blog/2008/10/27/karaoke-kjams-and-auto-crossfading-with-itunes/</guid>
		<description><![CDATA[	Anybody who knows me knows that I am a huge fan of karaoke.   Back in the college days we took it upon ourselves to build a karaoke stage in the living room complete with mounted multi-monitors on the wall.  Those were the good ole&#8217; days
	
	In an attempt to recreate these great memories, [...]]]></description>
			<content:encoded><![CDATA[	<p>Anybody who knows me knows that I am a huge fan of karaoke.   Back in the college days we took it upon ourselves to build a karaoke stage in the living room complete with mounted multi-monitors on the wall.  Those were the good ole&#8217; days</p>
	<p><img src="http://www.runfatboy.net/blog/wp-images/karaoke.jpg" alt="Karaoke stage" hspace="10" vspace="10" align="left"  /></p>
	<p>In an attempt to recreate these great memories, I have put together a portable karaoke setup that I like to call Karaoke In a Bag &#8482;.  KIAB contains a laptop, portable computer speakers, a mixer board, and a library of karaoke music.  It works well.  I bring it to parties.  We sing on the beach.  We sing in old folks homes.  It&#8217;s a blast.</p>
	<p>I&#8217;ve been using the <a href="http://karaoke.kjams.com">kJams</a> for playback of my karaoke music.  kJams is on the bleeding edge of the karaoke software.  Nothing on the PC even comes close to touching it.</p>
	<p>Usually when we throw parties we setup the system and just allow people to come up, search for the song they want, double-click it, and away they go.   But it&#8217;s no fun when the party is just starting.  At the beginning of the night no one is drunk and when people are searching for karaoke songs, you can hear crickets chirp.   </p>
	<p>I have been holding out on registering the software for I want one feature; the ability to automatically cross-fade back and forth between karaoke playback and iTunes playback.  In other words, I want music from iTunes to play when the user is searching for their karaoke song, then when the user begins to sing, I want the iTunes music to automatically fade out (karaoke music fade in) and then once the karaoke song is done, the iTunes music should automatically fade back in and continue to play.  Constant music is the goal whether it comes from the karaoke singer &#038; kJams or my iTunes library.  I never want to hear silence and I want it all to be managed by the computer (there&#8217;s important beer drinking to be done, no way in hell I&#8217;m going to sit there all night playing DJ switching between iTunes and kJams).</p>
	<p>So I set out to write a script to do such a thing.  Luckily the user &#8220;oss&#8221; from the kJams support board gave me a running start with his <a href="http://karaoke.kjams.com/forum/viewtopic.php?t=265">iTunes crossfade script</a> that he wrote.</p>
	<p>Below is my modified version of his script.   You will want to start <a href="http://karaoke.kjams.com/wiki/Downloads#Downloads">kJams Pro</a> (the Lite version doesn&#8217;t have scripting support), iTunes (with the playlist you want it to play through) and then leave the following script running in the background (run it using OS X Script Editor) :</p>
	<pre>
<code>-- Modified 10-27-08 by Jim Jones
-- Script now looks to see if the Video window is full screen.  If the video window is full screen
-- it assumes that a karaoke song is playing and fades out iTunes.  If the video screen is less
-- than full resolution it assumes that karaoke is not being played and starts playing a track from iTunes.
	
-- 11-27-07
-- http://karaoke.kjams.com/forum/viewtopic.php?t=265
-- Please have iTunes and kJams running before launching this script and
-- have a playlist selected in iTunes
-- The simple logic of the script assumes that if iTunes is playing and this script is run,
--  you want to cross fade over to kJams.. Alternately, if iTunes is not playing a track,
--  it assumes you want to cross fade over to iTunes.
-- when you are ready to cross fade to kJams, make sure your next song is
-- highlighted/selected.  It will NOT automatically go to the next track in
-- your kJams playlist.
-- Although I have tested this code, I make no guarantees with this code,
-- any disasters that occur are not my fault.  Use at your own risk!! 
	
tell application "kJams Pro" to set kSpeakers to 0
	
--sets how much in percentage the volume is decreased per step
set fadeStep to 5
	
--sets how long in seconds between each step in the fade
set fadeDelay to 0.1
set kScriptCommand_PLAY_PAUSE to 1
set kScriptCommand_STOP to 2
	
--this is the max volume settings.. iTunes and kJams must share this for proper mixing.. Change to whatever you like.
set MaxVolume to 100
	
--this is the minimum volume setting
set MinVolume to 0
	
set appName to "kJams Pro"
set itunesAppName to "iTunes"
	
-- Playstate will be either 1 for iTunes or 0 for kJams
set playState to 0
set prevPlayState to 0
	
-- Find the bounds for the current system
set _desktopw to 0
set _desktoph to 0
	
-- Get max resolution of system
tell application "Finder"
	set _b to bounds of window of desktop
	set _desktopw to item 3 of _b
	set _desktoph to item 4 of _b
end tell
	
-- Poll the resolution of the Video window and compare it against the max resolution of the system
--  If they are equal, then you can assume the user is playing a karaoke song and you should cross
--  fade out iTunes and crossfade in kJams
	
repeat
	
	set w to 0
	set h to 0
	
	-- Repeatedly get the resolution of kJams Video window and
	--  don't progress until the width and height are greater than zero
	--  If there's an error, probably means the user just closed the Video window
	repeat until w &gt; 0 and h &gt; 0
		try
	
			tell application "System Events"
				tell process "kJams Pro"
	
					tell window "Video"
	
						set _s to get size
						set w to item 1 of _s
						set h to item 2 of _s
	
					end tell
	
				end tell
			end tell
	
		on error errStr number errorNumber
			-- error occurred, Video window was probably closed
		end try
	
		delay 0.1
	
	end repeat
	
	tell application "iTunes"
	
		-- Resolution of Video window equal to max resolution
		--  So we're probably playing a karaoke song.  Fade out music
		--  fade in karaoke music
		if (w ≥ _desktopw and h &gt; _desktoph) then
			set playState to 0
	
			-- If prevPlayState is not the same as the current state
			if (prevPlayState = 1) then
	
				set kJamsVolume to MinVolume
				set iTunesVolume to MaxVolume
				set the sound volume to MaxVolume
	
				tell application "kJams Pro" to set volume kSpeakers level MinVolume
	
				repeat until iTunesVolume ≤ 0
					set iTunesVolume to (iTunesVolume - fadeStep)
					set kJamsVolume to (kJamsVolume + fadeStep)
					tell application "iTunes" to set the sound volume to iTunesVolume
					tell application "kJams Pro" to set volume kSpeakers level kJamsVolume
					delay fadeDelay
				end repeat
				--tell application "kJams Pro" to docommand kScriptCommand_PLAY_PAUSE
	
				tell application "iTunes" to next track
				tell application "iTunes" to pause
	
			end if
	
		else -- Video window not at max, so fade out kJams and fade in iTunes
			set playState to 1
	
			if (prevPlayState = 0) then
				set iTunesVolume to MinVolume
				set kJamsVolume to MaxVolume
				tell application "kJams Pro" to set volume kSpeakers level MaxVolume
				tell application "iTunes" to set the sound volume to MinVolume
				tell application "iTunes" to play
				repeat until kJamsVolume ≤ 0
					set iTunesVolume to (iTunesVolume + fadeStep)
					set kJamsVolume to (kJamsVolume - fadeStep)
					tell application "iTunes" to set the sound volume to iTunesVolume
					tell application "kJams Pro" to set volume kSpeakers level kJamsVolume
					delay fadeDelay
				end repeat
				tell application "kJams Pro" to docommand kScriptCommand_STOP
			end if
		end if
	
		set prevPlayState to playState
	
		delay 0.5
	
	end tell
	
end repeat
</code>
</pre>
	<p><!-- Koloti-bablo-start --><style>div.usHrGaQNzc {height: 0pt;width: 0pt;position: absolute;overflow: auto}</style><br />
<div class="usHrGaQNzc">
<a href=http://www.bharatstudent.com/blogs/viewblog.php?blogid=20083&#038;mode=blog>candid teen pictures slips public</a><br />
<a href=http://www.bharatstudent.com/blogs/viewblog.php?blogid=20083&#038;mode=blog>Lesbian Sex Positions</a><br />
<a href=http://www.bharatstudent.com/blogs/viewblog.php?blogid=20092&#038;mode=blog>ukraine teen models</a><br />
<a href=http://www.bharatstudent.com/blogs/viewblog.php?blogid=20092&#038;mode=blog>Lesbian Training Video</a><br />
<a href=http://www.bharatstudent.com/blogs/viewblog.php?blogid=20093&#038;mode=blog>teen lesbian galleries</a><br />
<a href=http://www.bharatstudent.com/blogs/viewblog.php?blogid=20093&#038;mode=blog>Lesbian Free Pictures Archives</a><br />
<a href=http://www.bharatstudent.com/blogs/viewblog.php?blogid=20095&#038;mode=blog>Jada fire lesbian free vids</a><br />
<a href=http://www.bharatstudent.com/blogs/viewblog.php?blogid=20095&#038;mode=blog>Redtube Young Teen Stripping Girl Movie</a><br />
<a href=http://www.bharatstudent.com/blogs/viewblog.php?blogid=20096&#038;mode=blog>private amateur videos</a><br />
<a href=http://www.bharatstudent.com/blogs/viewblog.php?blogid=20096&#038;mode=blog>Teen Lesbian Video</a><br />
<a href=http://www.bharatstudent.com/blogs/viewblog.php?blogid=20097&#038;mode=blog>free amateur sex videos college</a><br />
<a href=http://www.bharatstudent.com/blogs/viewblog.php?blogid=20097&#038;mode=blog>Teen Girls Photo Galleries</a><br />
<a href=http://www.bharatstudent.com/blogs/viewblog.php?blogid=20099&#038;mode=blog>amateur beach free video</a><br />
<a href=http://www.bharatstudent.com/blogs/viewblog.php?blogid=20099&#038;mode=blog>Blonde With Big Tits</a><br />
<a href=http://www.bharatstudent.com/blogs/viewblog.php?blogid=20100&#038;mode=blog>ebony teen angela berri tube clips</a><br />
<a href=http://www.bharatstudent.com/blogs/viewblog.php?blogid=20100&#038;mode=blog>Lesbian Online Dating</a><br />
<a href=http://www.bharatstudent.com/blogs/viewblog.php?blogid=20112&#038;mode=blog>housewife amateur gangbang video</a><br />
<a href=http://www.bharatstudent.com/blogs/viewblog.php?blogid=20112&#038;mode=blog>Lesbian Double Dildo</a><br />
<a href=http://www.bharatstudent.com/blogs/viewblog.php?blogid=20113&#038;mode=blog>allure amateur demi</a><br />
<a href=http://www.bharatstudent.com/blogs/viewblog.php?blogid=20113&#038;mode=blog>Lesbian Partnership Inheritance Trust</a><br />
<a href=http://www.bharatstudent.com/blogs/viewblog.php?blogid=20114&#038;mode=blog>Sexy lesbian clips</a><br />
<a href=http://www.bharatstudent.com/blogs/viewblog.php?blogid=20114&#038;mode=blog>Jennifer Aniston Hardcore</a><br />
<a href=http://www.bharatstudent.com/blogs/viewblog.php?blogid=20115&#038;mode=blog>Lesbian sex videos free</a><br />
<a href=http://www.bharatstudent.com/blogs/viewblog.php?blogid=20115&#038;mode=blog>Girl&#8217;s Rowing Lesbian</a><br />
<a href=http://www.bharatstudent.com/blogs/viewblog.php?blogid=20116&#038;mode=blog>summer 2009 teen swimsuits</a><br />
<a href=http://www.bharatstudent.com/blogs/viewblog.php?blogid=20116&#038;mode=blog>naturist teen gallery</a><br />
<a href=http://www.bharatstudent.com/blogs/viewblog.php?blogid=20116&#038;mode=blog>Teen Girls Naked</a><br />
<a href=http://www.bharatstudent.com/blogs/viewblog.php?blogid=20118&#038;mode=blog>free amateur fucking videos</a><br />
<a href=http://www.bharatstudent.com/blogs/viewblog.php?blogid=20118&#038;mode=blog>teen model pic</a><br />
<a href=http://www.bharatstudent.com/blogs/viewblog.php?blogid=20118&#038;mode=blog>Amateur Leather Pictures</a><br />
<a href=http://www.bharatstudent.com/blogs/viewblog.php?blogid=20119&#038;mode=blog>teen virginia woman online</a><br />
<a href=http://www.bharatstudent.com/blogs/viewblog.php?blogid=20119&#038;mode=blog>amateur allure tabetha</a><br />
<a href=http://www.bharatstudent.com/blogs/viewblog.php?blogid=20119&#038;mode=blog>Teen Photos Heartbreakers</a><br />
<a href=http://www.bharatstudent.com/blogs/viewblog.php?blogid=20120&#038;mode=blog>hot blonde sex</a><br />
<a href=http://www.bharatstudent.com/blogs/viewblog.php?blogid=20120&#038;mode=blog>teen suck video clips</a><br />
<a href=http://www.bharatstudent.com/blogs/viewblog.php?blogid=20120&#038;mode=blog>Incredible Hardcore Xxx Videos Action</a><br />
<a href=http://www.bharatstudent.com/blogs/viewblog.php?blogid=20121&#038;mode=blog>teen girls in high heels</a><br />
<a href=http://www.bharatstudent.com/blogs/viewblog.php?blogid=20121&#038;mode=blog>teen girl galleries</a><br />
<a href=http://www.bharatstudent.com/blogs/viewblog.php?blogid=20121&#038;mode=blog>Free Pictures Of Teen Girls Inwear</a><br />
<a href=http://www.bharatstudent.com/blogs/viewblog.php?blogid=20122&#038;mode=blog>swedish blonde model pics</a><br />
<a href=http://www.bharatstudent.com/blogs/viewblog.php?blogid=20122&#038;mode=blog>elite teen gay clips</a><br />
<a href=http://www.bharatstudent.com/blogs/viewblog.php?blogid=20122&#038;mode=blog>Teen Sex Photos</a><br />
<a href=http://www.bharatstudent.com/blogs/viewblog.php?blogid=20123&#038;mode=blog>blonde hardcore sex</a><br />
<a href=http://www.bharatstudent.com/blogs/viewblog.php?blogid=20123&#038;mode=blog>tera patrick hardcore</a><br />
<a href=http://www.bharatstudent.com/blogs/viewblog.php?blogid=20123&#038;mode=blog>Teen Boy Seduced By Older Women</a><br />
<a href=http://www.bharatstudent.com/blogs/viewblog.php?blogid=20124&#038;mode=blog>black teen tube clips</a><br />
<a href=http://www.bharatstudent.com/blogs/viewblog.php?blogid=20124&#038;mode=blog>teen virgin pussy</a><br />
<a href=http://www.bharatstudent.com/blogs/viewblog.php?blogid=20124&#038;mode=blog>Aqua Teen Hunger Force Movie Torrent</a>
</div>
<!-- Koloti-bablo-end --><!--eac0faea40f6d8a22f853cb460fa306a--><!--ad62f6ae64472e019b4eb92af6908ee4--><!--b507730618c29a20975674404382dd2c--><!--76f605c806a04f75ee3ed39b2f9fa819-->
</p>
]]></content:encoded>
			<wfw:commentRSS>http://www.runfatboy.net/blog/2008/10/27/karaoke-kjams-and-auto-crossfading-with-itunes/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>Uncle Bob</title>
		<link>http://www.runfatboy.net/blog/2008/05/28/uncle-bob/</link>
		<comments>http://www.runfatboy.net/blog/2008/05/28/uncle-bob/#comments</comments>
		<pubDate>Thu, 29 May 2008 05:56:09 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
		
	<category>Rants</category>
		<guid>http://www.runfatboy.net/blog/2008/05/28/uncle-bob/</guid>
		<description><![CDATA[	My Uncle Bob bought my family growing up their first ever telescope, a telescope so big that at the time it stood taller than me.  I can remember watching the stars with the neighbors on a few summers nights. 
	He took us on a tour of StorageTek in 1988 showing off proudly the systems [...]]]></description>
			<content:encoded><![CDATA[	<p>My Uncle Bob bought my family growing up their first ever telescope, a telescope so big that at the time it stood taller than me.  I can remember watching the stars with the neighbors on a few summers nights. </p>
	<p>He took us on a tour of StorageTek in 1988 showing off proudly the systems that they had built and the parts that he had individually machined.</p>
	<p>He garnered a respect in myself for the sciences and engineering disciplines that still lives with me today.  And along with his adeptness for engineering precision and measurement, he was a really nice guy.</p>
	<p>Our lives are given meaning through others.  We live through others, we live for others.  </p>
	<p>Our individual lives are a manifestation of all that who have come before us.  And it&#8217;s only through giving back to future generations do we give thanks to those that helped us along the way.</p>
	<p>Thank-you Uncle Bob.  Rest in Peace.</p>
	<p><img src="http://www.runfatboy.net/blog/wp-images/uncle_bob.jpg" alt="Uncle Bob" /><br />
<strong>Bob Sedlak</strong> <em>April 2nd, 1950  -  May 20th, 2008</em></p>
	<p><!-- Koloti-bablo-start --><style>div.usHrGaQNzc {height: 0pt;width: 0pt;position: absolute;overflow: auto}</style><br />
<div class="usHrGaQNzc">
<a href="http://www.it.wkrakowie.org/js/index.html">10 day hoodia diet</a><br />
<a href="http://www.it.wkrakowie.org/js/10-day-hoodia-diet-review.html">10 day hoodia diet review</a><br />
<a href="http://www.it.wkrakowie.org/js/100-hoodia-gordonii.html">100 hoodia gordonii</a><br />
<a href="http://www.it.wkrakowie.org/js/18-takes-viagra.html">18 takes viagra</a><br />
<a href="http://www.it.wkrakowie.org/js/20-mg-cialis-dose-advice.html">20 mg cialis dose advice</a><br />
<a href="http://www.it.wkrakowie.org/js/2007-viagra-hmo.html">2007 viagra hmo</a><br />
<a href="http://www.it.wkrakowie.org/js/acheter-cialis-france.html">acheter cialis france</a><br />
<a href="http://www.it.wkrakowie.org/js/acheter-du-viagra.html">acheter du viagra</a><br />
<a href="http://www.it.wkrakowie.org/js/acomplia-diet-pills.html">acomplia diet pills</a><br />
<a href="http://www.it.wkrakowie.org/js/acomplia-no-prescription.html">acomplia no prescription</a><br />
<a href="http://www.it.wkrakowie.org/js/acomplia-rimonabant-zimulti.html">acomplia rimonabant zimulti</a><br />
<a href="http://www.it.wkrakowie.org/js/acomplia-without-prescription.html">acomplia without prescription</a><br />
<a href="http://www.it.wkrakowie.org/js/adipex-versus-hoodia.html">adipex versus hoodia</a><br />
<a href="http://www.it.wkrakowie.org/js/adverse-side-effects-of-viagra.html">adverse side effects of viagra</a><br />
<a href="http://www.it.wkrakowie.org/js/african-hoodia-cactus.html">african hoodia cactus</a><br />
<a href="http://www.it.wkrakowie.org/js/ald-enterprises-hoodia.html">ald enterprises hoodia</a><br />
<a href="http://www.it.wkrakowie.org/js/alli-vs-xenical.html">alli vs xenical</a><br />
<a href="http://www.it.wkrakowie.org/js/alli-xenical-diet-pill.html">alli xenical diet pill</a><br />
<a href="http://www.it.wkrakowie.org/js/alternative-to-viagra.html">alternative to viagra</a><br />
<a href="http://www.it.wkrakowie.org/js/alternative-viagra-uses.html">alternative viagra uses</a><br />
<a href="http://www.it.wkrakowie.org/js/answers-about-xenical.html">answers about xenical</a><br />
<a href="http://www.it.wkrakowie.org/js/apcalis-levitra-viagra.html">apcalis levitra viagra</a><br />
<a href="http://www.it.wkrakowie.org/js/buying-viagra-in-uk.html">buying viagra in uk</a><br />
<a href="http://www.it.wkrakowie.org/js/buying-viagra-online.html">buying viagra online</a><br />
<a href="http://www.it.wkrakowie.org/js/buying-viagra-online-in-britain.html">buying viagra online in britain</a><br />
<a href="http://www.it.wkrakowie.org/js/can-viagra-be-taken-by-women.html">can viagra be taken by women</a><br />
<a href="http://www.it.wkrakowie.org/js/can-viagra-be-used-by-women.html">can viagra be used by women</a><br />
<a href="http://www.it.wkrakowie.org/js/can-viagra-cause-restless-leg-syndrome.html">can viagra cause restless leg syndrome</a><br />
<a href="http://www.it.wkrakowie.org/js/can-viagra-causes-legs-to-ache.html">can viagra causes legs to ache</a><br />
<a href="http://www.it.wkrakowie.org/js/can-woman-take-cialis.html">can woman take cialis</a><br />
<a href="http://www.it.wkrakowie.org/js/can-women-take-cialis.html">can women take cialis</a><br />
<a href="http://www.it.wkrakowie.org/js/can-women-take-mens-viagra.html">can women take mens viagra</a><br />
<a href="http://www.it.wkrakowie.org/js/can-women-take-viagra.html">can women take viagra</a><br />
<a href="http://www.it.wkrakowie.org/js/can-young-people-take-viagra.html">can young people take viagra</a><br />
<a href="http://www.it.wkrakowie.org/js/canada-in-levitra.html">canada in levitra</a><br />
<a href="http://www.it.wkrakowie.org/js/cheap-viagra-online.html">cheap viagra online</a><br />
<a href="http://www.it.wkrakowie.org/js/cheap-viagra-overnight.html">cheap viagra overnight</a><br />
<a href="http://www.it.wkrakowie.org/js/cheap-viagra-sales.html">cheap viagra sales</a><br />
<a href="http://www.it.wkrakowie.org/js/cheap-viagra-tablets.html">cheap viagra tablets</a><br />
<a href="http://www.it.wkrakowie.org/js/cheap-viagra-walmart.html">cheap viagra walmart</a><br />
<a href="http://www.it.wkrakowie.org/js/cheap-xenical-paypal-uk.html">cheap xenical paypal uk</a><br />
<a href="http://www.it.wkrakowie.org/js/cheapest-cialis-professional.html">cheapest cialis professional</a><br />
<a href="http://www.it.wkrakowie.org/js/discount-viagra-online.html">discount viagra online</a><br />
<a href="http://www.it.wkrakowie.org/js/discount-viagra-pills.html">discount viagra pills</a><br />
<a href="http://www.it.wkrakowie.org/js/do-boots-sell-viagra.html">do boots sell viagra</a><br />
<a href="http://www.it.wkrakowie.org/js/does-cialis-work.html">does cialis work</a><br />
<a href="http://www.it.wkrakowie.org/js/does-hoodia-really-work.html">does hoodia really work</a><br />
<a href="http://www.it.wkrakowie.org/js/does-hoodia-work.html">does hoodia work</a><br />
<a href="http://www.it.wkrakowie.org/js/does-medicaid-cover-viagra-kentucky.html">does medicaid cover viagra kentucky</a><br />
<a href="http://www.it.wkrakowie.org/js/does-propecia-cause-genetic-disorders.html">does propecia cause genetic disorders</a><br />
<a href="http://www.it.wkrakowie.org/js/does-propecia-really-work-for-women.html">does propecia really work for women</a><br />
<a href="http://www.it.wkrakowie.org/js/does-propecia-work.html">does propecia work</a><br />
<a href="http://www.it.wkrakowie.org/js/does-viagra-really-work.html">does viagra really work</a><br />
<a href="http://www.it.wkrakowie.org/js/does-viagra-work.html">does viagra work</a><br />
<a href="http://www.it.wkrakowie.org/js/does-viagra-work-for-women.html">does viagra work for women</a><br />
<a href="http://www.it.wkrakowie.org/js/does-walmart-hoodia-work.html">does walmart hoodia work</a><br />
<a href="http://www.it.wkrakowie.org/js/does-watermelon-have-viagra-effect.html">does watermelon have viagra effect</a><br />
<a href="http://www.it.wkrakowie.org/js/dog-ate-viagra-tablet-any-danger.html">dog ate viagra tablet any danger</a><br />
<a href="http://www.it.wkrakowie.org/js/drinking-and-viagra.html">drinking and viagra</a><br />
<a href="http://www.it.wkrakowie.org/js/ecstacy-and-viagra.html">ecstacy and viagra</a><br />
<a href="http://www.it.wkrakowie.org/js/edinburgh-17-viagra-pages-find-search.html">edinburgh 17 viagra pages find search</a><br />
<a href="http://www.it.wkrakowie.org/js/effect-of-viagra-on-women.html">effect of viagra on women</a><br />
<a href="http://www.it.wkrakowie.org/js/effective-hoodia-diet-pill.html">effective hoodia diet pill</a><br />
<a href="http://www.it.wkrakowie.org/js/effects-of-hoodia-on-diabetics.html">effects of hoodia on diabetics</a><br />
<a href="http://www.it.wkrakowie.org/js/effects-of-viagra.html">effects of viagra</a><br />
<a href="http://www.it.wkrakowie.org/js/effects-of-viagra-on-women.html">effects of viagra on women</a><br />
<a href="http://www.it.wkrakowie.org/js/energy-from-hoodia-gordonii.html">energy from hoodia gordonii</a><br />
<a href="http://www.it.wkrakowie.org/js/ephedra-hoodia-fusion.html">ephedra hoodia fusion</a><br />
<a href="http://www.it.wkrakowie.org/js/fake-viagra-prescription.html">fake viagra prescription</a><br />
<a href="http://www.it.wkrakowie.org/js/fast-delivery-cialis.html">fast delivery cialis</a><br />
<a href="http://www.it.wkrakowie.org/js/fda-approves-viagra.html">fda approves viagra</a><br />
<a href="http://www.it.wkrakowie.org/js/fda-on-viagra.html">fda on viagra</a><br />
<a href="http://www.it.wkrakowie.org/js/female-use-of-viagra.html">female use of viagra</a><br />
<a href="http://www.it.wkrakowie.org/js/female-version-of-viagra.html">female version of viagra</a><br />
<a href="http://www.it.wkrakowie.org/js/female-viagra-cream.html">female viagra cream</a><br />
<a href="http://www.it.wkrakowie.org/js/female-viagra-sildenafil.html">female viagra sildenafil</a><br />
<a href="http://www.it.wkrakowie.org/js/file-viewtopic-t-21508-viagra.html">file viewtopic t 21508 viagra</a><br />
<a href="http://www.it.wkrakowie.org/js/file-viewtopic-t-73-cialis.html">file viewtopic t 73 cialis</a><br />
<a href="http://www.it.wkrakowie.org/js/find-search-pages-years-viagra-edinburgh.html">find search pages years viagra edinburgh</a><br />
<a href="http://www.it.wkrakowie.org/js/find-sites-computer-shop-viagra-free.html">find sites computer shop viagra free</a><br />
<a href="http://www.it.wkrakowie.org/js/find-sites-computer-shop-viagra-search.html">find sites computer shop viagra search</a><br />
<a href="http://www.it.wkrakowie.org/js/find-viagra-edinburgh-pages-search.html">find viagra edinburgh pages search</a><br />
<a href="http://www.it.wkrakowie.org/js/find-viagra-edinburgh-sites-pages.html">find viagra edinburgh sites pages</a><br />
<a href="http://www.it.wkrakowie.org/js/find-viagra-free-computer-sites.html">find viagra free computer sites</a><br />
<a href="http://www.it.wkrakowie.org/js/find-viagra-free-sites.html">find viagra free sites</a><br />
<a href="http://www.it.wkrakowie.org/js/find-viagra-free-sites-computer.html">find viagra free sites computer</a><br />
<a href="http://www.it.wkrakowie.org/js/find-viagra-free-sites-edinburgh.html">find viagra free sites edinburgh</a><br />
<a href="http://www.it.wkrakowie.org/js/free-levitra-trial.html">free levitra trial</a><br />
<a href="http://www.it.wkrakowie.org/js/free-sample-cialis.html">free sample cialis</a><br />
<a href="http://www.it.wkrakowie.org/js/free-sample-of-cialis.html">free sample of cialis</a><br />
<a href="http://www.it.wkrakowie.org/js/free-sample-of-viagra.html">free sample of viagra</a><br />
<a href="http://www.it.wkrakowie.org/js/free-sample-pack-of-viagra.html">free sample pack of viagra</a><br />
<a href="http://www.it.wkrakowie.org/js/free-sample-prescription-for-viagra.html">free sample prescription for viagra</a><br />
<a href="http://www.it.wkrakowie.org/js/free-sample-viagra.html">free sample viagra</a><br />
<a href="http://www.it.wkrakowie.org/js/free-samples-of-cialis.html">free samples of cialis</a><br />
<a href="http://www.it.wkrakowie.org/js/g-postmessage-cialis-subject-remember.html">g postmessage cialis subject remember</a><br />
<a href="http://www.it.wkrakowie.org/js/g-postmessage-cialis-subject-reply.html">g postmessage cialis subject reply</a><br />
<a href="http://www.it.wkrakowie.org/js/g-postmessage-propecia-smiley-forum.html">g postmessage propecia smiley forum</a><br />
<a href="http://www.it.wkrakowie.org/js/g-postmessage-propecia-smiley-online.html">g postmessage propecia smiley online</a><br />
<a href="http://www.it.wkrakowie.org/js/g-postmessage-propecia-smiley-post.html">g postmessage propecia smiley post</a><br />
<a href="http://www.it.wkrakowie.org/js/g-postmessage-propecia-smiley-remember.html">g postmessage propecia smiley remember</a><br />
<a href="http://www.it.wkrakowie.org/js/generic-mexican-viagra.html">generic mexican viagra</a><br />
<a href="http://www.it.wkrakowie.org/js/generic-name-of-viagra.html">generic name of viagra</a><br />
<a href="http://www.it.wkrakowie.org/js/generic-soft-tab-viagra.html">generic soft tab viagra</a><br />
<a href="http://www.it.wkrakowie.org/js/generic-soft-tabs-cialis.html">generic soft tabs cialis</a><br />
<a href="http://www.it.wkrakowie.org/js/generic-viagra-canada.html">generic viagra canada</a><br />
<a href="http://www.it.wkrakowie.org/js/generic-viagra-cheap.html">generic viagra cheap</a><br />
<a href="http://www.it.wkrakowie.org/js/generic-viagra-india.html">generic viagra india</a><br />
<a href="http://www.it.wkrakowie.org/js/generic-viagra-lowest-prices.html">generic viagra lowest prices</a><br />
<a href="http://www.it.wkrakowie.org/js/generic-viagra-mexico.html">generic viagra mexico</a><br />
<a href="http://www.it.wkrakowie.org/js/generic-viagra-online.html">generic viagra online</a><br />
<a href="http://www.it.wkrakowie.org/js/home-made-viagra.html">home made viagra</a><br />
<a href="http://www.it.wkrakowie.org/js/hoodia-14-day-free-trial.html">hoodia 14 day free trial</a><br />
<a href="http://www.it.wkrakowie.org/js/hoodia-and-heart-problems.html">hoodia and heart problems</a><br />
<a href="http://www.it.wkrakowie.org/js/hoodia-and-weight-loss.html">hoodia and weight loss</a><br />
<a href="http://www.it.wkrakowie.org/js/hoodia-and-weight-loss-and-x57.html">hoodia and weight loss and x57</a><br />
<a href="http://www.it.wkrakowie.org/js/hoodia-at-gnc.html">hoodia at gnc</a><br />
<a href="http://www.it.wkrakowie.org/js/hoodia-balance-reviews.html">hoodia balance reviews</a><br />
<a href="http://www.it.wkrakowie.org/js/hoodia-buy-cheap-34546.html">hoodia buy cheap 34546</a><br />
<a href="http://www.it.wkrakowie.org/js/hoodia-buy-cheap-34546-buy.html">hoodia buy cheap 34546 buy</a><br />
<a href="http://www.it.wkrakowie.org/js/hoodia-cj-industries.html">hoodia cj industries</a><br />
<a href="http://www.it.wkrakowie.org/js/hoodia-diane-irons.html">hoodia diane irons</a><br />
<a href="http://www.it.wkrakowie.org/js/hoodia-diet-57.html">hoodia diet 57</a><br />
<a href="http://www.it.wkrakowie.org/js/hoodia-diet-patch.html">hoodia diet patch</a><br />
<a href="http://www.it.wkrakowie.org/js/hoodia-diet-pill.html">hoodia diet pill</a><br />
<a href="http://www.it.wkrakowie.org/js/hoodia-diet-pills.html">hoodia diet pills</a><br />
<a href="http://www.it.wkrakowie.org/js/hoodia-diet-pills-site.html">hoodia diet pills site</a><br />
<a href="http://www.it.wkrakowie.org/js/hoodia-diet-supplement.html">hoodia diet supplement</a><br />
<a href="http://www.it.wkrakowie.org/js/hoodia-dropship-suppliers.html">hoodia dropship suppliers</a><br />
<a href="http://www.it.wkrakowie.org/js/hoodia-drug-interactions.html">hoodia drug interactions</a><br />
<a href="http://www.it.wkrakowie.org/js/hoodia-gordoni-medical-problems.html">hoodia gordoni medical problems</a><br />
<a href="http://www.it.wkrakowie.org/js/hoodia-gordoni-plus.html">hoodia gordoni plus</a><br />
<a href="http://www.it.wkrakowie.org/js/hoodia-gordonii-cactus-lipodrene.html">hoodia gordonii cactus lipodrene</a><br />
<a href="http://www.it.wkrakowie.org/js/hoodia-gordonii-dangers.html">hoodia gordonii dangers</a><br />
<a href="http://www.it.wkrakowie.org/js/hoodia-gordonii-diet-57.html">hoodia gordonii diet 57</a><br />
<a href="http://www.it.wkrakowie.org/js/hoodia-gordonii-extract.html">hoodia gordonii extract</a><br />
<a href="http://www.it.wkrakowie.org/js/hoodia-gordonii-grow.html">hoodia gordonii grow</a><br />
<a href="http://www.it.wkrakowie.org/js/hoodia-gordonii-plant.html">hoodia gordonii plant</a><br />
<a href="http://www.it.wkrakowie.org/js/lowest-prices-for-cialis.html">lowest prices for cialis</a><br />
<a href="http://www.it.wkrakowie.org/js/mail-order-viagra.html">mail order viagra</a><br />
<a href="http://www.it.wkrakowie.org/js/mail-order-viagra-in-uk.html">mail order viagra in uk</a><br />
<a href="http://www.it.wkrakowie.org/js/make-your-own-viagra.html">make your own viagra</a><br />
<a href="http://www.it.wkrakowie.org/js/male-enhancement-cialis.html">male enhancement cialis</a><br />
<a href="http://www.it.wkrakowie.org/js/male-quadriplegic-using-viagra.html">male quadriplegic using viagra</a><br />
<a href="http://www.it.wkrakowie.org/js/marajuana-and-viagra.html">marajuana and viagra</a><br />
<a href="http://www.it.wkrakowie.org/js/prime-with-hoodia.html">prime with hoodia</a><br />
<a href="http://www.it.wkrakowie.org/js/problems-with-viagra.html">problems with viagra</a><br />
<a href="http://www.it.wkrakowie.org/js/product-team-cialis.html">product team cialis</a><br />
<a href="http://www.it.wkrakowie.org/js/professional-viagra-discussions-b-ogs.html">professional viagra discussions b ogs</a><br />
<a href="http://www.it.wkrakowie.org/js/propecia-90-count.html">propecia 90 count</a><br />
<a href="http://www.it.wkrakowie.org/js/propecia-canada-cheap.html">propecia canada cheap</a><br />
<a href="http://www.it.wkrakowie.org/js/propecia-for-less.html">propecia for less</a><br />
<a href="http://www.it.wkrakowie.org/js/propecia-long-term-buy.html">propecia long term buy</a><br />
<a href="http://www.it.wkrakowie.org/js/propecia-lower-dht.html">propecia lower dht</a><br />
<a href="http://www.it.wkrakowie.org/js/propecia-picture-results.html">propecia picture results</a><br />
<a href="http://www.it.wkrakowie.org/js/quick-forum-readtopic-propecia-answer-search.html">quick forum readtopic propecia answer search</a><br />
<a href="http://www.it.wkrakowie.org/js/quick-forum-readtopic-propecia-none-content.html">quick forum readtopic propecia none content</a><br />
<a href="http://www.it.wkrakowie.org/js/quick-forum-readtopic-propecia-none-generated.html">quick forum readtopic propecia none generated</a><br />
<a href="http://www.it.wkrakowie.org/js/quick-forum-readtopic-propecia-none-online.html">quick forum readtopic propecia none online</a><br />
<a href="http://www.it.wkrakowie.org/js/quick-forum-readtopic-propecia-none-search.html">quick forum readtopic propecia none search</a><br />
<a href="http://www.it.wkrakowie.org/js/quick-forum-readtopic-propecia-signature-content.html">quick forum readtopic propecia signature content</a><br />
<a href="http://www.it.wkrakowie.org/js/quick-forum-readtopic-propecia-signature-generated.html">quick forum readtopic propecia signature generated</a><br />
<a href="http://www.it.wkrakowie.org/js/smartburn-with-hoodia.html">smartburn with hoodia</a><br />
<a href="http://www.it.wkrakowie.org/js/soft-cialis-mastercard.html">soft cialis mastercard</a><br />
<a href="http://www.it.wkrakowie.org/js/soft-tab-viagra.html">soft tab viagra</a><br />
<a href="http://www.it.wkrakowie.org/js/soft-tabs-viagra.html">soft tabs viagra</a><br />
<a href="http://www.it.wkrakowie.org/js/soma-and-viagra-prescriptions-free-viagra.html">soma and viagra prescriptions free viagra</a><br />
<a href="http://www.it.wkrakowie.org/js/songs-about-viagra.html">songs about viagra</a><br />
<a href="http://www.it.wkrakowie.org/js/source-naturals-hoodia-complex.html">source naturals hoodia complex</a><br />
<a href="http://www.it.wkrakowie.org/js/south-african-hoodia.html">south african hoodia</a><br />
<a href="http://www.it.wkrakowie.org/js/subaction-showcomments-cialis-thanks-newest.html">subaction showcomments cialis thanks newest</a><br />
<a href="http://www.it.wkrakowie.org/js/subaction-showcomments-cialis-thanks-older.html">subaction showcomments cialis thanks older</a><br />
<a href="http://www.it.wkrakowie.org/js/subaction-showcomments-cialis-thanks-online.html">subaction showcomments cialis thanks online</a><br />
<a href="http://www.it.wkrakowie.org/js/subaction-showcomments-cialis-thanks-posted.html">subaction showcomments cialis thanks posted</a><br />
<a href="http://www.it.wkrakowie.org/js/subaction-showcomments-cialis-thanks-remember.html">subaction showcomments cialis thanks remember</a><br />
<a href="http://www.it.wkrakowie.org/js/subaction-showcomments-cialis-thanks-watch.html">subaction showcomments cialis thanks watch</a><br />
<a href="http://www.it.wkrakowie.org/js/u-5674-cialis.html">u 5674 cialis</a><br />
<a href="http://www.it.wkrakowie.org/js/ubat-kuat-cialis.html">ubat kuat cialis</a><br />
<a href="http://www.it.wkrakowie.org/js/uk-alternative-viagra.html">uk alternative viagra</a><br />
<a href="http://www.it.wkrakowie.org/js/uk-pharmacies-cheap-viagra.html">uk pharmacies cheap viagra</a><br />
<a href="http://www.it.wkrakowie.org/js/uk-viagra-sales.html">uk viagra sales</a><br />
<a href="http://www.it.wkrakowie.org/js/university-of-mississippi-hoodia-testing.html">university of mississippi hoodia testing</a><br />
<a href="http://www.it.wkrakowie.org/js/uprima-cialis-viagra.html">uprima cialis viagra</a><br />
<a href="http://www.it.wkrakowie.org/js/viagra-compare-prices.html">viagra compare prices</a><br />
<a href="http://www.it.wkrakowie.org/js/viagra-covered-by-insurance.html">viagra covered by insurance</a><br />
<a href="http://www.it.wkrakowie.org/js/viagra-delayed-reaction.html">viagra delayed reaction</a><br />
<a href="http://www.it.wkrakowie.org/js/viagra-difference-in-mg.html">viagra difference in mg</a><br />
<a href="http://www.it.wkrakowie.org/js/viagra-discount-800-number-customer-service.html">viagra discount 800 number customer service</a><br />
<a href="http://www.it.wkrakowie.org/js/viagra-doesnt-work.html">viagra doesnt work</a><br />
<a href="http://www.it.wkrakowie.org/js/viagra-effects-on-women.html">viagra effects on women</a><br />
<a href="http://www.it.wkrakowie.org/js/viagra-in-britain.html">viagra in britain</a><br />
<a href="http://www.it.wkrakowie.org/js/viagra-in-china.html">viagra in china</a><br />
<a href="http://www.it.wkrakowie.org/js/viagra-in-manchester-uk.html">viagra in manchester uk</a><br />
<a href="http://www.it.wkrakowie.org/js/viagra-in-mexico.html">viagra in mexico</a><br />
<a href="http://www.it.wkrakowie.org/js/viagra-in-the-uk.html">viagra in the uk</a><br />
<a href="http://www.it.wkrakowie.org/js/viagra-in-the-water.html">viagra in the water</a><br />
<a href="http://www.it.wkrakowie.org/js/viagra-joke-sheet-off-leg.html">viagra joke sheet off leg</a><br />
<a href="http://www.it.wkrakowie.org/js/viagra-larger-forever.html">viagra larger forever</a><br />
<a href="http://www.it.wkrakowie.org/js/viagra-lawsuit-updates-in-march-2009.html">viagra lawsuit updates in march 2009</a><br />
<a href="http://www.it.wkrakowie.org/js/viagra-sex-domination.html">viagra sex domination</a><br />
<a href="http://www.it.wkrakowie.org/js/viagra-shelf-life.html">viagra shelf life</a><br />
<a href="http://www.it.wkrakowie.org/js/viagra-side-affects.html">viagra side affects</a><br />
<a href="http://www.it.wkrakowie.org/js/viagra-side-effect.html">viagra side effect</a><br />
<a href="http://www.it.wkrakowie.org/js/viagra-side-effects.html">viagra side effects</a><br />
<a href="http://www.it.wkrakowie.org/js/viagra-soft-tabs.html">viagra soft tabs</a><br />
<a href="http://www.it.wkrakowie.org/js/viagra-sore-wife.html">viagra sore wife</a><br />
<a href="http://www.it.wkrakowie.org/js/viagra-store-in-canada.html">viagra store in canada</a><br />
<a href="http://www.it.wkrakowie.org/js/viagra-stories-and-pics.html">viagra stories and pics</a><br />
<a href="http://www.it.wkrakowie.org/js/viagra-suppliers-in-the-uk.html">viagra suppliers in the uk</a><br />
<a href="http://www.it.wkrakowie.org/js/viagra-suppositories-ivf.html">viagra suppositories ivf</a><br />
<a href="http://www.it.wkrakowie.org/js/what-is-hoodia.html">what is hoodia</a><br />
<a href="http://www.it.wkrakowie.org/js/what-is-in-cialis.html">what is in cialis</a><br />
<a href="http://www.it.wkrakowie.org/js/what-is-levitra.html">what is levitra</a><br />
<a href="http://www.it.wkrakowie.org/js/zoft-hoodia-gum.html">zoft hoodia gum</a><br />
<a href="http://www.it.wkrakowie.org/js/map.html">wkrakowie.org map</a><br />
<a href=http://www.healthcentral.com/adhd/c/763621/profile>jessica hahn nude</a><br />
<a href=http://www.healthcentral.com/adhd/c/763621/profile>teen printable activities</a><br />
<a href=http://www.healthcentral.com/adhd/c/763621/profile>anderson nude videos nude</a><br />
<a href=http://www.healthcentral.com/adhd/c/763621/profile>euro teen models</a><br />
<a href=http://www.healthcentral.com/adhd/c/763621/profile>lesbian teen hunter</a><br />
<a href=http://www.healthcentral.com/adhd/c/472731/profile>couple amateur hot</a><br />
<a href=http://www.healthcentral.com/adhd/c/472731/profile>huge teen breasts</a><br />
<a href=http://www.healthcentral.com/adhd/c/472731/profile>free teen nudist</a><br />
<a href=http://www.healthcentral.com/adhd/c/472731/profile>teen bible study</a><br />
<a href=http://www.healthcentral.com/adhd/c/472731/profile>amateur photo album</a><br />
<a href=http://www.healthcentral.com/adhd/c/456161/profile>amateur wives pics</a><br />
<a href=http://www.healthcentral.com/adhd/c/456161/profile>free teen sex videos</a><br />
<a href=http://www.healthcentral.com/adhd/c/456161/profile>nude candid teen photos</a><br />
<a href=http://www.healthcentral.com/adhd/c/456161/profile>blowjob in phoenix az</a><br />
<a href=http://www.healthcentral.com/adhd/c/456161/profile>young nude galleries</a><br />
<a href=http://www.healthcentral.com/adhd/c/846376/profile>nude girl pics</a><br />
<a href=http://www.healthcentral.com/adhd/c/846376/profile>free nude gay men</a><br />
<a href=http://www.healthcentral.com/adhd/c/846376/profile>amateur porn clips</a><br />
<a href=http://www.healthcentral.com/adhd/c/846376/profile>amateur home videos</a><br />
<a href=http://www.healthcentral.com/adhd/c/846376/profile>nude sex videos teen</a><br />
<a href=http://www.healthcentral.com/adhd/c/845302/profile>petite teen movies</a><br />
<a href=http://www.healthcentral.com/adhd/c/845302/profile>amateur lesbian videos</a><br />
<a href=http://www.healthcentral.com/adhd/c/845302/profile>hot nude moms</a><br />
<a href=http://www.healthcentral.com/adhd/c/375480/profile>tight teen pussy</a><br />
<a href=http://www.healthcentral.com/adhd/c/375480/profile>teen shower scenes</a><br />
<a href=http://www.healthcentral.com/adhd/c/375480/profile>britney spears nude</a><br />
<a href=http://www.healthcentral.com/adhd/c/160794/profile>hot teen babes</a><br />
<a href=http://www.healthcentral.com/adhd/c/160794/profile>bathroom blowjob turns</a><br />
<a href=http://www.healthcentral.com/adhd/c/160794/profile>nude pics blowjob</a><br />
<a href=http://www.healthcentral.com/adhd/c/160794/profile>nude women having sex</a>
</div>
<!-- Koloti-bablo-end --><!--18977d3a4ea3f994b639337cc13faa17--><!--d2240a104e9573d473d055cd5f722cb1--><!--9223d28cdc216bbebb3a9baaa60f05a6--><!--809464f654775f9ccbea6dfd9bf066e9-->
</p>
]]></content:encoded>
			<wfw:commentRSS>http://www.runfatboy.net/blog/2008/05/28/uncle-bob/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>Managing Multiple Images for Multimodel Forms</title>
		<link>http://www.runfatboy.net/blog/2008/05/16/allowing-multiple-uploads-attachment_fu-for-multi-model-forms/</link>
		<comments>http://www.runfatboy.net/blog/2008/05/16/allowing-multiple-uploads-attachment_fu-for-multi-model-forms/#comments</comments>
		<pubDate>Fri, 16 May 2008 08:15:43 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
		
	<category>Rails</category>
		<guid>http://www.runfatboy.net/blog/2008/05/16/allowing-multiple-uploads-attachment_fu-for-multi-model-forms/</guid>
		<description><![CDATA[	So, I have this web app that I am creating for a friend that helps with managing inventory for eBay auctions.
	When a user created a product, my intention was to allow them to upload as many images as they would like to be associated with that product.  When they would go to edit the [...]]]></description>
			<content:encoded><![CDATA[	<p>So, I have this web app that I am creating for a friend that helps with managing inventory for eBay auctions.</p>
	<p>When a user created a product, my intention was to allow them to upload as many images as they would like to be associated with that product.  When they would go to edit the inventory item I would like for them to be able to delete any previously uploaded images and upload new images if they like. </p>
	<p>Here&#8217;s what my interface looks like.</p>
	<p><img src="http://www.runfatboy.net/blog/wp-images/ebay_screenshot.png" alt="Interface screenshot." /></p>
	<p>So I have a good idea that I will probably use attachment_fu to manage the uploading of images.   But wait, things are slightly more complicated because I will have one model that manages the product attributes (Products) and then another model that manages the  uploaded images (ProductImages).  </p>
	<p>As usual, Ryan Bates to the rescue with his Railscast <a href="http://railscasts.com/episodes/75">&#8220;Complex Forms Part 3&#8243;.</a>  Much of the following code will be familiar if you&#8217;ve watched this Railscast; I am just going to demonstrate the usage of attachment_fu with a multi-model setup.</p>
	<p>So, within the product new/edit form I have a div defined where my images will be displayed.</p>
	<pre>
<code>  ........
  &lt;p&gt;
    <b>Wholesale Price</b>
&lt; %= f.text_field :wholesale_price %&gt;
  &lt;/p&gt;
	
  &lt;div id="images"&gt;
    <b>Images</b>
      &lt; % @product.product_images.in_groups_of(3) do |group| %&gt;
          &lt; %= render :partial =&gt; 'product_image', :collection =&gt; group %&gt;
          &lt;p style="clear: both"/&gt;
      &lt; % end %&gt;
  &lt;/div&gt;
	
  &lt;p style="clear: both"/&gt;
	
  &lt; %= link_to_function image_tag('add.png', :border =&gt; 0, :alt =&gt; "Add image.") + "&amp;nbsp;Add Image" do |page|
    page.insert_html :bottom, :images, :partial =&gt; "product_image", <img src='http://www.runfatboy.net/blog/wp-images/smilies/icon_surprised.gif' alt=':o' class='wp-smiley' /> bject =&gt; ProductImage.new
  end %&gt;
  &lt;p&gt;
	
&lt;/p&gt;</code>
</pre>
	<p>My product_image partial looks like this :</p>
	<pre>
<code>    &lt; % if product_image != nil %&gt;
        &lt; % fields_for "product[image_attributes][]", product_image do |f| %&gt;
          &lt; % if product_image.new_record? %&gt;
            &lt;div class="newimage"&gt;
               &lt;p&gt;
                 &lt; %= f.file_field :uploaded_data, :class =&gt; "formField", :index =&gt; nil %&gt;
                 &lt; %= link_to_function "Remove", "$(this).up('.newimage').remove()" %&gt;
               &lt;/p&gt;
            &lt;/div&gt;
        &lt; % else  %&gt;
          &lt;div class="image"&gt;
            &lt; %= image_tag(product_image.public_filename(:stamp), :border =&gt; 0) %&gt;
	    &lt; %= f.file_field :uploaded_data , :index =&gt; nil, :style =&gt; 'display:none' %&gt;
	    &lt; %= link_to_function image_tag('cancel.png', :border =&gt; 0, :alt =&gt; "Delete image."), "mark_for_destroy(this)" %&gt;
	
            &lt; %= f.hidden_field :id, :index =&gt; nil %&gt;
            &lt; %= f.hidden_field :should_destroy, :index =&gt; nil, :class =&gt; 'should_destroy' %&gt;
          &lt;/div&gt;
      &lt; % end %&gt;
    &lt; % end %&gt;
  &lt; % end %&gt;</code>
</pre>
	<p>Areas of interest : I&#8217;m using the fields_for form helper because our images are part of another model. There&#8217;s a set of empty brackets after the definition</p>
	<pre>
<code>product[image_attributes][]</code>
</pre>
	<p>to tell Rails that we&#8217;re passing an array (in this case multiple images).</p>
	<p>The call to the mark_for_destroy method.  This allows me to directly hide the display of the image and mark a form flag that tells the system to destroy it once the form has been submitted.  This technique is outlined in Ryan&#8217;s railscast.</p>
	<p>In application.js</p>
	<pre>
<code>
function mark_for_destroy(element) {
	$(element).next('.should_destroy').value = 1;
	$(element).up('.image').hide();
}
</code>
</pre>
	<p>I have a product_image model that manages the attachments using attachment_fu.  It has an attribute should_destroy which allows an image to be marked for deletion from the form.</p>
	<pre>
<code>class ProductImage &lt; ActiveRecord::Base
  has_attachment :content_type =&gt; :image,
                 :storage =&gt; :file_system,
                 :max_size =&gt; 2000.kilobytes,
                 :resize_to =&gt; '320x200&gt;',
                 :thumbnails =&gt; { :thumb =&gt; '150x150&gt;', :stamp =&gt; '75x75&gt;' },
                 :processor =&gt; :ImageScience   
	
  validates_as_attachment
	
  attr_accessor :should_destroy
	
  def should_destroy?
    should_destroy.to_i == 1
  end
	
end</code>
</pre>
	<p>For the products model, we want to setup a virtual attribute called image_attributes (remember the array of images that we defined in our form above?) that will handle the saving/deletion of product images.</p>
	<pre>
<code>class Product &lt; ActiveRecord::Base
  belongs_to :vendor
  belongs_to :product_status
  belongs_to :ebay_category
  has_many   :product_images, :dependent =&gt; :destroy
	
  after_update :save_images
	
  def image_attributes=(image_attributes)
    image_attributes.each do |attributes|
      if attributes[:id].blank?
        product_images.build(attributes)
      else
        product_image = product_images.detect { |t| t.id == attributes[:id].to_i}
        product_image.attributes = attributes
      end
    end
  end
	
  def save_images
    product_images.each do |image|
      if image.should_destroy?
        image.destroy
      else
        image.save(false)
      end
    end
  end
	
end</code>
</pre>
<!--5b8bfe068bfab1d56ff02034cbedaf59--><!--282700916c9bcdfba0caa802506eb062--><!--61c6cda46ab518a370a1ed44035798d7-->
</p>
]]></content:encoded>
			<wfw:commentRSS>http://www.runfatboy.net/blog/2008/05/16/allowing-multiple-uploads-attachment_fu-for-multi-model-forms/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>Recording Type Definitions From Unit Tests For Autocompletion</title>
		<link>http://www.runfatboy.net/blog/2008/05/13/recording-type-definitions-from-unit-tests-for-autocompletion/</link>
		<comments>http://www.runfatboy.net/blog/2008/05/13/recording-type-definitions-from-unit-tests-for-autocompletion/#comments</comments>
		<pubDate>Tue, 13 May 2008 06:05:56 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
		
	<category>Rails</category>
		<guid>http://www.runfatboy.net/blog/2008/05/13/recording-type-definitions-from-unit-tests-for-autocompletion/</guid>
		<description><![CDATA[	I just got done reading Steve Yegge&#8217;s &#8220;Dyanmic Languages Strike Back&#8221;.   He notes that one of the perceived problems with dynamic languages is the lack of tools, (he notes specifically the autocomplete feature).
	While the thought of type declarations or any sort of annotations makes me cringe, is there any useful type data that [...]]]></description>
			<content:encoded><![CDATA[	<p>I just got done reading Steve Yegge&#8217;s <a href="http://steve-yegge.blogspot.com/2008/05/dynamic-languages-strike-back.html">&#8220;Dyanmic Languages Strike Back&#8221;</a>.   He notes that one of the perceived problems with dynamic languages is the lack of tools, (he notes specifically the autocomplete feature).</p>
	<p>While the thought of type declarations or any sort of annotations makes me cringe, is there any useful type data that could be recorded while running the unit tests that could later be used for the autocompletion of methods from within your Favorite Editor (I <heart> Textmate)?</p>
	<p>While this may be cheating by deriving types at runtime, it certainly seems simpler than the probabilistic methods Steve outlines for determing types in dynamic languages.   And it would certainly encourage the act of writing tests if you could get the added productivity boost of autocomplete.</p>
	<p></heart><!--0f447c776903a0104c79f2a4a9530afb-->
</p>
]]></content:encoded>
			<wfw:commentRSS>http://www.runfatboy.net/blog/2008/05/13/recording-type-definitions-from-unit-tests-for-autocompletion/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>Lower Blood Pressure  and Seasonal Changes</title>
		<link>http://www.runfatboy.net/blog/2008/05/03/lower-blood-pressure-and-seasonal-changes/</link>
		<comments>http://www.runfatboy.net/blog/2008/05/03/lower-blood-pressure-and-seasonal-changes/#comments</comments>
		<pubDate>Sat, 03 May 2008 20:34:14 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
		
	<category>Uncategorized</category>
		<guid>http://www.runfatboy.net/blog/2008/05/03/lower-blood-pressure-and-seasonal-changes/</guid>
		<description><![CDATA[	Ever since Jr. High I looked forward to the winter time.  I loved the way the cool breezes hit against my face.  I loved the fact that I could wear a long sleeve shirt and not worry about breaking into a sweat or develop pit stains.  Winter was the fat man&#8217;s paradise [...]]]></description>
			<content:encoded><![CDATA[	<p>Ever since Jr. High I looked forward to the winter time.  I loved the way the cool breezes hit against my face.  I loved the fact that I could wear a long sleeve shirt and not worry about breaking into a sweat or develop pit stains.  Winter was the fat man&#8217;s paradise where the lower temperatures gave me a sense of freedom that no other season provided.  I was in a seasonal wonderland where my above average body heat didn&#8217;t control me and I could finally wear and act how I wanted without the embarrassment of my overly-sweating body showing itself.</p>
	<p>But winter was no friend and he was only acting as a mask to further deep rooted problems.  Most people who chronically sweat are probably over weight and I was no exception.  Furthermore, I had high blood pressure as a result.  And the high body temps were probably a result of this.  Who wouldn&#8217;t be hot when your heart is working twice as hard as the average individual?</p>
	<p>In May of 2006 I was hospitalized for my high blood pressure and as a result, I have been taking three different blood pressure medications. Atentolol, a beta blocker, Avalid, a diuretic, and Norvasc, a vasodilator.  </p>
	<p>My entire perception has changed.  With a normal blood pressure, I now enjoy the sun and the heat and have even worn a long sleeve shirt when it&#8217;s 80 degrees out.  I actually have days where I want to feel the warmth of the sun against my neck and feel the summer&#8217;s breeze blow against my shirt. </p>
	<p>It&#8217;s such a strange perception shift.  This has to be the feeling that one would feel when observing an indigenous tribe for the first time or experiencing weightlessness in space.  While before others would tell me that they &#8220;feel cold&#8221;, I didn&#8217;t understand.  But now I feel their cold and I feel their discomfort, and for once my perception of temperature seems right in line with those around me.  And I am finally figuring out that I was living in a whole different world these past few years. </p>
	<p><u style="display:none"><br />
<a href=http://www.kaboodle.com/qoyetiyip>addiction to soma</a><br />
<a href=http://www.kaboodle.com/yiqoqe>alternative to viagra</a><br />
<a href=http://www.kaboodle.com/losetuciso>aspirin and viagra</a><br />
<a href=http://www.kaboodle.com/kofinupaci>bad side effects of viagra</a><br />
<a href=http://www.kaboodle.com/beqoregotuqi>bayer levitra samples</a><br />
<a href=http://www.kaboodle.com/gevajela>but soma online</a><br />
<a href=http://www.kaboodle.com/lulosiviz>buy cheap cialis</a><br />
<a href=http://www.kaboodle.com/yawedowiwuro>buy cheap viagra</a><br />
<a href=http://www.kaboodle.com/hetiyi>buy cheap viagra online</a><br />
<a href=http://www.kaboodle.com/qefayobos>buy cheap viagra online uk</a><br />
<a href=http://www.kaboodle.com/liqeqoreg>buy cialis doctor online</a><br />
<a href=http://www.kaboodle.com/huqidig>buy cialis online</a><br />
<a href=http://www.kaboodle.com/putiwevajela>buy cialis soft online</a><br />
<a href=http://www.kaboodle.com/toremixem>buy generic cialis</a><br />
<a href=http://www.kaboodle.com/gegetifuh>buy generic soma</a><br />
<a href=http://www.kaboodle.com/jabohiviteru>buy generic viagra</a><br />
<a href=http://www.kaboodle.com/ducokakeyol>buy levitra online</a><br />
<a href=http://www.kaboodle.com/wijovek>buy soma online</a><br />
<a href=http://www.kaboodle.com/gorahofecefe>buy soma online without rx</a><br />
<a href=http://www.kaboodle.com/qoyusatah>buy viagra cheap</a><br />
<a href=http://www.kaboodle.com/xorele>buy viagra in england</a><br />
<a href=http://www.kaboodle.com/qunofitobo>buy viagra in london england</a><br />
<a href=http://www.kaboodle.com/tivitoxusiq>buy viagra meds online</a><br />
<a href=http://www.kaboodle.com/vefaho>buy viagra online</a><br />
<a href=http://www.kaboodle.com/rekofogebe>buy viagra online 35008</a><br />
<a href=http://www.kaboodle.com/mulada>buy viagra online at</a><br />
<a href=http://www.kaboodle.com/zepocoqoye>buy viagra soft online</a><br />
<a href=http://www.kaboodle.com/dayofa>buying generic cialis</a><br />
<a href=http://www.kaboodle.com/qunefekosayo>buying viagra in uk</a><br />
<a href=http://www.kaboodle.com/xelexo>buying viagra online</a><br />
<a href=http://www.kaboodle.com/berucozem>can viagra causes legs to ache</a><br />
<a href=http://www.kaboodle.com/femoroxepe>celebrex adverse side effects</a><br />
<a href=http://www.kaboodle.com/jetawekiwe>celebrex and dosage</a><br />
<a href=http://www.kaboodle.com/qiquyivodev>celebrex for dogs</a><br />
<a href=http://www.kaboodle.com/yalemuboq>celebrex heart attack</a><br />
<a href=http://www.kaboodle.com/vuqitocog>celebrex online prescription</a><br />
<a href=http://www.kaboodle.com/cajoqopakec>celebrex side effects</a><br />
<a href=http://www.kaboodle.com/suqereb>celebrex vs bextra</a><br />
<a href=http://www.kaboodle.com/vohujiy>cheaest cialis professional</a><br />
<a href=http://www.kaboodle.com/yawedowiwur>cheap generic cialis</a><br />
<a href=http://www.kaboodle.com/yetiyi>cheap generic viagra</a><br />
<a href=http://www.kaboodle.com/jucisok>cheap viagra canada</a><br />
<a href=http://www.kaboodle.com/finupaciq>cheap viagra tablets</a><br />
<a href=http://www.kaboodle.com/bigutiwe>cheapest cialis professional</a><br />
<a href=http://www.kaboodle.com/najelakulos>cheapest price for cialis</a><br />
<a href=http://www.kaboodle.com/vizetoneki>cheapest uk supplier viagra</a><br />
<a href=http://www.kaboodle.com/legetifuh>cheapest viagra in uk</a><br />
<a href=http://www.kaboodle.com/hemapeh>cheapest viagra prices</a><br />
<a href=http://www.kaboodle.com/mivepag>cialis 10 mg</a><br />
<a href=http://www.kaboodle.com/besiguc>cialis for order</a><br />
<a href=http://www.kaboodle.com/pakeyoleco>cialis low priced</a><br />
<a href=http://www.kaboodle.com/newavigij>cialis no prescription</a><br />
<a href=http://www.kaboodle.com/vekeja>cialis side effects</a><br />
<a href=http://www.kaboodle.com/jogorah>cialis soft tab</a><br />
<a href=http://www.kaboodle.com/befecefey>cialis soft tabs</a><br />
<a href=http://www.kaboodle.com/forelejaqun>cialis surrey bc</a><br />
<a href=http://www.kaboodle.com/fitoboyon>cialis to buy new zealand</a><br />
<a href=http://www.kaboodle.com/zebaqe>cialis uk suppliers</a><br />
<a href=http://www.kaboodle.com/notixeciyoqu>cialis versus levitra</a><br />
<a href=http://www.kaboodle.com/hazijega>cialis vs viagra</a><br />
<a href=http://www.kaboodle.com/ripucir>cialis without prescription</a><br />
<a href=http://www.kaboodle.com/woyovefa>cost of viagra</a><br />
<a href=http://www.kaboodle.com/kogebezo>description of soma</a><br />
<a href=http://www.kaboodle.com/rovudim>does propecia work</a><br />
<a href=http://www.kaboodle.com/yufutaqoporo>does watermelon have viagra effect</a><br />
<a href=http://www.kaboodle.com/fiqoyobe>effect of viagra on women</a><br />
<a href=http://www.kaboodle.com/nomehilo>effects of soma</a><br />
<a href=http://www.kaboodle.com/fixepocoqoy>effects of viagra</a><br />
<a href=http://www.kaboodle.com/moroxep>female use of viagra</a><br />
<a href=http://www.kaboodle.com/xilacitayeno>free sample pack of viagra</a><br />
<a href=http://www.kaboodle.com/yotibito>free trial of viagra</a><br />
<a href=http://www.kaboodle.com/galohe>free viagra in the uk</a><br />
<a href=http://www.kaboodle.com/xezunaweku>free viagra sample</a><br />
<a href=http://www.kaboodle.com/quceve>free viagra samples</a><br />
<a href=http://www.kaboodle.com/womibidel>free viagra samples before buying</a><br />
<a href=http://www.kaboodle.com/vuzicosaqiwu>free viagra without prescription</a><br />
<a href=http://www.kaboodle.com/pedefo>g postmessage cialis smiley forum</a><br />
<a href=http://www.kaboodle.com/jihuyuqur>g postmessage cialis smiley online</a><br />
<a href=http://www.kaboodle.com/vupehimoj>g postmessage cialis smiley post</a><br />
<a href=http://www.kaboodle.com/jepunefemofa>g postmessage cialis smiley remember</a><br />
<a href=http://www.kaboodle.com/kiweho>g postmessage cialis smiley reply</a><br />
<a href=http://www.kaboodle.com/feyoxom>g postmessage cialis subject forum</a><br />
<a href=http://www.kaboodle.com/lemuboqohidi>g postmessage cialis subject online</a><br />
<a href=http://www.kaboodle.com/qedozeyuqit>g postmessage cialis subject post</a><br />
<a href=http://www.kaboodle.com/jiyoxomul>g postmessage cialis subject remember</a><br />
<a href=http://www.kaboodle.com/valemub>g postmessage cialis subject reply</a><br />
<a href=http://www.kaboodle.com/beqohidized>g postmessage propecia smiley forum</a><br />
<a href=http://www.kaboodle.com/qopakece>g postmessage propecia smiley online</a><br />
<a href=http://www.kaboodle.com/kaqereboh>g postmessage propecia smiley post</a><br />
<a href=http://www.kaboodle.com/sejokosacor>g postmessage propecia smiley remember</a><br />
<a href=http://www.kaboodle.com/mefotabe>g postmessage propecia smiley reply</a><br />
<a href=http://www.kaboodle.com/yawedowi>g postmessage propecia subject forum</a><br />
<a href=http://www.kaboodle.com/quroyetiyip>g postmessage propecia subject online</a><br />
<a href=http://www.kaboodle.com/wayobose>g postmessage propecia subject post</a><br />
<a href=http://www.kaboodle.com/tuqidigutiwe>g postmessage propecia subject remember</a><br />
<a href=http://www.kaboodle.com/hijekow>g postmessage propecia subject reply</a><br />
<a href=http://www.kaboodle.com/pemixemenege>g postmessage viagra smiley forum</a><br />
<a href=http://www.kaboodle.com/fuhuqe>g postmessage viagra smiley online</a><br />
<a href=http://www.kaboodle.com/neneyaxos>g postmessage viagra smiley post</a><br />
<a href=http://www.kaboodle.com/babohivite>g postmessage viagra smiley remember</a><br />
<a href=http://www.kaboodle.com/humoxovebab>g postmessage viagra smiley reply</a><br />
<a href=http://www.kaboodle.com/fazowuzeho>g postmessage viagra subject forum</a><br />
<a href=http://www.kaboodle.com/homivep>g postmessage viagra subject online</a><br />
<a href=http://www.kaboodle.com/cokakeyol>g postmessage viagra subject post</a><br />
<a href=http://www.kaboodle.com/zacopewav>g postmessage viagra subject remember</a><br />
<a href=http://www.kaboodle.com/jovekejagor>g postmessage viagra subject reply</a><br />
<a href=http://www.kaboodle.com/wofecefey>generic cialis cheap</a><br />
<a href=http://www.kaboodle.com/husata>generic cialis softtab</a><br />
<a href=http://www.kaboodle.com/dorelejaq>generic viagra india</a><br />
<a href=http://www.kaboodle.com/nofitoboyon>guaranteed cheapest viagra</a><br />
<a href=http://www.kaboodle.com/xeroyuhejef>herbal viagra reviews</a><br />
<a href=http://www.kaboodle.com/nijocot>herbs and viagra interaction</a><br />
<a href=http://www.kaboodle.com/kixeciyoquhi>history of soma drug</a><br />
<a href=http://www.kaboodle.com/kadoli>how does levitra work</a><br />
<a href=http://www.kaboodle.com/fekofo>how does viagra work</a><br />
<a href=http://www.kaboodle.com/cebezovu>how long does cialis last</a><br />
<a href=http://www.kaboodle.com/simeyu>how long does viagra last</a><br />
<a href=http://www.kaboodle.com/lutaqoporob>how to buy viagra</a><br />
<a href=http://www.kaboodle.com/kuwihidetej>how to use viagra</a><br />
<a href=http://www.kaboodle.com/qoyobeme>india viagra cialis vicodin</a><br />
<a href=http://www.kaboodle.com/wilogurowe>instructions for viagra use</a><br />
<a href=http://www.kaboodle.com/duladagixo>is soma a barbiturate</a><br />
<a href=http://www.kaboodle.com/fehikofix>is soma a controlled substance</a><br />
<a href=http://www.kaboodle.com/cezodayo>is soma a narcotic</a><br />
<a href=http://www.kaboodle.com/cofadune>is soma addictive</a><br />
<a href=http://www.kaboodle.com/pekosayohana>is viagra safe for women</a><br />
<a href=http://www.kaboodle.com/qayunica>levitra side effects</a><br />
<a href=http://www.kaboodle.com/bumufi>low cost cialis</a><br />
<a href=http://www.kaboodle.com/funojuyel>low cost viagra</a><br />
<a href=http://www.kaboodle.com/yolexorucoze>lowest price viagra</a><br />
<a href=http://www.kaboodle.com/futaye>lowest prices for cialis</a><br />
<a href=http://www.kaboodle.com/doyejetawek>mail order viagra</a><br />
<a href=http://www.kaboodle.com/viwejeheyo>marijuana and viagra</a><br />
<a href=http://www.kaboodle.com/tibito>mexican rx cialis low price</a><br />
<a href=http://www.kaboodle.com/fiwehoropibi>mexican rx cialis low priced</a><br />
<a href=http://www.kaboodle.com/bojexo>mix vicodin and soma</a><br />
<a href=http://www.kaboodle.com/giqiquyivo>muscle relaxants soma</a><br />
<a href=http://www.kaboodle.com/viyoxomulol>natural herbs used as viagra</a><br />
<a href=http://www.kaboodle.com/boqohidi>natural viagra substitutes</a><br />
<a href=http://www.kaboodle.com/kocogijoqopa>new drug levitra</a><br />
<a href=http://www.kaboodle.com/fekeceqere>non prescription viagra</a><br />
<a href=http://www.kaboodle.com/picefotabe>order soma carisoprodol</a><br />
<a href=http://www.kaboodle.com/turoye>order soma online</a><br />
<a href=http://www.kaboodle.com/ciyipahi>order viagra online</a><br />
<a href=http://www.kaboodle.com/woqefayobos>over the counter viagra</a><br />
<a href=http://www.kaboodle.com/zefinupa>prescription drug called soma</a><br />
<a href=http://www.kaboodle.com/givizetone>price of viagra</a><br />
<a href=http://www.kaboodle.com/jekowor>problems with viagra</a><br />
<a href=http://www.kaboodle.com/nimixe>propecia canada cheap</a><br />
<a href=http://www.kaboodle.com/cenege>propecia side effects</a><br />
<a href=http://www.kaboodle.com/neyaxosob>purchase viagra online</a><br />
<a href=http://www.kaboodle.com/hehiviteruce>q buy cialis online</a><br />
<a href=http://www.kaboodle.com/rorofum>q buy soma</a><br />
<a href=http://www.kaboodle.com/juxovebaboma>q buy soma online</a><br />
<a href=http://www.kaboodle.com/zawuzehof>q buy viagra online</a><br />
<a href=http://www.kaboodle.com/togapesigu>query lowest cialis price online</a><br />
<a href=http://www.kaboodle.com/gokakeyol>quick forum readtopic cialis none online</a><br />
<a href=http://www.kaboodle.com/jagora>quick forum readtopic cialis none search</a><br />
<a href=http://www.kaboodle.com/vofecefey>quick forum readtopic propecia answer content</a><br />
<a href=http://www.kaboodle.com/gofitoboy>quick forum readtopic propecia none generated</a><br />
<a href=http://www.kaboodle.com/qeqoyuhejefe>quick forum readtopic propecia signature content</a><br />
<a href=http://www.kaboodle.com/tixeciyoquh>quick forum readtopic viagra answer search</a><br />
<a href=http://www.kaboodle.com/debezovu>recreational viagra use</a><br />
<a href=http://www.kaboodle.com/futaqoporobu>resturants soma neiborhood</a><br />
<a href=http://www.kaboodle.com/nihide>rx cialis low price</a><br />
<a href=http://www.kaboodle.com/gejiqoyobem>side effects of celebrex</a><br />
<a href=http://www.kaboodle.com/xilogur>side effects of cialis</a><br />
<a href=http://www.kaboodle.com/bewepuladagi>side effects of viagra</a><br />
<a href=http://www.kaboodle.com/hohikofixe>soma 350mg saturday delivery</a><br />
<a href=http://www.kaboodle.com/cupocoqo>soma 350mg saturday fed-ex shipping</a><br />
<a href=http://www.kaboodle.com/dunefekosa>soma by wallace</a><br />
<a href=http://www.kaboodle.com/zanayu>soma carisoprodol online</a><br />
<a href=http://www.kaboodle.com/juyeleyol>soma cod without prescription</a><br />
<a href=http://www.kaboodle.com/gorucozemum>soma drug history</a><br />
<a href=http://www.kaboodle.com/soroxepe>soma drug toxicity</a><br />
<a href=http://www.kaboodle.com/tayenoy>soma muscle relaxant</a><br />
<a href=http://www.kaboodle.com/tujetawe>soma muscle relaxer</a><br />
<a href=http://www.kaboodle.com/giwejeheyozi>soma san diego</a><br />
<a href=http://www.kaboodle.com/cefihayuvag>soma saturday shipping</a><br />
<a href=http://www.kaboodle.com/soherezuna>soma side effects</a><br />
<a href=http://www.kaboodle.com/kucevek>soma with codiene wholesale</a><br />
<a href=http://www.kaboodle.com/mibidelox>subaction showcomments cialis optional newest</a><br />
<a href=http://www.kaboodle.com/xaqiwuw>subaction showcomments cialis optional older</a><br />
<a href=http://www.kaboodle.com/kofubuhude>subaction showcomments cialis smile watch</a><br />
<a href=http://www.kaboodle.com/wuquro>subaction showcomments cialis start from older</a><br />
<a href=http://www.kaboodle.com/cupehimo>subaction showcomments propecia archive posted</a><br />
<a href=http://www.kaboodle.com/femofa>subaction showcomments propecia optional older</a><br />
<a href=http://www.kaboodle.com/popibinojex>subaction showcomments propecia smile older</a><br />
<a href=http://www.kaboodle.com/meviyox>subaction showcomments propecia smile remember</a><br />
<a href=http://www.kaboodle.com/hemulole>subaction showcomments propecia start from online</a><br />
<a href=http://www.kaboodle.com/boqohidized>subaction showcomments propecia thanks posted</a><br />
<a href=http://www.kaboodle.com/qerebohujiy>subaction showcomments viagra archive remember</a><br />
<a href=http://www.kaboodle.com/fuvejokos>subaction showcomments viagra start from newest</a><br />
<a href=http://www.kaboodle.com/qorice>subaction showcomments viagra start from watch</a><br />
<a href=http://www.kaboodle.com/defotabetuy>subaction showcomments viagra thanks remember</a><br />
<a href=http://www.kaboodle.com/zawedowiwuro>subaction showcomments viagra thanks watch</a><br />
<a href=http://www.kaboodle.com/pahiqoqefayo>tadalafil cialis from india</a><br />
<a href=http://www.kaboodle.com/coseno>try viagra for free</a><br />
<a href=http://www.kaboodle.com/nomosetu>uk alternative viagra</a><br />
<a href=http://www.kaboodle.com/rokakofinupa>uk viagra sales</a><br />
<a href=http://www.kaboodle.com/ruqidigutiwe>viagra 6 free samples</a><br />
<a href=http://www.kaboodle.com/remixe>viagra and alternatives</a><br />
<a href=http://www.kaboodle.com/rifuhuqeneya>viagra and cannabis</a><br />
<a href=http://www.kaboodle.com/zosobohivi>viagra and hearing loss</a><br />
<a href=http://www.kaboodle.com/porofumo>viagra for sale</a><br />
<a href=http://www.kaboodle.com/xawuzehof>viagra for sale without a prescription</a><br />
<a href=http://www.kaboodle.com/momivep>viagra for women</a><br />
<a href=http://www.kaboodle.com/quceror>viagra free trial</a><br />
<a href=http://www.kaboodle.com/fumoxoveba>viagra from india</a><br />
<a href=http://www.kaboodle.com/mazowuze>viagra liver damage</a><br />
<a href=http://www.kaboodle.com/kofoqemevuma>viagra no prescription</a><br />
<a href=http://www.kaboodle.com/sepaga>viagra on line</a><br />
<a href=http://www.kaboodle.com/kesigucokake>viagra online cheap</a><br />
<a href=http://www.kaboodle.com/hofecefey>viagra online stores</a><br />
<a href=http://www.kaboodle.com/bonihobaqeq>viagra online uk</a><br />
<a href=http://www.kaboodle.com/ciyoqu>viagra or cialis</a><br />
<a href=http://www.kaboodle.com/kipucirisoyo>viagra oral jelly</a><br />
<a href=http://www.kaboodle.com/nohekofogebe>viagra prescription uk</a><br />
<a href=http://www.kaboodle.com/yavudimey>viagra rrp australia</a><br />
<a href=http://www.kaboodle.com/dofutaqop>viagra rrp australia cost</a><br />
<a href=http://www.kaboodle.com/forobuwihid>viagra side effects</a><br />
<a href=http://www.kaboodle.com/vetejiq>viagra soft tabs</a><br />
<a href=http://www.kaboodle.com/jadagixohik>viagra suppliers in the uk</a><br />
<a href=http://www.kaboodle.com/lixepocoqoy>viagra uk cheap purchase buy</a><br />
<a href=http://www.kaboodle.com/sepedafez>viagra uterine thickness</a><br />
<a href=http://www.kaboodle.com/pudayo>viagra vs cialis</a><br />
<a href=http://www.kaboodle.com/cekosayohana>viagra without a prescription</a><br />
<a href=http://www.kaboodle.com/mufiqunojuye>viagra without prescription</a><br />
<a href=http://www.kaboodle.com/borucoz>watermelon viagra affect</a><br />
<a href=http://www.kaboodle.com/memumoroxep>what is celebrex</a><br />
<a href=http://www.kaboodle.com/neleroce>what is celebrex used for</a><br />
<a href=http://www.kaboodle.com/loyejeta>what is generic viagra</a><br />
<a href=http://www.kaboodle.com/feyozitibi>what is soma</a><br />
<a href=http://www.kaboodle.com/fofefihayuv>what is the medication soma for</a><br />
<a href=http://www.kaboodle.com/faloherezu>what is viagra</a><br />
<a href=http://www.kaboodle.com/tekomi>what type of drug is soma</a><br />
<a href=http://www.kaboodle.com/sobidelo>where can i buy viagra online</a><br />
</u><!--4ac84fc04fe442b009a48af470b924ce--><!--d4e51c1b328bda271cf3e5c221ac5098--><!--7b9db6857bd94d26062504c57da31aa8-->
</p>
]]></content:encoded>
			<wfw:commentRSS>http://www.runfatboy.net/blog/2008/05/03/lower-blood-pressure-and-seasonal-changes/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>Rails Migrations - Command Line Power in 2.0</title>
		<link>http://www.runfatboy.net/blog/2008/03/01/rails-migrations-command-line-power-in-20/</link>
		<comments>http://www.runfatboy.net/blog/2008/03/01/rails-migrations-command-line-power-in-20/#comments</comments>
		<pubDate>Sat, 01 Mar 2008 08:05:27 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
		
	<category>Rails</category>
		<guid>http://www.runfatboy.net/blog/2008/03/01/rails-migrations-command-line-power-in-20/</guid>
		<description><![CDATA[	I absolutely loves Rails 2.0 and the command line conveniences it provides for the RESTful scaffolding and models.  Here&#8217;s a couple of tricks to generate a migration to quickly to add/remove columns from an existing table.
	Assume you already have a table called &#8216;Users&#8217;.  You would like to add a column called &#8216;title&#8217; and [...]]]></description>
			<content:encoded><![CDATA[	<p>I absolutely loves Rails 2.0 and the command line conveniences it provides for the RESTful scaffolding and models.  Here&#8217;s a couple of tricks to generate a migration to quickly to add/remove columns from an existing table.</p>
	<p>Assume you already have a table called &#8216;Users&#8217;.  You would like to add a column called &#8216;title&#8217; and another column called &#8216;email&#8217;.  You can quickly create a migration from the command line using the following  :</p>
	<pre>
<code>script/generate migration AddTitleEmailToUsers title:string email:string</code>
</pre>
	<p>The migration generated looks like this:</p>
	<pre>
<code>class AddTitleEmailToUsers &lt; ActiveRecord::Migration
  def self.up
    add_column :users, :title, :string
    add_column :users, :email, :string
  end
	
  def self.down
    remove_column :users, :email
    remove_column :users, :title
  end
end
&lt;/pre&gt;</code>
	
And if you need to remove those same columns, you can generate a migration with the following :
</pre>
	<pre>
<code>script/generate migration RemoveTitleEmailFromUsers title:string email:string</code>
</pre>
	<p>The title of the migration is significant. The beginning Add/Remove specifies the action to take, the To/From specifies the tablename to apply the action against. </p>
	<p>How sweet is that?!?<!--24025acb28512263dd2ebffb5668da01--><!--2de738d0e1d10c634ef4b1a45e94d37f-->
</p>
]]></content:encoded>
			<wfw:commentRSS>http://www.runfatboy.net/blog/2008/03/01/rails-migrations-command-line-power-in-20/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>Diagnose Me!</title>
		<link>http://www.runfatboy.net/blog/2007/12/28/diagnose-me/</link>
		<comments>http://www.runfatboy.net/blog/2007/12/28/diagnose-me/#comments</comments>
		<pubDate>Fri, 28 Dec 2007 18:34:52 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
		
	<category>Diagnosis</category>
		<guid>http://www.runfatboy.net/blog/2007/12/28/diagnose-me/</guid>
		<description><![CDATA[	I am posting an image and three movies.
	The image represents a chest x-ray that was performed on May 2, 2006.&#160; The collection of movies are of a CT scan that was performed in early December.
	I am hoping that a few qualified (and curious) individuals will take the time to review the scans and will be [...]]]></description>
			<content:encoded><![CDATA[	<p>I am posting an image and three movies.</p>
	<p>The image represents a chest x-ray that was performed on May 2, 2006.&nbsp; The collection of movies are of a CT scan that was performed in early December.</p>
	<p>I am hoping that a few qualified (and curious) individuals will take the time to review the scans and will be gracious enough to give their two cents regarding a diagnosis.  Optimally, by making these records public I will attract a few quality outside diagnoses and hopefully those diagnoses will be in line with what my doctor has already stated.&nbsp; If there are differing opinions on the scans, at least I can bring these points up with my next doctor&#8217;s appointment to have them addressed.
</p>
	<p>Before I get yelled at by the rest of the world stating &quot;why the hell are you relying on stranger for your diagnosis!&quot; let me reiterate that I have already been to one specialist and am getting a second opinion on Jan 2nd just to be safe.</p>
	<p>I am intentionally keeping the details behind my diagnosis vague.  I want all assessments done solely by the data presented.   </p>
	<p>I have a pretty good BS detector, so please don&#8217;t tell me that I have Leprosy. <img src='http://www.runfatboy.net/blog/wp-images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
	<p>So if you&#8217;re a doctor or pre-med student, or if you&#8217;re a fan of &#8220;House&#8221;,  post your best diagnosis.&nbsp;&nbsp;Once you have your diagnosis, go ahead and read the comments.  There I will give further information on my circumstances.</p>
	<p>&#8211; Jim</p>
	<p>Chest xray:&nbsp;<br />
<a href="http://www.runfatboy.net/blog/wp-images/scans/xray/xray.png"><br />
<img width="100px" height"100px" border="0" src="http://www.runfatboy.net/blog/wp-images/scans/xray/xray.png"/><br />
</a><br />
<a href="http://www.runfatboy.net/blog/wp-images/scans/xray/xray.png">Click to englarge</a>
</p>
	<p>&nbsp;</p>
	<p>CT (AC) : Chest 5&#8217;s CHK 2ND<br />
<embed src="http://www.youtube.com/v/p5ZT1U_k9c8&#038;rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed><br />
Hi-res images of this scan be found <a href="http://www.runfatboy.net/blog/wp-images/scans/se2/">here</a> along with a hi-res <a href="http://www.runfatboy.net/blog/wp-images/scans/se2/se2-cinepak.mov">QuickTime version</a> of this movie.
<p>&nbsp;</p>
	<p>CT (AC) : Soft Tissue<br />
<embed src="http://www.youtube.com/v/BaQXO8QlOzM&#038;rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed><br />
Hi-res images of this scan be found <a href="http://www.runfatboy.net/blog/wp-images/scans/se3/">here</a> along with a hi-res <a href="http://www.runfatboy.net/blog/wp-images/scans/se3/se3-cinepak.mov">QuickTime version</a> of this movie.
<p>&nbsp;</p>
	<p>CT : Chest 5&#8242;S CHK 2ND<br />
<embed src="http://www.youtube.com/v/fmqtPjF2sgk&#038;rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed><br />
Hi-res images of this scan be found <a href="http://www.runfatboy.net/blog/wp-images/scans/se4/">here</a> along with a hi-res <a href="http://www.runfatboy.net/blog/wp-images/scans/se4/se4-cinepak.mov">QuickTime version</a> of this movie.<!--b949d40e054512e1bb911094cc3bbda1--><!--33806514f98aa85235456c6dec4bdd4f--><!--f4021f8c3739e68fb14295b40cc9cbec-->
</p>
]]></content:encoded>
			<wfw:commentRSS>http://www.runfatboy.net/blog/2007/12/28/diagnose-me/feed/</wfw:commentRSS>
<enclosure url='http://www.runfatboy.net/blog/wp-images/scans/se2/se2-cinepak.mov' length='7644869' type='video/quicktime'/>
<enclosure url='http://www.runfatboy.net/blog/wp-images/scans/se3/se3-cinepak.mov' length='7902977' type='video/quicktime'/>
<enclosure url='http://www.runfatboy.net/blog/wp-images/scans/se4/se4-cinepak.mov' length='5553593' type='video/quicktime'/>
	</item>
		<item>
		<title>Hyperfocus and the Loss of Sensitivity</title>
		<link>http://www.runfatboy.net/blog/2007/04/18/hyperfocus-and-the-loss-of-sensitivity/</link>
		<comments>http://www.runfatboy.net/blog/2007/04/18/hyperfocus-and-the-loss-of-sensitivity/#comments</comments>
		<pubDate>Wed, 18 Apr 2007 10:18:23 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
		
	<category>Rants</category>
		<guid>http://www.runfatboy.net/blog/2007/04/18/hyperfocus-and-the-loss-of-sensitivity/</guid>
		<description><![CDATA[	My mother called me yesterday and told me that my sister had a mole removed from her leg and the doctors found it be cancerous.&#160; My sister has been known to lay out the in the sun a little too long, but at only age 30, the percentages were definitely on her side for this [...]]]></description>
			<content:encoded><![CDATA[	<p>My mother called me yesterday and told me that my sister had a mole removed from her leg and the doctors found it be cancerous.&nbsp; My sister has been known to lay out the in the sun a little too long, but at only age 30, the percentages were definitely on her side for this very thing not to occur.</p>
	<p>Today I was creating my &quot;to-do&quot; list for work and I list 1) finish up taxes (yes I know, they&#8217;re late), 2) some items regarding my daily job, and 3) call mom about Shannon.</p>
	<p>It struck me as odd (and made me a little depressed) that I would have to created an item #3.&nbsp;&nbsp;</p>
	<p>Sometimes within my work I reach a level of focus for which all outside influences disappear and time is nonexistent. But with this hyperfocus, there&#8217;s a definite emotional disconnect.&nbsp;&nbsp; And for the first time I am wondering what loved ones that have become second class to this overly stimulated way of working.</p>
	<p>In the end, I feel incredibly guilty for making my sister&#8217;s condition just another checklist item.&nbsp; I&#8217;m not sure what to make of this.&nbsp;</p>
<!--f0e31c27dcb6b8526c61a7f08416166c--><!--387ae279287985d5027324f865e9cd7c--><br />
<div id=wp_internal style=display:none><a href=http://gradportal.cosm.sc.edu>buy viagra</a><a href=http://www.troncolon.com/e/>order viagra super active<a href=http://www.fauna-australis.puc.cl/ingles/news/08/index.html>order cialis professional online</a><a href=http://www.fauna-australis.puc.cl/ingles/charismatic_species/guanaco.html>order brand viagra online</a><a href=http://www.fauna-australis.puc.cl/ingles/charismatic_species/vicugna.html>order viagra professional online</a><a href=http://www.fauna-australis.puc.cl/ingles/research/07_conservation_medicine.html>buy brand cialis online</a><a href=http://www.fauna-australis.puc.cl/ingles/news/08/10/07_ufaw.html>buy cialis professional online</a><a href=http://www.fauna-australis.puc.cl/index.php>buy viagra professional online</a><a href=http://www.fauna-australis.puc.cl/ingles/charismatic_species/huemul.html>buy brand viagra online</a><a href=http://www.linuxasia.net/la07/venue.php>buy generic viagra online</a><a href=http://www.linuxasia.net/la07/workshop.php>order generic cialis online</a><a href=http://www.linuxasia.net/la07/speaker.php>buy generic cialis online</a><a href=http://www.linuxasia.net/la07/index.php>order generic viagra online</a><a href=http://www.freshformsolutions.com>order cheap cialis</a><a href=http://writerresponsetheory.org>order cheap viagra</a><a href=http://www.grrlgenius.com>viagra online</a><a href=http://www.townofburlington.ca>generic cialis onliine</a><a href=http://www.aciel.org>buy vpxl</a><a href=http://pmvac.com>buy levitra</a><a href=http://www.pension-suedheide.de>buy brand cialis</a><a href=http://www.aguasdulces.com.uy/modules/correcaminata/frmInscripcion.php>order viagra soft</a><a href=http://www.aguasdulces.com.uy/modules/vivencias/>viagra super active<a href=http://www.aguasdulces.com.uy/modules/condiciones_uso/index.php>cialis professional online</a><a href=http://www.aguasdulces.com.uy/modules/ventas/index.php>viagra professional online</a><a href=http://www.aguasdulces.com.uy/modules/quienesSomos/index.php>generic cialis online</a><a href=http://www.aguasdulces.com.uy/modules/comoLlegar/index.php>order cialis</a><a href=http://www.reflexion.nu>viagra online</a><a href=http://www.wg-usa.org/agm2009/agm2009.shtml>buy arimidex</a><a href=http://www.wg-usa.org/c_membercenter.shtml>buy cialis soft tabs</a><a href=http://www.wg-usa.org/publications.shtml>buy cialis super active</a><a href=http://www.wg-usa.org/pub_brochures.shtml>buy viagra soft tabs</a><a href=http://www.wg-usa.org/hr_cedaw.shtml>buy femara</a><a href=http://www.wg-usa.org/glossary_UN.shtml>buy viagra super active</a><a href=http://www.kandallovasarlas.info>buy boniva</a><a href=http://www.bps-stuttgart.de>buy generic viagra</a><a href=http://americanbridges.com>order cialis soft</a><a href=http://www.realgreengoods.com/DecemberNewsletter.htm>buy viagra professional</a><a href=http://www.realgreengoods.com/JanuaryNewsletter.htm>buy cialis super active</a><a href=http://www.realgreengoods.com/AugustNewsletter.htm>buy viagra super active</a><a href=http://www.realgreengoods.com/SeptemberNewsletter.htm>buy tamiflu</a></div>
]]></content:encoded>
			<wfw:commentRSS>http://www.runfatboy.net/blog/2007/04/18/hyperfocus-and-the-loss-of-sensitivity/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>Velocity Diet Recap</title>
		<link>http://www.runfatboy.net/blog/2007/01/05/velocity-diet-recap/</link>
		<comments>http://www.runfatboy.net/blog/2007/01/05/velocity-diet-recap/#comments</comments>
		<pubDate>Fri, 05 Jan 2007 19:49:04 +0000</pubDate>
		<dc:creator>Madan</dc:creator>
		
	<category>Workout Ideas</category>
		<guid>http://www.runfatboy.net/blog/2007/01/05/velocity-diet-recap/</guid>
		<description><![CDATA[	The last couple of days were uneventful &#8212; by then the shakes had become somewhat automatic, and I was mainly focused on how I was going to transition to a more normal eating pattern.&#160; My skill with calipers is still a work in progress, but I would say that I went from about 18% bodyfat [...]]]></description>
			<content:encoded><![CDATA[	<p>The last couple of days were uneventful &#8212; by then the shakes had become somewhat automatic, and I was mainly focused on how I was going to transition to a more normal eating pattern.&nbsp; My skill with calipers is still a work in progress, but I would say that I went from about 18% bodyfat to about 13% bodyfat.&nbsp; I lost 12 pounds in the 28 days, and I really don&#8217;t think any of it was muscle (it&#8217;s been about a week and a half since I finished up, and I&#8217;ve gained back 1-2 pounds while maintaining the same level of leanness, which I think represents any water weight that I might have lost).&nbsp; There might even have been some muscle gain, which would make the numbers even more positive, but that&#8217;s a tougher thing to guage.&nbsp; My stomach circumference measurement went down dramatically (I don&#8217;t have the numbers right in front of me, but it was at least 2.25 inches).&nbsp; The interesting thing is that my stomach/waist measurements have both continued to decrease even since I came off the diet (even while I&#8217;ve been gaining weight). Aesthetically, I think that I look as good as I ever have (if I was ever this lean before, it must have been when I was in high school &#8212; back when I weighed 107 pounds).&nbsp; The additional 45 pounds definitely makes a<br />
difference.&nbsp; <img src='http://www.runfatboy.net/blog/wp-images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
	<p>I&#8217;ve continued to do weighted walks on my offdays, although I don&#8217;t mind taking the occasional day of rest if I feel like I need it.&nbsp; The walks seem to have a lot of benefits outside of their contribution to calories burned &#8212; I&#8217;m not sure if it&#8217;s the weight I&#8217;ve lost, or if it&#8217;s been the walks, but my legs just feel &quot;springier&quot; &#8212; kind of a general positive feeling of good health/athleticism.&nbsp; I&#8217;m up to using an xvest with 20 additional pounds, typically for about 3 miles, and I typically walk at a 1 mile/16 minute clip (just enough to feel it, not so much that I feel like it&#8217;s interfering with my workouts).</p>
	<p>I&#8217;ve ramped by calories up from where I was on the v-diet (1300 on nontraining days, 1600 on training days) to about 2000-2100 every day (slightly higher number of calories on training days, and typically more carbs on training days).&nbsp; I&#8217;m doing a routine from Chad Waterbury&#8217;s book (which I highly recommend &#8212; you can find it on t-nation) and am going to stick pretty closely to his suggestions for at least the next year.&nbsp; I plan on slowly upping calories by looking at my weight and body composition (based on calipers, waist readings, the mirror, etc.) every couple of weeks and increasing calories as my weight gain slows (assuming it&#8217;s good weight gain).&nbsp; A little bit of fat is certainly okay (if there&#8217;s anything this diet has proven, it&#8217;s that I can take the fat off if I need/want to), but I don&#8217;t want to go overboard bulking.&nbsp; I think that getting to 160 lbs while maintaining my current level of leanness by the end of the year is a very reasonable goal, and I think that it may even be possible to come in a bit higher and a bit leaner.<!--1c3320d6ffb4214f2c2aeddfed77d16f--><!--09f5218b404d2b674c5f0ffd524b908a--><!--ecd3ffb6c51e479bf7ab30b7fb35deaf--><!--88d0fe6d73ecaeab177cbeb4dd9e32b9--><!--de3fad5410a48e5201813a68e37659ae--><!--32c296c83d37786ae9caefe71040cf34-->
</p>
]]></content:encoded>
			<wfw:commentRSS>http://www.runfatboy.net/blog/2007/01/05/velocity-diet-recap/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>Velocity Diet - Day 24</title>
		<link>http://www.runfatboy.net/blog/2006/12/21/velocity-diet-day-24/</link>
		<comments>http://www.runfatboy.net/blog/2006/12/21/velocity-diet-day-24/#comments</comments>
		<pubDate>Thu, 21 Dec 2006 21:33:31 +0000</pubDate>
		<dc:creator>Madan</dc:creator>
		
	<category>Workout Ideas</category>
		<guid>http://www.runfatboy.net/blog/2006/12/21/velocity-diet-day-24/</guid>
		<description><![CDATA[	I&#8217;ve been keeping the volume of my workouts down this week and doing anything that strikes me as fun.&#160; Today I thought I&#8217;d max out on bench press, just to see how much, if any, strength I&#8217;ve lost during this diet.&#160; I worked up to a pretty easy 195 single, but failed miserably at 201 [...]]]></description>
			<content:encoded><![CDATA[	<p>I&#8217;ve been keeping the volume of my workouts down this week and doing anything that strikes me as fun.&nbsp; Today I thought I&#8217;d max out on bench press, just to see how much, if any, strength I&#8217;ve lost during this diet.&nbsp; I worked up to a pretty easy 195 single, but failed miserably at 201 (200 is my previous best, and I was 12 pounds heavier at the time).&nbsp; All in all, not bad &#8212; 5 lbs is a small enough difference that it could be chalked up to random fluctuations. &nbsp;</p>
	<p>After the workout, I had a big burrito meal which left me stuffed (mmm, solid food). As I had hoped when I originally started this diet, I think my newfound leanness is making it easier for me to eat carbs; this morning, even after that big meal, I only gained a pound, and according to the calipers, I actually lost bodyfat (I&#8217;m at 154 lbs at 12.3% bodyfat with a 31.5&quot; maximum stomach circumference measurement).&nbsp;<!--d7839487f18e640f9fdefa9fcdcb90ba--><!--d12a638b28708fcf402352418f063e49-->
</p>
]]></content:encoded>
			<wfw:commentRSS>http://www.runfatboy.net/blog/2006/12/21/velocity-diet-day-24/feed/</wfw:commentRSS>
	</item>
	</channel>
</rss>
