<?xml version="1.0" encoding="UTF-8"?>
<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/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>

<channel>
	<title>Peep in my mind</title>
	<atom:link href="http://peepinmymind.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://peepinmymind.com</link>
	<description>CAD, Web, Graphics, Product Design, Cooking, Tips, Guide, Tutorials</description>
	<pubDate>Sat, 03 Jan 2009 19:24:48 +0000</pubDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>The Leagues or government should just ban fighting in hockey.</title>
		<link>http://peepinmymind.com/blabber/2009/01/the-leagues-or-government-should-just-ban-fighting-in-hockey/</link>
		<comments>http://peepinmymind.com/blabber/2009/01/the-leagues-or-government-should-just-ban-fighting-in-hockey/#comments</comments>
		<pubDate>Sat, 03 Jan 2009 19:24:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Blabber]]></category>

		<category><![CDATA[fighting]]></category>

		<category><![CDATA[hockey]]></category>

		<category><![CDATA[sports]]></category>

		<guid isPermaLink="false">http://peepinmymind.com/?p=55</guid>
		<description><![CDATA[After hearing the news of Don Sanderson I wasn’t sorry for him or his family because he died.  But I did feel that allowing players to fight in an uncontrolled environment is just ludicrous.  Although this is the first time someone has died in a hockey fight, there were some grim injuries from fight even [...]]]></description>
			<content:encoded><![CDATA[<p>After hearing the news of Don Sanderson I wasn’t sorry for him or his family because he died.  But I did feel that allowing players to fight in an uncontrolled environment is just ludicrous.  Although this is the first time someone has died in a hockey fight, there were some grim injuries from fight even before this.  If the leagues can’t control this they should just ban fighting in general so that players can keep their lives/careers instead of losing them to senseless fighting in the rinks.</p>
<p>Steve Maclntyre from the Oilers said “it’s part of the game,” and I’m sure a great number of players/fans think alike.  Players get frustrated and need to let off steam but that doesn’t mean they have to fight.  Even kids learn from their parents fighting is bad.  So how is it right in hockey?  I just don’t see the connection I would much rather watch a fast pace game of hockey and having to waste 3 min of my time watching two grown men fight like school girls.  If I wanted to watch a good fight I would go watch UFC / boxing match where the men can actually fight (where no one dies, or get knocked out into a coma because referees keep their fighters safe).</p>
<p>Folks may argue that because hockey is such a contact driven sport that players need to fight.  Well so are football and rugby, and fighting is not a norm in those sports.  Besides hockey I don’t think there is any other sport where fighting is allowed it’s just unprofessional. The hockey league should start changing the rules and make the game more exciting to watch for the fans and safer for the players.</p>
]]></content:encoded>
			<wfw:commentRss>http://peepinmymind.com/blabber/2009/01/the-leagues-or-government-should-just-ban-fighting-in-hockey/feed/</wfw:commentRss>
		</item>
		<item>
		<title>CSS Transparency and Rounded Corners Techniques</title>
		<link>http://peepinmymind.com/css/2008/12/css-transparency-and-rounded-corners-techniques/</link>
		<comments>http://peepinmymind.com/css/2008/12/css-transparency-and-rounded-corners-techniques/#comments</comments>
		<pubDate>Sat, 13 Dec 2008 05:37:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[CSS]]></category>

		<category><![CDATA[corners]]></category>

		<category><![CDATA[css3]]></category>

		<category><![CDATA[round]]></category>

		<category><![CDATA[rounded]]></category>

		<category><![CDATA[transparency]]></category>

		<guid isPermaLink="false">http://peepinmymind.com/?p=49</guid>
		<description><![CDATA[
After going through a few projects and picking up some css skills along the way here are some neat css tricks I’ve learned and found very helpful.  So helpful I figured I write somewhere so I can always find what I need instead of using google all the time. The first bit of code is [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://peepinmymind.com/css/2008/12/css-transparency-and-rounded-corners-techniques/"><img class="aligncenter size-full wp-image-50" title="css_transparency_rounded_corners" src="http://peepinmymind.com/wordpress/wp-content/uploads/2008/12/css_transparency_rounded_corners.jpg" alt="css_transparency_rounded_corners" width="498" height="213" /></a></p>
<p>After going through a few projects and picking up some css skills along the way here are some neat css tricks I’ve learned and found very helpful.  So helpful I figured I write somewhere so I can always find what I need instead of using google all the time. The first bit of code is setting transparency for objects like images and divs. it can be a nice effect for  setting transparent backgrounds behind some funky bg image.</p>
<p>Codes for setting transparency:</p>
<blockquote><p>For current firefox, safari browser<br />
opacity:0.7;</p>
<p>For firefox browser<br />
-moz-opacity:1.0;</p>
<p>For ie browser<br />
filter: alpha(opacity=100);</p></blockquote>
<p>Now here is something I&#8217;m completely stoked about and that is rounded corners.  I&#8217;m not sure about you but  I&#8217;ve always hated cutting out rounded corner images out just to make rounded corners(my blood is boiling just thinking of it).  Luckily the code below help eliminate most of these issues below are the code to create  rounded corners for safari and mozilla.  As for ie I don&#8217;t believe they support it yet but if you know they do please let me know ;D</p>
<p>Code for making rounded corners:<br />
<span id="more-49"></span></p>
<blockquote><p>For Safari browser:</p>
<p>this code sets all the corners<br />
-webkit-border-radius: 10px;</p>
<p>This set of code allows the user to specify which corner the user wants to be round.<br />
-webkit-border-top-left-radius:10px;<br />
-webkit-border-top-right-radius:10px;<br />
-webkit-border-bottom-radius:10px;<br />
-webkit-border-bottom-radius:10px;</p>
<p>For mozilla firefox browser:<br />
-moz-border-radius:10px;</p>
<p>This set of code allows the user to specify which corner the user wants to be round.<br />
-moz-border-radius-topleft:10px;<br />
-moz-border-radius-topright:10px;<br />
-moz-border-radius-bottomleft:10px;<br />
-moz-border-radius-bottomright:10px;</p></blockquote>
<p>ie currently doesn’t support rounded corners</p>
]]></content:encoded>
			<wfw:commentRss>http://peepinmymind.com/css/2008/12/css-transparency-and-rounded-corners-techniques/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Adobe Kuler making Color Template for Web Design easy</title>
		<link>http://peepinmymind.com/graphic-design-tips/2008/10/adobe-kuler-making-color-template-for-web-design-easy/</link>
		<comments>http://peepinmymind.com/graphic-design-tips/2008/10/adobe-kuler-making-color-template-for-web-design-easy/#comments</comments>
		<pubDate>Thu, 02 Oct 2008 20:39:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Graphic Design Tips]]></category>

		<category><![CDATA[adobe]]></category>

		<category><![CDATA[color]]></category>

		<category><![CDATA[kuler]]></category>

		<category><![CDATA[picker]]></category>

		<category><![CDATA[theme]]></category>

		<guid isPermaLink="false">http://peepinmymind.com/?p=47</guid>
		<description><![CDATA[
It can be very challenging trying to pick the right color template for a web site.  Especially if you’re dealing with colors you don’t typically use.   But don’t threat! Kuler is too the rescue! Kuler is a product created by Adobe.  It lets users generate their own color combination by choosing the following options:

Analogous
Monochromatic
Triad
Complementary
Compound
Shades
Custom

After the [...]]]></description>
			<content:encoded><![CDATA[<p><a title="adobe kuler" href="http://peepinmymind.com/graphic-design-tips/2008/10/adobe-kuler-making-color-template-for-web-design-easy/"><img class="aligncenter size-full wp-image-48" title="adobe_kuler" src="http://peepinmymind.com/wordpress/wp-content/uploads/2008/10/adobe_kuler.jpg" alt="" width="498" height="213" /></a></p>
<p>It can be very challenging trying to pick the right color template for a web site.  Especially if you’re dealing with colors you don’t typically use.   But don’t threat! Kuler is too the rescue! Kuler is a product created by Adobe.  It lets users generate their own color combination by choosing the following options:</p>
<ul>
<li>Analogous</li>
<li>Monochromatic</li>
<li>Triad</li>
<li>Complementary</li>
<li>Compound</li>
<li>Shades</li>
<li>Custom</li>
</ul>
<p>After the user has generated their color theme the user can save it to a place called &#8220;Mykuler&#8221;. Users can also save color themes as Adobe Swatch Exchange files (.ASE) where users can import and use in Adobe Creative Suite.  The online application is very easy to use so definitely give <a title="adobe kuler" href="http://kuler.adobe.com/">Kuler</a> a try.</p>
]]></content:encoded>
			<wfw:commentRss>http://peepinmymind.com/graphic-design-tips/2008/10/adobe-kuler-making-color-template-for-web-design-easy/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Creating web pages compatible to color bind viewers</title>
		<link>http://peepinmymind.com/graphic-design-tips/2008/10/creating-web-pages-compatible-to-color-bind-viewers/</link>
		<comments>http://peepinmymind.com/graphic-design-tips/2008/10/creating-web-pages-compatible-to-color-bind-viewers/#comments</comments>
		<pubDate>Wed, 01 Oct 2008 22:13:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Graphic Design Tips]]></category>

		<category><![CDATA[blindness]]></category>

		<category><![CDATA[color]]></category>

		<category><![CDATA[design]]></category>

		<category><![CDATA[tools]]></category>

		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://peepinmymind.com/?p=46</guid>
		<description><![CDATA[Generally designers have an excellent eye for detail and a skill to differentiate between the slightest color values.  Especially now with 32bit colors being able to be displayed on our monitors the color patellae seems to be endless.  Unfortunately an estimated 9 to 13 percent of males and under one percent of female population have [...]]]></description>
			<content:encoded><![CDATA[<p>Generally designers have an excellent eye for detail and a skill to differentiate between the slightest color values.  Especially now with 32bit colors being able to be displayed on our monitors the color patellae seems to be endless.  Unfortunately an estimated 9 to 13 percent of males and under one percent of female population have some form of color blindness.</p>
<p>Here are some color blindness definitions found on the web:</p>
<ul>
<li>Protanopia means difficulties to distinguish between blue and green colors and also between red and green colors, or no sensitivity to red.</li>
<li>Deuteranopia is blindness to green.</li>
<li>Tritanopia is blindness to blue-yellow.</li>
</ul>
<p>Designers who ignore color blindness can lose or confuse about 10 percent of potential viewers. To avoid this problem <a title="Color blindness test" href="http://www.vischeck.com/vischeck/vischeckURL.php">Vischeck</a> has a nice tool that will load your website, and display how people with these symptoms will view your site.  From there you can see how clearly your sites is readable and adjust your site.</p>
]]></content:encoded>
			<wfw:commentRss>http://peepinmymind.com/graphic-design-tips/2008/10/creating-web-pages-compatible-to-color-bind-viewers/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Warhammer Blogs is giving away a Collectors Edition of Warhammer Online</title>
		<link>http://peepinmymind.com/blabber/2008/08/warhammer-blogs-is-giving-away-a-collectors-edition-of-warhammer-online/</link>
		<comments>http://peepinmymind.com/blabber/2008/08/warhammer-blogs-is-giving-away-a-collectors-edition-of-warhammer-online/#comments</comments>
		<pubDate>Tue, 05 Aug 2008 03:16:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Blabber]]></category>

		<category><![CDATA[blog]]></category>

		<category><![CDATA[contest]]></category>

		<category><![CDATA[warhammer]]></category>

		<guid isPermaLink="false">http://peepinmymind.com/?p=45</guid>
		<description><![CDATA[This is awsome the guys at Warhammerblogs.com are giving out a copy of Warhammer Online collector edition.  What you have to do is simple just go to warhammerblogs.com/contest and post your favorite Warhammer quote on the comment section of that page.
The winner will be picked randomly and the contest ends August 8 12:00pm EST so [...]]]></description>
			<content:encoded><![CDATA[<p>This is awsome the guys at Warhammerblogs.com are giving out a copy of Warhammer Online collector edition.  What you have to do is simple just go to <a title="warhammer blogs contest" href="http://warhammerblogs.com/contest">warhammerblogs.com/contest</a> and post your favorite Warhammer quote on the comment section of that page.</p>
<p>The winner will be picked randomly and the contest ends August 8 12:00pm EST so hurry and post your comments today!</p>
]]></content:encoded>
			<wfw:commentRss>http://peepinmymind.com/blabber/2008/08/warhammer-blogs-is-giving-away-a-collectors-edition-of-warhammer-online/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Would I or should I not used Rapid Surfaces</title>
		<link>http://peepinmymind.com/product-design-tips/2008/07/would-i-or-should-i-not-used-rapid-surfaces/</link>
		<comments>http://peepinmymind.com/product-design-tips/2008/07/would-i-or-should-i-not-used-rapid-surfaces/#comments</comments>
		<pubDate>Fri, 11 Jul 2008 21:34:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Product Design Tips]]></category>

		<category><![CDATA[CAD]]></category>

		<category><![CDATA[manufacturing]]></category>

		<category><![CDATA[rapid surface]]></category>

		<category><![CDATA[surfacing]]></category>

		<category><![CDATA[tooling]]></category>

		<guid isPermaLink="false">http://peepinmymind.com/?p=43</guid>
		<description><![CDATA[
I get this question all that time, is it okay to use rapid surfaces for my final tooling? Well it really depends on what the object is. But there a few there is a few guide lines to follow if you do plan on rapid surfacing your data for tooling.

Do you plan to make any [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal"><a title="rapid surface" href="http://peepinmymind.com/product-design-tips/2008/07/would-i-or-should-i-not-used-rapid-surfaces/"><img class="aligncenter size-full wp-image-44" title="to_rapid_surface_or_not_to_rapid_surface" src="http://peepinmymind.com/wordpress/wp-content/uploads/2008/07/to_rapid_surface_or_not_to_rapid_surface.jpg" alt="rapid surfacing tips" width="400" height="288" /></a></p>
<p class="MsoNormal">I get this question all that time, is it okay to use rapid surfaces for my final tooling?<span> </span>Well it really depends on what the object is.<span> </span>But there a few there is a few guide lines to follow if you do plan on rapid surfacing your data for tooling.</p>
<p class="MsoNormal">
<p class="MsoNormal">Do you plan to make any changes with this data? If so how big are your changes going to be? Are you just adding or subtracting parts to the data?<span> </span>If so feel free to rapid surface it adding/subtracting stuff to rapid surfaces are easy.<span> </span>But if you plan to make changes like editing a fillet size or pushing and pulling surfaces I suggest you grab your trusty surfacing/CAD app and spend your time slowly modeling it.</p>
<p class="MsoNormal">
<p class="MsoNormal">Budget! Now that can a huge factor here especially for start ups, rapid surfacing can be super cost effective when it comes to creating a CAD model for manufacturing.<span> </span>Let’s use a golf club head for example.<span> </span>It would probably take weeks for a CAD modeler to generate an accurate model of such a complex object, but with rapid surfacing it could easily be done in a few hours with the accuracy of +/- 0.01.<span> </span>As long as you’re original data is good you’re good.</p>
<p class="MsoNormal">
<p class="MsoNormal">Now too quiet down the doubters in the surfacing world telling you that these surfaces are not good enough to manufacture with, and you will get a bad result out of it. That can be true if you had bad data to begin with.<span> </span>I’ve been doing for years which might not mean much, but if Ford can use rapid surface to rebuild tools why can’t you?<span> </span>Just make sure the data you’re surfacing from looks close to perfect compared to the original.<span> </span>If your object is since and smooth make sure your data looks nice and smooth, or if your data is covered with texture like a tree bark make sure your data should looks just like it and you will be okay.<span> </span>A good way to sum it up rapid surfaces is “What you see is what you get!”</p>
]]></content:encoded>
			<wfw:commentRss>http://peepinmymind.com/product-design-tips/2008/07/would-i-or-should-i-not-used-rapid-surfaces/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Animated Diablo 3 Cell Phone Theme</title>
		<link>http://peepinmymind.com/themes/2008/07/animated-diablo-3-cell-phone-theme/</link>
		<comments>http://peepinmymind.com/themes/2008/07/animated-diablo-3-cell-phone-theme/#comments</comments>
		<pubDate>Sat, 05 Jul 2008 02:31:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Themes]]></category>

		<category><![CDATA[animated]]></category>

		<category><![CDATA[Cell Phone]]></category>

		<category><![CDATA[diablo]]></category>

		<category><![CDATA[Ericsson]]></category>

		<category><![CDATA[Sony]]></category>

		<category><![CDATA[theme]]></category>

		<guid isPermaLink="false">http://peepinmymind.com/?p=41</guid>
		<description><![CDATA[
An animated Diablo 3 sony ericsson cell phone theme .
Feel free to post it anywhere but please put a link back to “http://peepinmymind.com/” Thanks!
Theme for Sony Ericsson with screen of 176&#215;220 (z610,k610,618,z710,W710)
Theme for Sony Ericsson with screen of 240&#215;320 (k800, W850, k790)
]]></description>
			<content:encoded><![CDATA[<p><a title="diablo 3 theme" href="http://peepinmymind.com/themes/2008/07/animated-diablo-3-cell-phone-theme/"><img class="aligncenter size-full wp-image-42" title="diablo 3 animated cell phone theme" src="http://peepinmymind.com/wordpress/wp-content/uploads/2008/07/diablo.jpg" alt="diablo 3 theme" width="400" height="288" /></a></p>
<p>An animated Diablo 3 sony ericsson cell phone theme .<br />
Feel free to post it anywhere but please put a link back to “http://peepinmymind.com/” Thanks!</p>
<p><a title="Diablo 3 theme" href="http://mysite.lasyk.net/jicks-preview-120738-Animated.Diablo.3.html">Theme for Sony Ericsson with screen of 176&#215;220 (z610,k610,618,z710,W710)</a></p>
<p><a title="Diablo 3 theme" href="http://mysite.lasyk.net/jicks-preview-120737-Animated.Diablo.3.html">Theme for Sony Ericsson with screen of 240&#215;320 (k800, W850, k790)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://peepinmymind.com/themes/2008/07/animated-diablo-3-cell-phone-theme/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Warhammer Online Squig Entry</title>
		<link>http://peepinmymind.com/blabber/2008/06/warhammer-online-squig-entry/</link>
		<comments>http://peepinmymind.com/blabber/2008/06/warhammer-online-squig-entry/#comments</comments>
		<pubDate>Sat, 28 Jun 2008 00:19:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Blabber]]></category>

		<category><![CDATA[squig]]></category>

		<category><![CDATA[warhammer beta]]></category>

		<category><![CDATA[warhammer online]]></category>

		<guid isPermaLink="false">http://peepinmymind.com/?p=39</guid>
		<description><![CDATA[

Warhammer Online is currently having a Squig contest.  The contest is pretty simple go download Spore Creature Creator and make your own version of a Squig.  Once that is done post it on youtube and submit your entry to war-contests@ea.com.  Oh make sure u signed up on warhammer online.  Contest ends [...]]]></description>
			<content:encoded><![CDATA[<p><!-- google_ad_section_start(weight=ignore) --><br />
<a title="warhammer online squig" href="http://peepinmymind.com/uncategorized/2008/06/warhammer-online-squig-entry/"><img class="aligncenter size-full wp-image-40" title="warhammer_online_squig" src="http://peepinmymind.com/wordpress/wp-content/uploads/2008/06/warhammer_online_squig.jpg" alt="" width="400" height="288" /></a></p>
<p>Warhammer Online is currently having a Squig contest.  The contest is pretty simple go download <a title="Spore Creature Creator" href="http://www.spore.com">Spore Creature Creator</a> and make your own version of a Squig.  Once that is done post it on youtube and submit your entry to <a href="mailto:war-contests@ea.com"><span style="font-family: tahoma; color: #c90004; font-size: x-small;">war-contests@ea.com</span></a>.  Oh make sure u signed up on <a title="Warhammer Online" href="http://www.warhammeronline.com/">warhammer online</a>.  Contest ends July 14, 2008.</p>
<p>Here is my Squig entry for warhammer online.  I wanted to do a bit more with it but since the free version is very limited this is the best I can do for now.  Good luck to everyone who is entering! and here is a link to the <a title="Warhammer Online Squig Video" href="http://www.youtube.com/watch?v=niQcjHoM774">video</a> of my Squig.<br />
<!-- google_ad_section_end --></p>
]]></content:encoded>
			<wfw:commentRss>http://peepinmymind.com/blabber/2008/06/warhammer-online-squig-entry/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Final Fantasy Advent Children Cloud Animated Cell Phone Theme</title>
		<link>http://peepinmymind.com/themes/2008/06/final-fantasy-advent-children-cloud-animated-cell-phone-theme/</link>
		<comments>http://peepinmymind.com/themes/2008/06/final-fantasy-advent-children-cloud-animated-cell-phone-theme/#comments</comments>
		<pubDate>Sun, 22 Jun 2008 21:39:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Themes]]></category>

		<category><![CDATA[Cell Phone]]></category>

		<category><![CDATA[Ericsson]]></category>

		<category><![CDATA[Final Fantasy]]></category>

		<category><![CDATA[Sony]]></category>

		<guid isPermaLink="false">http://peepinmymind.com/?p=37</guid>
		<description><![CDATA[

An animated theme with Cloud from Final Fantasy Advent Children.
Feel free to post it anywhere but please put a link back to “http://peepinmymind.com/” Thanks!
 For Sony Ericsson with screen of 176&#215;220 (z610,k610,618,z710,W710)
 For Sony Ericsson with screen of 240&#215;320 (k800, W850, k790)

]]></description>
			<content:encoded><![CDATA[<p><!-- google_ad_section_start(weight=ignore) --><br />
<a title="Final Fantasy Cloud" href="http://peepinmymind.com/themes/2008/06/final-fantasy-advent-children-cloud-animated-cell-phone-theme/"><img class="aligncenter size-full wp-image-38" title="final-fantasy-advent-children-cloud-theme" src="http://peepinmymind.com/wordpress/wp-content/uploads/2008/06/final-fantasy-advent-children-cloud-theme.jpg" alt="Final Fantasy Advent Children Cloud Theme" width="400" height="288" /></a></p>
<p>An animated theme with Cloud from Final Fantasy Advent Children.<br />
Feel free to post it anywhere but please put a link back to “http://peepinmymind.com/” Thanks!</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="100" height="100" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="flashvars" value="item_key=477-2-296329-424046799-1" /><param name="src" value="http://embed.zedge.net/embed/zsw-embed.swf" /><param name="wmode" value="transparent" /><embed type="application/x-shockwave-flash" width="100" height="100" src="http://embed.zedge.net/embed/zsw-embed.swf" wmode="transparent" flashvars="item_key=477-2-296329-424046799-1"></embed></object> <a title="Final Fantasy Advent Children Cloud Cell Phone Theme" href="http://www.zedge.net/themes/296329/final-fantasy-cloud-theme/">For Sony Ericsson with screen of 176&#215;220 (z610,k610,618,z710,W710)</a></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="100" height="100" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="flashvars" value="item_key=452-2-296331-401824836-1" /><param name="src" value="http://embed.zedge.net/embed/zsw-embed.swf" /><param name="wmode" value="transparent" /><embed type="application/x-shockwave-flash" width="100" height="100" src="http://embed.zedge.net/embed/zsw-embed.swf" wmode="transparent" flashvars="item_key=452-2-296331-401824836-1"></embed></object> <a title="Final Fantasy Advent Children Cloud Cell Phone Theme" href="http://www.zedge.net/themes/296331/final-fantasy-cloud-theme/">For Sony Ericsson with screen of 240&#215;320 (k800, W850, k790)</a><br />
<!-- google_ad_section_end --></p>
]]></content:encoded>
			<wfw:commentRss>http://peepinmymind.com/themes/2008/06/final-fantasy-advent-children-cloud-animated-cell-phone-theme/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Hpnotiq Freeze Cocktail Recipe</title>
		<link>http://peepinmymind.com/cooking_recipe/2008/06/hpnotiq-freeze-cocktail-recipe/</link>
		<comments>http://peepinmymind.com/cooking_recipe/2008/06/hpnotiq-freeze-cocktail-recipe/#comments</comments>
		<pubDate>Mon, 16 Jun 2008 23:54:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Cooking Recipe]]></category>

		<category><![CDATA[bartend school]]></category>

		<category><![CDATA[bartending classes]]></category>

		<category><![CDATA[bartending school]]></category>

		<category><![CDATA[cocktail recipe]]></category>

		<category><![CDATA[Hpnotiq]]></category>

		<category><![CDATA[hpnotiq Freeze]]></category>

		<guid isPermaLink="false">http://peepinmymind.com/?p=35</guid>
		<description><![CDATA[

So a friend of mine brought over a bottle of Hpnotiq last night with some warm 7up.  Now usually I would be jumping for joy but the Hpnotiq was warm, and I had no ice.  But luckily I had some Freezies!  So we grabbed some blue and white freezies and mixed it [...]]]></description>
			<content:encoded><![CDATA[<p><!-- google_ad_section_start(weight=ignore) --><br />
<a title="hpnotiq freeze" href="http://peepinmymind.com/cooking_recipe/2008/06/hpnotiq-freeze-cocktail-recipe/"><img class="aligncenter size-full wp-image-36" title="hpnotiq-freeze" src="http://peepinmymind.com/wordpress/wp-content/uploads/2008/06/hpnotiq-freeze.jpg" alt="Hpnotiq Freeze Cocktail Recipe " width="400" height="288" /></a></p>
<p>So a friend of mine brought over a bottle of Hpnotiq last night with some warm 7up.  Now usually I would be jumping for joy but the Hpnotiq was warm, and I had no ice.  But luckily I had some Freezies!  So we grabbed some blue and white freezies and mixed it in our drink! and OMG was it ever good!  So without further adieu here is my Hpnotiq Freeze recipe.</p>
<p>3 - 4 oz of warm Hpnotiq.</p>
<p>2 -3 Small Blue or White Freezies.</p>
<p>Take the Hpnotiq and Freezies dump them in your shaker and shake it till the Freezie has melted.  If you don&#8217;t have a shaker just dump it in the glass and twirl the Freezies in the glass.  Cheers<br />
<!-- google_ad_section_end --></p>
]]></content:encoded>
			<wfw:commentRss>http://peepinmymind.com/cooking_recipe/2008/06/hpnotiq-freeze-cocktail-recipe/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
