<?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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Welcome to [ Tapsi-Blog ]</title>
	<atom:link href="http://kikoy500.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://kikoy500.wordpress.com</link>
	<description>"Where Software meets Hardware"</description>
	<lastBuildDate>Thu, 25 Oct 2007 16:55:15 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='kikoy500.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/0e7c219748be0d0333d327fd542db6b4?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Welcome to [ Tapsi-Blog ]</title>
		<link>http://kikoy500.wordpress.com</link>
	</image>
			<item>
		<title>USB Ubuntu 7.10 Gutsy Gibbon install</title>
		<link>http://kikoy500.wordpress.com/2007/10/25/usb-ubuntu-710-gutsy-gibbon-install/</link>
		<comments>http://kikoy500.wordpress.com/2007/10/25/usb-ubuntu-710-gutsy-gibbon-install/#comments</comments>
		<pubDate>Thu, 25 Oct 2007 16:55:15 +0000</pubDate>
		<dc:creator>kikoy500</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://kikoy500.wordpress.com/2007/10/25/usb-ubuntu-710-gutsy-gibbon-install/</guid>
		<description><![CDATA[

   
USB Ubuntu 7.10 install from Linux: This tutorial enables you to install, boot and run Ubuntu 7.10 (Gutsy Gibbon) from USB. In addition to installing Ubuntu to a USB device and then booting Ubuntu from USB, this tutorial will enable you to automatically save your changes and settings back to the stick [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kikoy500.wordpress.com&blog=1282692&post=48&subd=kikoy500&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><h1><a href="http://www.pendrivelinux.com/2007/09/28/usb-ubuntu-710-gutsy-gibbon-install/" rel="bookmark" title="USB Ubuntu 7.10 Gutsy Gibbon install"><br />
</a></h1>
<p style="float:left;margin:4px;"><!-- google_ad_client = "pub-0932618358223805"; google_alternate_color = "FFFFFF"; google_ad_width = 300; google_ad_height = 250; google_ad_format = "300x250_as"; google_ad_type = "text_image"; google_ad_channel = ""; //-->   </p>
<p><em><strong>USB Ubuntu 7.10 install from Linux</strong></em>: This tutorial enables you to install, boot and run Ubuntu 7.10 (Gutsy Gibbon) from USB. In addition to installing Ubuntu to a USB device and then booting Ubuntu from USB, this tutorial will enable you to automatically save your changes and settings back to the stick and further restore them on each boot using a second <em>&#8220;casper-rw&#8221;</em> persistent partition. The tutorial was written for those already familiar with working from Ubuntu or another Linux desktop environment. If you do not have access to or prefer not to use a Windows computer, this Ubuntu Linux on a stick tutorial is for you.</p>
<p><span></span> Ubuntu 7.10 takes slightly longer to boot than previous releases. However, once it&#8217;s up and running, it performs much better than running from the Live CD.</p>
<p><strong>USB Ubuntu 7.10  Essentials:</strong></p>
<ul>
<li><font color="#0066ff">Ubuntu7.10 ISO</font></li>
<li><font color="#0066ff">CD Burner </font></li>
<li><font color="#0066ff">1GB USB flash drive (2GB+ recommended)<br />
</font></li>
<li><font color="#0066ff">U710fix.tar</font></li>
</ul>
<p><strong>Ubuntu 7.10 USB installation tutorial:</strong></p>
<p><strong><font color="#800000">Hint:</font></strong> You can drastically speed up the install by Copying (<strong>Ctrl+c</strong>) and Pasting (<strong>Ctrl+v</strong>) commands into the terminal instead of manually typing them out. With the exception of replacing <strong>X</strong> with your drive letter.</p>
<ol>
<li>Grab the <a href="http://releases.ubuntu.com/7.10/ubuntu-7.10-desktop-i386.iso" title="Ubuntu 7.10 Download" target="_blank">Ubuntu 7.10</a> ISO and burn it to a CD</li>
<li>Insert the CD and your USB flash drive</li>
<li>Reboot your computer into Ubuntu from the Live CD</li>
<li>Open a terminal window and type <strong>sudo su</strong></li>
<li>Type <strong>fdisk -l </strong>to list available drives/partitions. Note which device is your flash drive (example: <strong>/dev/sda</strong>) Throughout this tutorial, replace <strong>x</strong> with your flash drive letter. For example, if your flash drive is <strong>sdb</strong>, replace <strong>x</strong> with <strong>b</strong>.</li>
<li>Type <strong>umount /dev/sdx1</strong></li>
<li>Type <strong>fdisk /dev/sdx</strong>
<ul>
<li>type <strong>p</strong> to show the existing partition and <strong>d</strong> to delete it</li>
<li>type <strong>p </strong>again to show any remaining partitions (if partitions exist, repeat the previous step)</li>
<li>type <strong>n </strong>to make a new partition</li>
<li>type <strong>p</strong> for primary partition</li>
<li>type <strong>1</strong> to make this the first partition</li>
<li>hit enter to use the default 1st cylinder</li>
<li>type <strong>+750M</strong> to set the partition size</li>
<li>type <strong>a</strong> to make this partition active</li>
<li>type <strong>1</strong> to select partition 1</li>
<li>type <strong>t</strong> to change the partition filesystem</li>
<li>type <strong>6</strong> to select the fat16 file system</li>
<li>type <strong>n</strong> to make another new partition</li>
<li>type <strong>p</strong> for primary partition</li>
<li>type <strong>2</strong> to make this the second partition</li>
<li>hit enter to use the default cylinder</li>
<li>hit enter again to use the default last cylinder</li>
<li>type <strong>w</strong> to write the new partition table</li>
</ul>
</li>
<li>Type <strong>umount /dev/sdx1</strong> to ensure the 1st partition is unmounted</li>
<li>Type <strong>mkfs.vfat -F 16 -n ubuntu710 /dev/sdx1</strong> to format the first partition</li>
<li>Type <strong>umount /dev/sdx2</strong>  just to ensure the 2nd partition is unmounted</li>
<li>Type <strong>mkfs.ext2 -b 4096 -L casper-rw /dev/sdx2 </strong>to format the second partition</li>
<li>Remove and Re-insert your flash drive</li>
<li>Back at the terminal, type <strong>apt-get update</strong></li>
<li>Type <strong>apt-get install syslinux mtools<br />
</strong></li>
<li>Type <strong>syslinux -sf /dev/sdx1</strong></li>
<li>Type <strong>cd /cdrom</strong></li>
<li>Type <strong>cp -rf casper disctree dists install pics pool preseed .disk isolinux/* md5sum.txt README.diskdefines ubuntu.ico casper/vmlinuz </strong><strong>casper/initrd.gz </strong><strong>/media/ubuntu710/</strong></li>
<blockquote><p>Ignore any <strong>&#8220;cannot create symbolic link&#8221; </strong>errors<strong><br />
</strong></p></blockquote>
<li>Type <strong>cd /home/ubuntu</strong></li>
<li>Type <strong>wget pendrivelinux.com/downloads/U710fix.zip</strong></li>
<li>Type <strong>unzip -o -d /media/ubuntu710/ U710fix.zip</strong></li>
<li>Restart your computer, set your BIOS or Boot menu to boot from the USB device and reboot again.</li>
</ol>
<p>You should now have a USB Ubuntu 7.10 Gutsy Gibbon flash drive that should automatically save your changes, restoring them on boot.</p>
<p><strong>Note:</strong> If your having trouble getting Ubuntu to boot, your memory stick may have a corrupted MBR. To repair the MBR of your USB device, at the terminal type <strong>sudo apt-get install lilo</strong> then type <strong>lilo -M /dev/sdx</strong> (replacing x with the letter of your flash device)</p>
<p>Ubuntu® is registered trademark of <a href="http://www.ubuntu.com/" target="_blank" title="Ubuntu Home page">Canonical ltd</a>.</p>
<p>WE OFFER NO WARRANTY REGARDING THE INFORMATION PROVIDED, AND DISCLAIM LIABILITY FOR ANY DAMAGES RESULTING FROM ITS USE!</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/kikoy500.wordpress.com/48/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/kikoy500.wordpress.com/48/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kikoy500.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kikoy500.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kikoy500.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kikoy500.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kikoy500.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kikoy500.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kikoy500.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kikoy500.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kikoy500.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kikoy500.wordpress.com/48/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kikoy500.wordpress.com&blog=1282692&post=48&subd=kikoy500&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://kikoy500.wordpress.com/2007/10/25/usb-ubuntu-710-gutsy-gibbon-install/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/698bce7bfab37b730b4e6ad4c9fc4992?s=96&#38;d=identicon" medium="image">
			<media:title type="html">kikoy500</media:title>
		</media:content>
	</item>
		<item>
		<title>Squash self-doubt, find your confidence</title>
		<link>http://kikoy500.wordpress.com/2007/10/11/squash-self-doubt-find-your-confidence/</link>
		<comments>http://kikoy500.wordpress.com/2007/10/11/squash-self-doubt-find-your-confidence/#comments</comments>
		<pubDate>Thu, 11 Oct 2007 20:10:43 +0000</pubDate>
		<dc:creator>kikoy500</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://kikoy500.wordpress.com/2007/10/11/squash-self-doubt-find-your-confidence/</guid>
		<description><![CDATA[   (Oprah.com) &#8212; You step into the party feeling reasonably confident. True, your favorite little black dress feels somewhat tight, but it&#8217;s still elegant, and the wind outside only tousled your hair a little.

&#160;

&#160;
You are probably getting far less attention than you worry about.

 Then, just as you&#8217;re preparing to mingle, it happens: [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kikoy500.wordpress.com&blog=1282692&post=47&subd=kikoy500&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>   <strong>(<u><a href="http://www2.oprah.com/index.jhtml?cnn=yes" target="new">Oprah.com</a></u>)</strong> &#8212; You step into the party feeling reasonably confident. True, your favorite little black dress feels somewhat tight, but it&#8217;s still elegant, and the wind outside only tousled your hair a little.</p>
<p><!--startclickprintexclude--></p>
<p class="cnnStoryPhotoBox">&nbsp;</p>
<p class="cnnImgChngr"><!--===========IMAGE============--><img src="http://i.l.cnn.net/cnn/2007/LIVING/personal/10/03/self.consciousness/art.self.o.jpg" alt="art.self.o.jpg" border="0" height="219" width="292" /><!--===========/IMAGE===========--></p>
<p class="cnnStoryPhotoCaptionBox">&nbsp;</p>
<p class="cnn3pxTB9pxLRPad"><!--===========CAPTION==========-->You are probably getting far less attention than you worry about.<!--===========/CAPTION=========--></p>
<p class="cnnWireBoxFooter"><img src="http://edition.cnn.com/.element/img/2.0/mosaic/base_skins/baseplate/corner_wire_BL.gif" height="4" width="4" /><span id="more-47"></span></p>
<p><!--endclickprintexclude--> Then, just as you&#8217;re preparing to mingle, it happens: You pass a mirror and glimpse your reflection &#8212; your horrifying, horrifying reflection.</p>
<p>Your hair looks as though a crazed weasel nested, bore young, and died there.</p>
<p>Aghast, you wobble off your high heels and sprain an ankle. All eyes are glued on you. All conversation focuses on your disgrace. Everyone begins texting hilarious descriptions of you from their cell phones.</p>
<p>In your dreams, baby.</p>
<p>I mean this both literally and figuratively. Most of us occasionally dream about being embarrassed in social settings. But even in waking life, many of us operate as if Simon Cowell is doing a play-by-play of our work, wardrobe and snack choices.</p>
<p>One team of researchers has dubbed this phenomenon the &#8220;spotlight effect.&#8221; In the beam of imaginary spotlights, many of us suffer untold shame and create smaller, weaker, less zestful lives than we deserve. Terrified that the neighbors might gossip, the critics might sneer, the love letter might fall into the hands of evil bloggers, we never even allow our minds to explore what our hearts may be calling us to do.</p>
<p>These efforts to avoid embarrassment often keep us from imagining, let alone fulfilling, the measure of our destiny. To claim it, we need to develop a mental dimmer switch.</p>
<p><strong>Turning the lights down low</strong></p>
<p><!--startclickprintexclude--></p>
<p class="cnnStoryElementBox">&nbsp;</p>
<h4>Don&#8217;t Miss</h4>
<ul class="cnnRelated">
<li> Oprah.com:  <a href="http://www2.oprah.com/omagazine/200709/omag_200709_life.jhtml?promocode=CNNselfRLreallydo?cnn=yes" target="new">What do you really want to do with your life?</a></li>
<li> Oprah.com:  <a href="http://www2.oprah.com/omagazine/200708/omag_200708_worry.jhtml?promocode=CNNselfRLworry?cnn=yes" target="new">Seven things you can stop worrying about right now!</a></li>
<li> Oprah.com:  <a href="http://www2.oprah.com/presents/2006/upgrade/personal/personal_101.jhtml?promocode=CNNselfRLimprove?cnn=yes" target="new">How to improve yourself from the inside out</a></li>
</ul>
<p><!--endclickprintexclude--> Thomas Gilovich, Ph.D., Victoria Husted Medvec, Ph.D., and Kenneth Savitsky, Ph.D., the psychologists who coined the term spotlight effect, also devised numerous ways to measure it.</p>
<p>In one experiment, they had college students enter a room with other students while wearing an &#8220;embarrassing&#8221; T-shirt. (The shirt bore the likeness of a certain singer, whom I won&#8217;t identify here. I will say that for days after reading this study, I was medically unable to stop humming &#8220;Copacabana.&#8221;)</p>
<p>When the mortified students were asked to guess how many people in the room would remember the face on their T-shirt, they gave a number about twice as high as the number of students who actually remembered the shirt.</p>
<p>Other studies support what this one suggested: The spotlight effect makes most of us assume we&#8217;re getting about twice as much attention as we actually are. When Lincoln said, &#8220;The world will little note nor long remember what we say here,&#8221; he was wrong &#8212; but only because he was president of the United States.</p>
<p>If you are currently president, rest assured that millions will note and long remember if, say, you barf on the prime minister of Japan. However, if you are not president, you&#8217;re probably pointlessly blinded by the glare of imaginary social judgments.</p>
<p>These judgments aren&#8217;t limited just to times when we mess up. Our distorted perceptions mean we not only exaggerate the impact of our errors but also undersell our inspirations and contributions. For example:</p>
<p>•You modestly mumble an idea in a meeting, assuming that co-workers will be awestruck if they like it, appalled if they don&#8217;t. Net effect: Nobody really hears the idea &#8211;until the annoying extrovert across the table repeats it more loudly, and gets all the glory.</p>
<p>•You wear clothes a bit duller and more concealing than the ones you love, only to look back years later and wish you&#8217;d bared and dared more in your youth. (As one of my friends sighed about her self-conscious daughter, &#8220;If she only realized that at her age, you&#8217;re beautiful even if you&#8217;re not beautiful.&#8221;)</p>
<p>•You sing, swing, and mamba only in the privacy of your home, never with other people. Repressing the urge to sing &#8220;Copacabana,&#8221; you miss the joy of sharing silly or sultry abandon with the people you love &#8212; and the people you may never get to love because inhibition robs you of the confidence needed to form a bond.</p>
<p>These self-limiting behaviors have no positive side; contrary to what many assume, they rarely save us from doing things we&#8217;ll later regret. In fact, Gilovich and Medvec have found in other studies that, in the long run, people most often regret the things they failed to try, rather than the things they bombed at. Trying yields either success or an opportunity to learn; not trying has no positive result besides avoiding mockery or envy that (research shows) wouldn&#8217;t be nearly as big or bad as we fear.</p>
<p><strong>How to free yourself from</strong> <strong>the glare</strong></p>
<p><strong>Double everything</strong></p>
<p>Just knowing that the spotlight effect is real and ubiquitous can begin to liberate us from its inhibiting clutches.</p>
<p>I find it very comforting to have an actual number associated with my shame-based illusions: Spotlight effect studies suggest that people typically pay about 50 percent as much attention to me as I think they are. The first time I actually stood under a spotlight, in a high school play, the director told me, &#8220;Small gestures look embarrassed, so they&#8217;re embarrassing. If you&#8217;re going to do something, and you don&#8217;t want to look foolish, do it BIG.&#8221;</p>
<p>Now, thanks to Gilovich, Medvec and Savitsky, I know how big to make my actions &#8212; about twice as big as I think they should be.</p>
<p>I&#8217;ve been experimenting with this in many different circumstances: raising both my hands, instead of one, to ask a question of a lecturer I much admire; pausing twice as long for dramatic effect while telling a story to some friends; eating two servings of a fabulous dessert at a literary club luncheon.</p>
<p>The result? I do seem to have attracted more attention, but rather than the disapproving judgment I expected, most people seem to feel pleased and liberated, made safer in their own skin by my willingness to live large in mine.</p>
<p>I believe this reaction is a major reason a lovely lady from Hawaii named Brook Lee once won the Miss Universe pageant. When asked what she&#8217;d do if she had no rules to follow, she replied, &#8220;I would eat everything in the whole world &#8212; twice!&#8221; That one word &#8212; &#8220;twice!&#8221; &#8212; struck a chord with me, the audience and the judges, landing Ms. Lee squarely beneath the spotlight she actually wanted.</p>
<p>Why not join her by doubling the social behaviors you usually limit: the energy with which you communicate, the intensity of the colors you wear, the number of times you laugh, the clarity of the opinions you voice. You may think this will attract massive disapproval from others. Actually, you&#8217;ll be lucky to attract more than a passing glance, and my experience (not to mention Ms. Lee&#8217;s) suggests it will be more approving than not.</p>
<p><strong>Think through your limits &#8212; not to them</strong></p>
<p>&#8220;You can&#8217;t break that board by hitting it,&#8221; my karate teacher told me. &#8220;Hit something 10 inches behind it. As far as you&#8217;re concerned, the board doesn&#8217;t even exist.&#8221;</p>
<p>&#8220;But,&#8221; I pointed out, &#8220;it does exist.&#8221; (I am a trained observer.)</p>
<p>My sensei shrugged. &#8220;That&#8217;s what you think.&#8221;</p>
<p>Mentally noting that this man had been hit in the head many, many times, I proceeded to batter my hands to smithereens, trying to break that unbreakable board. When every knuckle was swollen, tender and bleeding, I said, &#8220;My hands hurt.&#8221;</p>
<p>&#8220;Yes,&#8221; said my sensei. &#8220;Your mind is really damaging them.&#8221;</p>
<p>You get the metaphor: We smash into barriers of shame, embarrassment and regret because we pull our punches in myriad social situations. Stopping at what we think is the limit of embarrassing behavior, we let others claim the credit, the opportunity, the job, the person we love from afar.</p>
<p>The next time you feel performance anxiety in any form, remember that the negative attention you fear does not exist except in your mind &#8212; if this works with the hard, cold reality of my ice block, I guarantee it will work with something as vaporous as other people&#8217;s opinions.</p>
<p>Act as if there is no spotlight on you, even if there is one. Say, do, and be what you would if no one else were looking. It will be scary at first, but if you persist, there will come that liberating moment when you&#8217;ll feel yourself sailing straight through your life&#8217;s most inhibiting barriers without even feeling a bump.</p>
<p><strong>Ask yourself the universal question</strong></p>
<p>Once, I had an intense, emotional cell phone discussion with a friend while riding in a taxi. At a certain point I fell into a strangled silence.</p>
<p>&#8220;What&#8217;s wrong with you?&#8221; my friend asked. &#8220;Why aren&#8217;t you talking?&#8221;</p>
<p>Covering my mouth with one hand, I whispered, &#8220;The driver can hear me.&#8221;</p>
<p>At this point, my friend said something so lucid, so mind expanding, so simultaneously Socratic and Zenlike, that I memorized it on the spot. I&#8217;ve gained comfort by repeating it to myself in many other situations. I encourage you, too, to memorize this question and use it when you find yourself shrinking back from an imaginary spotlight. My friend said &#8212; and I quote:</p>
<p>&#8220;So?&#8221;</p>
<p>This brilliant interrogatory challenged me to consider the long-term consequences of being embarrassed (really, who cares?). It reminded me that failing to act almost always leaves me with more regret than taking embarrassing action.</p>
<p>Here are a few instances where the Universal Question might help a person break through imprisoning inhibitions:</p>
<p>&#8220;If I say what I really think, people might disagree with me.&#8221;</p>
<p>So?</p>
<p>&#8220;If I leave my drunken abusive husband, his crazy family will call me a bitch.&#8221;</p>
<p>So?</p>
<p>&#8220;If I go windsurfing, I&#8217;ll look like a klutz. Plus, people will see my cellulite.&#8221;</p>
<p>So?</p>
<p>There are endless applications for the Universal Question. I suggest using it every time you feel yourself hesitating to do something that might deepen or broaden your life. The answer to the question &#8220;So?&#8221; is almost always &#8220;Well, when you put it that way&#8230;&#8221; It pushes us into the spotlight, showing us we can survive there and freeing us to act on our best instincts.</p>
<p>Today, remember that what you perceive as prudent social caution is probably limiting your life to about half its natural capacity; that if you did everything you long to do twice as often, twice as boldly, twice as openly, you wouldn&#8217;t attract a shred more social pressure than you already think you&#8217;re getting.</p>
<p>Consider that vaulting well past the limits of your inhibitions will probably earn you more positive attention than negative judgment. More often than not, this will work out well.</p>
<p>If it doesn&#8217;t, remember the most enlightening of questions: &#8220;So?&#8221; Little by little, you&#8217;ll feel and see that the worst consequences of living in the light are less oppressive than the best advantages of hiding in the shadows. And you&#8217;ll have little to fear from the rest of us, who will only be inspired by your daring as we sit, blinking and bedazzled, in the private spotlights of our own attention.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/kikoy500.wordpress.com/47/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/kikoy500.wordpress.com/47/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kikoy500.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kikoy500.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kikoy500.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kikoy500.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kikoy500.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kikoy500.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kikoy500.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kikoy500.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kikoy500.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kikoy500.wordpress.com/47/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kikoy500.wordpress.com&blog=1282692&post=47&subd=kikoy500&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://kikoy500.wordpress.com/2007/10/11/squash-self-doubt-find-your-confidence/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/698bce7bfab37b730b4e6ad4c9fc4992?s=96&#38;d=identicon" medium="image">
			<media:title type="html">kikoy500</media:title>
		</media:content>

		<media:content url="http://i.l.cnn.net/cnn/2007/LIVING/personal/10/03/self.consciousness/art.self.o.jpg" medium="image">
			<media:title type="html">art.self.o.jpg</media:title>
		</media:content>

		<media:content url="http://edition.cnn.com/.element/img/2.0/mosaic/base_skins/baseplate/corner_wire_BL.gif" medium="image" />
	</item>
		<item>
		<title>AMD/Microsoft Power Together</title>
		<link>http://kikoy500.wordpress.com/2007/10/10/amdmicrosoft-power-together/</link>
		<comments>http://kikoy500.wordpress.com/2007/10/10/amdmicrosoft-power-together/#comments</comments>
		<pubDate>Wed, 10 Oct 2007 02:25:43 +0000</pubDate>
		<dc:creator>kikoy500</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://kikoy500.wordpress.com/2007/10/10/amdmicrosoft-power-together/</guid>
		<description><![CDATA[
Power up your business potential with AMD              &#38; Microsoft. Attend the Power Together tour and experience software              and hardware solutions your customers want from AMD&#8217;s latest quad   [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kikoy500.wordpress.com&blog=1282692&post=46&subd=kikoy500&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><img src="https://www.marketbuilder2.com/(qwe0xrqjld1lqnzjporxpcqy)/images/HeaderTechTour.jpg" height="292" width="770" /></p>
<p>Power up your business potential with AMD              &amp; Microsoft. Attend the Power Together tour and experience software              and hardware solutions your customers want from AMD&#8217;s latest quad              core processors and chipsets to Microsoft&#8217;s Windows Vista™,              Home Server and OneCare. Learn about new business opportunities and              programs for partners. Be there and feel the power.</p>
<p><span class="FontSize13"><strong>To the power of                2. Together, AMD and Microsoft supercharge the day with information                to help you build your business whether you sell to small/medium                business or consumers. You will learn about: </strong></span></p>
<ul>
<li> New revenue opportunities for system builder partners including
<ul>
<li> AMD Validated Solutions</li>
<li> Windows Live OneCare</li>
<li> Server and Home Server</li>
</ul>
</li>
<li> Consumer Platform Innovations including AMD’s Phenom                  FX Quad-Core processors</li>
<li> Small Business Solutions and the power of the “stack”</li>
<li> Accelerating your Windows Vista Business</li>
</ul>
<p>http://www.powertogethertour.com/</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/kikoy500.wordpress.com/46/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/kikoy500.wordpress.com/46/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kikoy500.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kikoy500.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kikoy500.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kikoy500.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kikoy500.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kikoy500.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kikoy500.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kikoy500.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kikoy500.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kikoy500.wordpress.com/46/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kikoy500.wordpress.com&blog=1282692&post=46&subd=kikoy500&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://kikoy500.wordpress.com/2007/10/10/amdmicrosoft-power-together/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/698bce7bfab37b730b4e6ad4c9fc4992?s=96&#38;d=identicon" medium="image">
			<media:title type="html">kikoy500</media:title>
		</media:content>

		<media:content url="//www.marketbuilder2.com/(qwe0xrqjld1lqnzjporxpcqy)/images/HeaderTechTour.jpg" medium="image" />
	</item>
		<item>
		<title>Connect Your Console to Pc Monitor</title>
		<link>http://kikoy500.wordpress.com/2007/09/22/connect-your-console-to-pc-monitor/</link>
		<comments>http://kikoy500.wordpress.com/2007/09/22/connect-your-console-to-pc-monitor/#comments</comments>
		<pubDate>Sat, 22 Sep 2007 05:21:43 +0000</pubDate>
		<dc:creator>kikoy500</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://kikoy500.wordpress.com/2007/09/22/connect-your-console-to-pc-monitor/</guid>
		<description><![CDATA[
The New X2VGA2 2.0 fully support 1080p is available now!
The X2VGA 2 High Definition VGA Transcoder by Neoya is designed to work with any gaming console or video device that has a standard component video output, such as the Playstation 3, Playstation 2, Wii, GameCube, Xbox 360, and Xbox, etc. With the X2VGA 2TM and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kikoy500.wordpress.com&blog=1282692&post=45&subd=kikoy500&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p align="center"><img src="http://www.x2vga.com/images/main_03.gif?1168237126" height="236" width="220" /></p>
<p align="center"><font>The New X2VGA2 2.0 fully support 1080p is available now!</font></p>
<p>The X2VGA 2 High Definition VGA Transcoder by Neoya is designed to work with any gaming console or video device that has a standard component video output, such as the Playstation 3, Playstation 2, Wii, GameCube, Xbox 360, and Xbox, etc. With the X2VGA 2<sup>TM</sup> and a standard VGA monitor, users can play their favorite games at 480p, 720p, 1080i, or 1080p resolutions &#8211; over double that of a standard TV! The X2VGA 2<sup>TM</sup> makes games come alive, delivering the sharpest, most realistic visuals available. Furthermore, the exceptional 480i EasyView<sup>TM</sup> and Input AutoSelect features provided by the X2VGA 2<sup>TM</sup> make it easy for users to fully enjoy the mind-blowing audio and visual effects.</p>
<p>Comparing with the former X2VGA <sup>TM</sup>, the X2VGA 2<sup>TM</sup> is compatible with various gaming consoles and video devices, and presents you with the perfect visual performance by its brand-new design of video processing circuits. Moreover, the newly integrated two sets of video inputs and PC pass-through function on the X2VGA 2<sup>TM</sup> even allow a quick switch between your gaming consoles and PC.</p>
<p>http://www.x2vga.com/</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/kikoy500.wordpress.com/45/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/kikoy500.wordpress.com/45/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kikoy500.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kikoy500.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kikoy500.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kikoy500.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kikoy500.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kikoy500.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kikoy500.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kikoy500.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kikoy500.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kikoy500.wordpress.com/45/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kikoy500.wordpress.com&blog=1282692&post=45&subd=kikoy500&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://kikoy500.wordpress.com/2007/09/22/connect-your-console-to-pc-monitor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/698bce7bfab37b730b4e6ad4c9fc4992?s=96&#38;d=identicon" medium="image">
			<media:title type="html">kikoy500</media:title>
		</media:content>

		<media:content url="http://www.x2vga.com/images/main_03.gif?1168237126" medium="image" />
	</item>
		<item>
		<title>Vista Tweaks</title>
		<link>http://kikoy500.wordpress.com/2007/09/14/vista-tweaks/</link>
		<comments>http://kikoy500.wordpress.com/2007/09/14/vista-tweaks/#comments</comments>
		<pubDate>Fri, 14 Sep 2007 16:13:59 +0000</pubDate>
		<dc:creator>kikoy500</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://kikoy500.wordpress.com/2007/09/14/vista-tweaks/</guid>
		<description><![CDATA[1. Disable TMM
This tweak is responsible for about a 3-5 second delay and blank screen flash when you start Vista. It searches for external monitors but is unnecessary.
If you are not using an external monitor, or don&#8217;t switch back and forth always then turn TMM off. This is responsible for a 3-5 second pause and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kikoy500.wordpress.com&blog=1282692&post=44&subd=kikoy500&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><strong>1. Disable TMM</strong></p>
<p>This tweak is responsible for about a 3-5 second delay and blank screen flash when you start Vista. It searches for external monitors but is unnecessary.</p>
<p>If you are not using an external monitor, or don&#8217;t switch back and forth always then turn TMM off. This is responsible for a 3-5 second pause and blank flash you get when turning your computer on.</p>
<p>Here&#8217;s how to fix that annoying black flicker on boot:</p>
<ol>
<li>Go start/control panel/administrative options/task scheduler.
<ol>
<li>On the left-hand side, click &#8220;Task Scheduler Local&#8221; (you should already be there, but just in case).</li>
<li>Expand &#8220;Task Scheduler Library,&#8221; then &#8220;Microsoft,&#8221; then &#8220;Windows,&#8221; then click &#8220;MobilePC.&#8221;</li>
<li>Up top, you&#8217;ll see a task called &#8220;TMM.&#8221; Click it, and on the right-hand side, click &#8220;Disable.&#8221;</li>
<li>You&#8217;re done!</li>
</ol>
</li>
</ol>
<p>Start time reduced and blank flash gone</p>
<p><span id="more-44"></span></p>
<p><strong>. Use TuneXP 1.5 (TY and Rep Trebuin) (<a href="http://www.download.com/TuneXP/3000-2086_4-10290928.html?tag=lst-0-1">Click here</a>)</strong></p>
<p>This little XP program works great on Vista and reduces your boot time by reorganizing it. The program is phenomenal and has no side effects except a much quicker start speed. As you get more knowledgeable, there are a bunch of other great utilities in the program. Basically, it takes all your boot files and places them at the front of the disk.</p>
<p>This is the best tweak in our arsenal as there are several reports that it will cut your start time in half. I have verified this with my Vista 64-bit startup (20 seconds) and have cut my sons 32-bit Vista startup time in half to 40 seconds.</p>
<p>I use it on both my Vista 32 and 64 bit systems and it works great. Word to the wise though, dont use later versions. <a href="http://www.download.com/TuneXP/3000-2086_4-10290928.html?tag=lst-0-1">This version is the only tested for this</a>.</p>
<ol>
<li>Install the program and if asked to select a drive, select &#8216;C&#8217;</li>
<li>Go to Memory and File System and Click on Ultra-Fast booting (it may appear to freeze but it&#8217;s working)</li>
<li>Once it&#8217;s done, it will inform you not to reboot your system until defragmentation is complete</li>
<li>Bring up your Task Manager from your system tray by right clicking in the tray bottom right and select Task Manager</li>
<li>Go to processes</li>
<li>You will see two processes relating to defrag. Dont restart your machine until they dissappear.</li>
</ol>
<p><span><strong>3. Disable Vista Search Indexing</strong></p>
<p>All versions of Vista have Search Indexing enabled by default which is an unneeded resource for most. Its function is to continuously update files on your system so that they can be made available for faster searching. Unfortunately, this takes its toll on system performance which is why its listed in several tweaking programs as a top teak; I agree totally.</p>
<p>To disable Windows indexing:</p>
<ol>
<li>Click Start, then computer;</li>
<li>Right click on Local Disk &#8216;C:&#8217;</li>
<li>Left click on Properties;</li>
<li>Uncheck &#8216;Index this Drive for Faster Searching&#8217;;</li>
<li>Let it complete and select &#8216;Include subfolders and files&#8217; in any subsequent dialog box</li>
</ol>
<p>From here we will go one step further and turn off Windows Search in your services</p>
<ol>
<li>Click on start/run and type in &#8216;MSConfig&#8217; and hit ok</li>
<li>Click on Services tab and find Windows Search</li>
<li>Uncheck/Apply and Ok, you&#8217;re done!!!</li>
</ol>
<p>If you think you&#8217;ll need search, don&#8217;t mess with this, but if not it&#8217;s a great way to speedup your system.<br />
<strong>4. Get CCleaner, it Works with 32/64Bit (<a href="http://www.filehippo.com/download_ccleaner/">Click here</a>)</strong></p>
<p>CCleaner (formerly Crap Cleaner) is a freeware system optimization and privacy tool. It removes unused and temporary files from your system &#8211; allowing Windows to run faster, more efficiently and giving you more hard disk space. The best part is that it&#8217;s fast (normally taking less than a second to run) and Free!</p>
<p>It cleans the following:</p>
<ol>
<li>Internet Explorer Cache, History, Cookies, Index.dat</li>
<li>Recycle Bin, Temporary files and Log files</li>
<li>Recently opened URLs and files</li>
<li>Third-party application temp files and recent file lists (MRUs)</li>
<li>Including: Firefox, Opera, Media Player, eMule, Kazaa, Google Toolbar, Netscape, Office XP, Nero, Adobe Acrobat, WinRAR, WinAce, WinZip and more&#8230;</li>
</ol>
<p>It also contains an &#8216;Advanced Registry Scanner&#8217; and cleaner to remove unused and old entries to include File Extensions, ActiveX Controls, ClassIDs, ProgIDs, Uninstallers, Shared DLLs, Fonts, Help Files, Application Paths, Icons, Invalid Shortcuts and more&#8230;</p>
<p>There is also a Windows Startup editor as well as a back-up tool just in case you delete something your not supposed to.</p>
<p><strong>5. Turn Off User Account Control (UAC)</strong></p>
<p>This tweak is best followed after a &#8216;clean&#8217; install with respect to the below listed advisory.</p>
<p>One of the most annoying things in Vista is the protection of your system through UAC. Before I knew how to disable it I considered throwing the system out the window. The purpose of UAC is to make you confirm a large number of everyday functions in order to somehow protect your system from malware infections. In any case heres how to shut it off (or turn it back on).</p>
<ol>
<li>Click on start and then click on your username picture top right of the start menu.</li>
<li>Click on &#8216;Turn User Account Control on or off.&#8217;</li>
<li>Uncheck (or check) User Account Control, select ok and restart.</li>
</ol>
<p>Thats it <em>except</em>&#8230;</p>
<p>There needs to be a word of caution in turning UAC on and off. There is a process called virtualization that, when UAC is &#8216;on&#8217; saves program data files (things like INI files, configuration files, saved game files etc.) within a totally separate area for each individual user. If you then turn UAC off, there have been reports that certain programs may be unable to find that saved data. The truth, in fact, is that the data is still there but only visible to the program in this &#8216;virtualization folder&#8217; once UAC has been turned on again.</p>
<p>An example is&#8230; If UAC is on and you install some game, and the game then saves files to that program&#8217;s main directory and subsequently you turn UAC off. Those files may appear to the game that they have been deleted when, in all actuality, they are stored in this folder and only accessible through virtualization when UAC is on.<br />
<strong>6. Turn Off Unused Windows Features</strong></p>
<p>This tweak is actually a &#8216;two in one&#8217; as it saves disk space by turning off unneeded windows features as well as improving performance by shutting down Remote Differential Compression (RDC). Briefly, RDC monitors changes in files in order to transfer them with minimum compression over a network, thus eliminating the transfer of an entire file which has been already moved. This checking and rechecking can hinder system performance. With respect to the other features that I will suggest shutting off, I myself only leave Games, Ultimate Extras (both self explanatory) and Tablet PC. I choose to leave tablet PC as it enables a little feature called Snipping Tool which I absolutely love. Anyone who hasn&#8217;t used it, type &#8217;snipping tool&#8217; in the &#8216;Run&#8217; box and enjoy.</p>
<p>In any case, the tweak is as follows:</p>
<ol>
<li>Press Start/Control Panel/Classic View and select Programs and Features</li>
<li>Choose &#8216;Turn Windows Features On and Off</li>
<li>You can safely unselect &#8216;Indexing Service, Remote Differential Compression, Tablet PC Optional Components (if you don&#8217;t want Snipping Tool), Windows DFS Replication Service, Windows Fax &amp; Scan (unless you use Fax through a modem) and Windows Meeting Space.</li>
</ol>
<p>And if you want to be really smart, DFS Replication duplicates files for use among multiple PCs in a network and keeps them in sync. It&#8217;s not very useful on a stand alone.<br />
<strong>7. Windows Snipping Tool IS AMAZING!</strong></p>
<p>I let the cat out of the bag in the last tweak for #6, so I figured I might as well spill the beans. If you have Vista Premium or above you have a great new tool called Snipping Tool. It enables you to freeze whatever is on your screen and take a picture of it. You may notice that I use this in tons of my threads as it is so easy.</p>
<p>To get to it&#8230;</p>
<ol>
<li>Click Start/All Programs/Accessories and you&#8217;ll find the tool there, or&#8230;</li>
<li>Start &#8216;Run&#8217; and type &#8217;snippingtool&#8217;.</li>
</ol>
<p>Just for a bit of a background, this is <a href="http://windowshelp.microsoft.com/Windows/en-US/Help/1337cdba-52a2-4704-ad4d-2d7bace605b41033.mspx">Microsofts description of &#8216;The Tool&#8217;</a></p>
<p><em>NOTE: If you delete Tablet PC features from Vista, this will not work!</em></p>
<p><strong>8. Eliminate Unneeded Startup Programs</strong></p>
<p>When your computer starts, there are a number of programs that start automatically and remain running in the background which steal away much needed memory. They add up in time and although many have no real use to the average user, others can be eliminated from starting automatically and started from the &#8216;All Programs&#8217; or &#8216;Quick Launch&#8217; menu as required. My best example of this is Messenger (or AIM/ICQ) which starts and hogs valuable resources even when your not using it.</p>
<p>First lets see how to get there to see what we have shall we?</p>
<ol>
<li>Type &#8216;msconfig&#8217; in the Run command (or Windows key + R)</li>
<li>Press Start/Control Panel/Admin Tools/System Configuration/Startup; or</li>
<li>Download this excellent freeware program called <a href="http://www.windowsstartup.com/startupinspector.php">Startup Inspector</a></li>
</ol>
<p>I personally like the program for the new user because it has a consultant which, not only tells you what each program is, but also tells you which are required by the system, user chosen, recommended, not required or unknown.</p>
<p>Now what can we disable and eliminate from the startup process? This is much an individual choice but I personally have shut down all that start with &#8216;NVIDIA, Messenger, Office, Nwiz, quicktime&#8221;. Be careful not to turn off important processes, when in doubt don&#8217;t disable a process, but if it&#8217;s something obvious and you know you don&#8217;t want it then disable it.</p>
<p></span></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/kikoy500.wordpress.com/44/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/kikoy500.wordpress.com/44/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kikoy500.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kikoy500.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kikoy500.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kikoy500.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kikoy500.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kikoy500.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kikoy500.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kikoy500.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kikoy500.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kikoy500.wordpress.com/44/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kikoy500.wordpress.com&blog=1282692&post=44&subd=kikoy500&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://kikoy500.wordpress.com/2007/09/14/vista-tweaks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/698bce7bfab37b730b4e6ad4c9fc4992?s=96&#38;d=identicon" medium="image">
			<media:title type="html">kikoy500</media:title>
		</media:content>
	</item>
		<item>
		<title>Free Tickets to Digital Life!</title>
		<link>http://kikoy500.wordpress.com/2007/09/12/free-tickets-for-digital-life/</link>
		<comments>http://kikoy500.wordpress.com/2007/09/12/free-tickets-for-digital-life/#comments</comments>
		<pubDate>Wed, 12 Sep 2007 14:56:28 +0000</pubDate>
		<dc:creator>kikoy500</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://kikoy500.wordpress.com/2007/09/12/free-tickets-for-digital-life/</guid>
		<description><![CDATA[https://secure.pnmi.com/digitallife/tickets/index.cfm?source=SHHH
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kikoy500.wordpress.com&blog=1282692&post=43&subd=kikoy500&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>https://secure.pnmi.com/digitallife/tickets/index.cfm?source=SHHH</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/kikoy500.wordpress.com/43/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/kikoy500.wordpress.com/43/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kikoy500.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kikoy500.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kikoy500.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kikoy500.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kikoy500.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kikoy500.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kikoy500.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kikoy500.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kikoy500.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kikoy500.wordpress.com/43/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kikoy500.wordpress.com&blog=1282692&post=43&subd=kikoy500&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://kikoy500.wordpress.com/2007/09/12/free-tickets-for-digital-life/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/698bce7bfab37b730b4e6ad4c9fc4992?s=96&#38;d=identicon" medium="image">
			<media:title type="html">kikoy500</media:title>
		</media:content>
	</item>
		<item>
		<title>10 Ways Your Resume Irks Hiring Managers</title>
		<link>http://kikoy500.wordpress.com/2007/09/05/10-ways-your-resume-irks-hiring-managers/</link>
		<comments>http://kikoy500.wordpress.com/2007/09/05/10-ways-your-resume-irks-hiring-managers/#comments</comments>
		<pubDate>Wed, 05 Sep 2007 14:47:25 +0000</pubDate>
		<dc:creator>kikoy500</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://kikoy500.wordpress.com/2007/09/05/10-ways-your-resume-irks-hiring-managers/</guid>
		<description><![CDATA[Fashion designer Coco Chanel had a personal rule: Before she left the house, the style icon always removed one piece of her ensemble to avoid the faux-pas of wearing too many accessories.  Were Chanel alive today and working as a hiring manager, she would likely offer similar advice to job seekers: You don&#8217;t have to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kikoy500.wordpress.com&blog=1282692&post=42&subd=kikoy500&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Fashion designer Coco Chanel had a personal rule: Before she left the house, the style icon always removed one piece of her ensemble to avoid the faux-pas of wearing too many accessories.  Were Chanel alive today and working as a hiring manager, she would likely offer similar advice to job seekers: You don&#8217;t have to include everything.<br />
Job seekers do themselves a disservice when they send out resumes with more information than they need. Most employers don&#8217;t have the time or patience to sift through the irrelevant details. Here are 10 things your resume could do without:<br />
<strong>1. Spelling mistakes and grammatical errors. </strong>&#8220;If you are careless enough to send out this most important document with a mistake &#8230; I immediately assume you&#8217;ll never care enough about the work you send out representing my company,&#8221; says Jose Bandujo, president of New York-based Bandujo Advertising. He recalls one candidate who misspelled Manhattan, despite having worked in the city for a decade and another whose great educational background didn&#8217;t compensate for the fact that he couldn&#8217;t spell &#8220;education.&#8221;<br />
<strong>2. Opening objectives.</strong> &#8220;These are generic &#8230; They do nothing to differentiate one candidate from another,&#8221; says Donna Flagg, president of The Krysalis Group, a human resource and management consulting firm in New York.<br />
<strong>3.  Personal attributes. </strong>Listing personal information such as height, weight and age and providing photographs is a pet peeve for Heather Mayfield, vice president of training and operations for Snelling Staffing Services. &#8221;It is amazing that we still see this on the resumes of today, but they are out there.&#8221;<br />
<strong>4. Interests and hobbies.</strong>  If these points of information don&#8217;t pertain to the job in question, there&#8217;s no need to include them.  &#8220;Create a mystery and save these kinds of data points when you start the job,&#8221; advises Roy Blitzer, author of &#8216;Hire Me, Inc.: Resumes and Cover Letters that Get Results.&#8217;<br />
<strong>5. Details of every task you&#8217;ve ever performed in every job you&#8217;ve ever had.</strong> &#8220;It&#8217;s too much information. Managers and recruiters need to know at-a-glance what makes a candidate special,&#8221; Flagg says. Focus on those details that pertain to the job for which you&#8217;re applying.<br />
<strong>6. Excessive bragging.</strong> Stating one&#8217;s accomplishments can be helpful, but when it&#8217;s overdone, the candidate can come across as narcissistic, a huge turnoff for employers, Flagg says.<br />
<strong>7. Outdated information.</strong>  Leave off the activities that you did in high school if graduation was a few years ago and omit jobs you held 10 or more years ago, as the information is probably irrelevant to the position you&#8217;re trying for now.<br />
<strong>8. False information.</strong> &#8220;Putting that you have a B.S. on a resume when you do not have one is BS,&#8217;&#8221; jokes Stephen Viscusi, author of &#8216;On the Job: How to Make it in the Real World of Work.&#8221; Not only is lying on a resume unfair and dishonest, it&#8217;s also not very intelligent.  &#8220;Companies verify dates of employment &#8212; often after you start. If you have lied, they fire you&#8230;Nobody wants to hire a liar. Nobody.&#8221;<br />
<strong>9. Unexplained gaps in work history.</strong>  While job seekers should account for these gaps, they should be careful with their wording.  &#8220;One of the weirdest things that I ever saw on a resume &#8230; was a candidate who explained a 10-year lapse in work experience as being in jail during those years for killing her husband,&#8221; recalls Linda Goodspeed, marketing recruiting manager at VistaPrint.  In such a situation, she says, the best thing to write would be &#8220;left work for personal reasons,&#8221; and the candidate would be able to explain the criminal record later.<br />
<strong>10. A lack of professionalism.</strong>  Colored paper, cutesy fonts, links to personal web sites and childish e-mail addresses all scream unprofessional and are a turn off to hiring managers.  One otherwise qualified applicant didn&#8217;t get an interview at Bandujo&#8217;s firm solely because of the name in her email address: &#8220;weird2themax.&#8221; &#8220;I recognize the advertising industry is full of talented, interesting &#8216;characters&#8217;,&#8221; Bandujo says, &#8220;but did I really want one who thought she was weird to the max?&#8221; No, he decided, he did not.</p>
<p>Copyright 2007 CareerBuilder.com.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/kikoy500.wordpress.com/42/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/kikoy500.wordpress.com/42/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kikoy500.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kikoy500.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kikoy500.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kikoy500.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kikoy500.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kikoy500.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kikoy500.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kikoy500.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kikoy500.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kikoy500.wordpress.com/42/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kikoy500.wordpress.com&blog=1282692&post=42&subd=kikoy500&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://kikoy500.wordpress.com/2007/09/05/10-ways-your-resume-irks-hiring-managers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/698bce7bfab37b730b4e6ad4c9fc4992?s=96&#38;d=identicon" medium="image">
			<media:title type="html">kikoy500</media:title>
		</media:content>
	</item>
		<item>
		<title>Hack Vista Administrator Password</title>
		<link>http://kikoy500.wordpress.com/2007/08/30/hack-vista-administrator-password/</link>
		<comments>http://kikoy500.wordpress.com/2007/08/30/hack-vista-administrator-password/#comments</comments>
		<pubDate>Thu, 30 Aug 2007 03:48:20 +0000</pubDate>
		<dc:creator>kikoy500</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://kikoy500.wordpress.com/2007/08/30/hack-vista-administrator-password/</guid>
		<description><![CDATA[Hack Vista..
Locked out of Windows Vista? XP? NT? Overwrite the administrator password or any user password with a boot disk called Trinity Rescue Kit. All you gotta do is download this .iso with your computer, and copy it to a cd or dvd with ImgBurn.

Once done put cd back in, and restart the computer or [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kikoy500.wordpress.com&blog=1282692&post=41&subd=kikoy500&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Hack Vista..<br />
Locked out of Windows Vista? XP? NT? Overwrite the administrator password or any user password with a boot disk called Trinity Rescue Kit. All you gotta do is download this .iso with your computer, and copy it to a cd or dvd with <a href="http://fileforum.betanews.com/download/ImgBurn/1128426215/1">ImgBurn</a>.<br />
<span></span></p>
<p>Once done put cd back in, and restart the computer or put this disk in any computer and boot up with it, wait for the linux os to finish booting from cd, you will get a prompt, type &#8220;winpass&#8221; press enter<br />
it is mounting the drives for windows, you can choose which os if you multiboot..<br />
In most cases all you do is press enter if you only have one os.<br />
Enter &#8220;*&#8221; for blank administrator password or enter whatever you need, confirm with y  then enter.<br />
Password changed <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
This shouldnt take anyone more than 5 minutes to do&#8230;</p>
<p>You can also change any username with winpass -u &#8220;username&#8221;<br />
easy as that.</p>
<p>Enjoy <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Download ISO to reset administrator password <a href="http://trinityhome.org/Home/index.php?wpid=1&amp;front_id=12">Here</a></p>
<p>Winpass<br />
By default it will reset the builtin administrator account of a locally installed Windows, but you can specify other accounts as well at the commandline. In fact, you can add any parameter from chntpw which will be parsed to the commandline. So winpass –l will list you all usernames found in the SAM. Should you have troubles that metacharacters are present in the username (like the Ø or something), you can still use the HEX reference to the username listed next to it. Be sure to prepend that with a &#8216;0x&#8217;. More info on that can be found in the manual of chntpw. Watch out with disabling syskey! Most of the time you don &#8216;t need to disable syskey. It removes strong password encryption, so all local passwords become invalid, since the hashes don &#8216;t correspond to the encryption algorythm anymore.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/kikoy500.wordpress.com/41/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/kikoy500.wordpress.com/41/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kikoy500.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kikoy500.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kikoy500.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kikoy500.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kikoy500.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kikoy500.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kikoy500.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kikoy500.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kikoy500.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kikoy500.wordpress.com/41/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kikoy500.wordpress.com&blog=1282692&post=41&subd=kikoy500&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://kikoy500.wordpress.com/2007/08/30/hack-vista-administrator-password/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/698bce7bfab37b730b4e6ad4c9fc4992?s=96&#38;d=identicon" medium="image">
			<media:title type="html">kikoy500</media:title>
		</media:content>
	</item>
		<item>
		<title>Fix USB problems..</title>
		<link>http://kikoy500.wordpress.com/2007/08/30/fix-usb-problems/</link>
		<comments>http://kikoy500.wordpress.com/2007/08/30/fix-usb-problems/#comments</comments>
		<pubDate>Thu, 30 Aug 2007 03:45:06 +0000</pubDate>
		<dc:creator>kikoy500</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://kikoy500.wordpress.com/2007/08/30/fix-usb-problems/</guid>
		<description><![CDATA[Vista Driver problems 
&#160;
i just got a 2GB USB hard drive. I plugged it in to Vista and i get a message saying that Windows needs to install a driver to get it to work, i wasn&#8217;t expecting this as i thought these drives did not need any drivers.  I let it check Windows Update [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kikoy500.wordpress.com&blog=1282692&post=40&subd=kikoy500&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p class="itemTitle"><a href="http://tim.mackey.ie/VistaDriverProblemsFormacUSBHardDrive.aspx" class="TitleLinkStyle" rel="bookmark">Vista Driver problems </a></p>
<p class="itemPostedon">&nbsp;</p>
<p>i just got a 2GB USB hard drive. I plugged it in to Vista and i get a message saying that Windows needs to install a driver to get it to work, i wasn&#8217;t expecting this as i thought these drives did not need any drivers.  I let it check Windows Update but it found nothing.  I tried the firewire option but it was no different.  I contacted PNY tech support and got the following reply, which was actually very helpful:</p>
<blockquote><p><em><span style="font-size:10.5pt;font-family:'Verdana','sans-serif';">&#8220;If a driver is required, then it is required for your USB, or FireWire interface inside your PC. External harddrives didn´t require special drivers, because they are ATAPI compatible.&#8221;<br />
</span></em></p></blockquote>
<p>I grabbed an old USB card reader which i know does not require any additional drivers, and i plugged it in.  I got 12 prompts to install drivers and each time it searched Windows Update and found nothing.  I took a guess at searching in c:\windows and it found them one by one.  I couldn&#8217;t figure out why Windows would not search its own driver store automatically.  Apparently there is some bug with Vista where you can get a corrupt driver cache file and if you delete it then it will solve all these problems.<br />
The culprit file is called INFCACHE.1 and it&#8217;s located in c:\windows\inf.  I discovered this on a <a href="http://groups.google.com/group/microsoft.public.windows.vista.hardware_devices/browse_thread/thread/12d51ddee755ebd3/04d9235b23a0fef5?lnk=gst&amp;q=Filerepository+&amp;rnum=2#04d9235b23a0fef5">newsgroup post</a>.  This is the relevant part:</p>
<blockquote><p><em>The solution to this annoying problem (I had it on one PC), seems to be to locate and delete the file INFCACHE.1, which may be corrupted and causing the problem. To delete this file, you will first have to modify its permissions so the users group can access it (right-click on the<br />
file-&gt;Properties-&gt;Security). INFCACHE.1 file.  It&#8217;s located at C:\Windows\inf (scroll down to the file). (Note: to see INFCACHE.1, you must set Windows Explorer to display hidden and system files)<br />
</em></p></blockquote>
<p><em><span style="font-size:10.5pt;font-family:'Verdana','sans-serif';"></span></em>When modify these system files, i usually find i have to take ownership first for my own user account, then add myself to the permissions with full control.  then you can delete it, or rename it to X_INFCACHE.1, etc.</p>
<p>I&#8217;m glad to say Vista is loading all my USB devices nicely now and the Formac drive works beautifully with USB and Firewire.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/kikoy500.wordpress.com/40/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/kikoy500.wordpress.com/40/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kikoy500.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kikoy500.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kikoy500.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kikoy500.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kikoy500.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kikoy500.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kikoy500.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kikoy500.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kikoy500.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kikoy500.wordpress.com/40/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kikoy500.wordpress.com&blog=1282692&post=40&subd=kikoy500&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://kikoy500.wordpress.com/2007/08/30/fix-usb-problems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/698bce7bfab37b730b4e6ad4c9fc4992?s=96&#38;d=identicon" medium="image">
			<media:title type="html">kikoy500</media:title>
		</media:content>
	</item>
		<item>
		<title>What&#8217;s Wrong with This Car?</title>
		<link>http://kikoy500.wordpress.com/2007/07/16/whats-wrong-with-this-car/</link>
		<comments>http://kikoy500.wordpress.com/2007/07/16/whats-wrong-with-this-car/#comments</comments>
		<pubDate>Mon, 16 Jul 2007 04:44:02 +0000</pubDate>
		<dc:creator>kikoy500</dc:creator>
				<category><![CDATA[Cool Stuff]]></category>

		<guid isPermaLink="false">http://kikoy500.wordpress.com/2007/07/16/whats-wrong-with-this-car/</guid>
		<description><![CDATA[
cool optical illusion..(&#8220;,)
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kikoy500.wordpress.com&blog=1282692&post=37&subd=kikoy500&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><span style="text-align:center; display: block;"><a href="http://kikoy500.wordpress.com/2007/07/16/whats-wrong-with-this-car/"><img src="http://img.youtube.com/vi/q75sH71rHCA/2.jpg" alt="" /></a></span></p>
<p>cool optical illusion..(&#8220;,)</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/kikoy500.wordpress.com/37/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/kikoy500.wordpress.com/37/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kikoy500.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kikoy500.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kikoy500.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kikoy500.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kikoy500.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kikoy500.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kikoy500.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kikoy500.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kikoy500.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kikoy500.wordpress.com/37/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kikoy500.wordpress.com&blog=1282692&post=37&subd=kikoy500&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://kikoy500.wordpress.com/2007/07/16/whats-wrong-with-this-car/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/698bce7bfab37b730b4e6ad4c9fc4992?s=96&#38;d=identicon" medium="image">
			<media:title type="html">kikoy500</media:title>
		</media:content>

		<media:content url="http://img.youtube.com/vi/q75sH71rHCA/2.jpg" medium="image" />
	</item>
	</channel>
</rss>