<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>Priyank</title>
	
	<link>http://priyank.in</link>
	<description>A n00b learning to whisper w00t, everyday.</description>
	<lastBuildDate>Thu, 19 Jan 2012 12:55:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/PriyankBolia" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="priyankbolia" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">PriyankBolia</feedburner:emailServiceId><feedburner:feedburnerHostname xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>How to remove Visual Source Safe binding from Visual Studio projects?</title>
		<link>http://priyank.in/2012/01/how-to-remove-visual-source-safe-binding-from-visual-studio-projects/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=how-to-remove-visual-source-safe-binding-from-visual-studio-projects</link>
		<comments>http://priyank.in/2012/01/how-to-remove-visual-source-safe-binding-from-visual-studio-projects/#comments</comments>
		<pubDate>Thu, 19 Jan 2012 11:28:34 +0000</pubDate>
		<dc:creator>Priyank</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Bash]]></category>
		<category><![CDATA[Cygwin]]></category>
		<category><![CDATA[Source Safe]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[VSS]]></category>

		<guid isPermaLink="false">http://priyank.in/?p=478</guid>
		<description><![CDATA[Just wrote this script to remove the VSS source safe bindings from old visual studio projects, so that I can move to GIT repository. I just run these commands using the Cygwin shell, from the solution root folder, and it removes all traces of the source control of the Jurassic era. Now its easy, to [...]]]></description>
			<content:encoded><![CDATA[<div id="paragraph">
<p>Just wrote this script to remove the VSS source safe bindings from old visual studio projects, so that I can move to GIT repository. I just run these commands using the Cygwin shell, from the solution root folder, and it removes all traces of the source control of the Jurassic era.</p>
</div>
<pre class="brush: bash; title: ; notranslate">
find . -type f -name *.dsp -print0 | xargs -0 -r perl -p -i.vssbak -e 's/^.*Scc_ProjName.*$//g'
find . -type f -name *.dsp -print0 | xargs -0 -r perl -p -i.vssbak -e 's/^.*Scc_LocalPath.*$//g'
find . -type f -name *.dsw -print0 | xargs -0 -r sed -i '/begin.source.code.control/,/end.source.code.control/d'
find . -type f -name *.sln -print0 | xargs -0 -r sed -i '/GlobalSection(SourceCodeControl)/,/EndGlobalSection/d'
find . -type f -name *.*proj -print0 | xargs -0 -r perl -p -i.vssbak -e 's/^.*SccProjectName.*$//g'
find . -type f -name *.*proj -print0 | xargs -0 -r perl -p -i.vssbak -e 's/^.*SccLocalPath.*$//g'
find . -type f -name *.*proj -print0 | xargs -0 -r perl -p -i.vssbak -e 's/^.*SccProvider.*$//g'
find . -type f -name *.vssbak -print0 | xargs -0 -r rm -f
find . -type f -name *.*scc -print0 | xargs -0 -r rm -f
</pre>
<div id="paragraph">
<p>Now its easy, to create a GIT repository on top of it.</p>
</div>
<pre class="brush: bash; title: ; notranslate">
git init
</pre>
]]></content:encoded>
			<wfw:commentRss>http://priyank.in/2012/01/how-to-remove-visual-source-safe-binding-from-visual-studio-projects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flashing STM32 MCU using ST-Link Command Line Utility</title>
		<link>http://priyank.in/2012/01/flashing-stm32-mcu-using-st-link-utility/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=flashing-stm32-mcu-using-st-link-utility</link>
		<comments>http://priyank.in/2012/01/flashing-stm32-mcu-using-st-link-utility/#comments</comments>
		<pubDate>Tue, 17 Jan 2012 17:31:00 +0000</pubDate>
		<dc:creator>Priyank</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Flashing]]></category>
		<category><![CDATA[Keil]]></category>
		<category><![CDATA[ST-Link]]></category>
		<category><![CDATA[STM32]]></category>
		<category><![CDATA[uvision 4]]></category>

		<guid isPermaLink="false">http://priyank.in/?p=472</guid>
		<description><![CDATA[You can directly download your compiled HEX file from the Keil µVision 4 IDE or any other IDE to your STM32 value discovery kit or any other STM32 microcontroller, using the command line ST-Link utility. That means, that you don&#8217;t need to manually search the HEX file and use the ST-Link Utility GUI to flash [...]]]></description>
			<content:encoded><![CDATA[<div id="paragraph">
<p>You can directly download your compiled HEX file from the Keil µVision 4 IDE or any other IDE to your STM32 value discovery kit or any other STM32 microcontroller, using the command line ST-Link utility. That means, that you don&#8217;t need to manually search the HEX file and use the ST-Link Utility GUI to flash the MCU. Just a press of download button in the IDE, will be enough to load your new program to the STM32 MCU and reset it also.</p>
<p>You need to go to the Utilities tab in the project options (ALT + F7) and select the &#8220;<em>Use External Tool for Flash programming</em>&#8220;. Browse to the path of the &#8220;<em>ST-LINK_CLI.exe</em>&#8221; program and give the command line arguments as: &#8216;<code>-c SWD -p "$H@H.hex" -Rst -Run</code>&#8216;.</p>
</div>
<div id="video">
<p><img src="http://priyank.in/wp-content/uploads/2012/01/keil_stlink_flash.png" alt="	Flashing STM32 MCU using ST-Link Command Line Utility" /></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://priyank.in/2012/01/flashing-stm32-mcu-using-st-link-utility/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>STM32: Using one wire to control multiple LED</title>
		<link>http://priyank.in/2012/01/stm32-using-one-wire-to-control-multiple-led/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=stm32-using-one-wire-to-control-multiple-led</link>
		<comments>http://priyank.in/2012/01/stm32-using-one-wire-to-control-multiple-led/#comments</comments>
		<pubDate>Sun, 15 Jan 2012 12:14:51 +0000</pubDate>
		<dc:creator>Priyank</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[74HC164]]></category>
		<category><![CDATA[LED array]]></category>
		<category><![CDATA[Serial to Parallel]]></category>
		<category><![CDATA[SPI]]></category>
		<category><![CDATA[STM32]]></category>
		<category><![CDATA[Value Discovery]]></category>

		<guid isPermaLink="false">http://priyank.in/?p=469</guid>
		<description><![CDATA[Controlling multiple LED using just one wire, i.e. data line. using 74HC164 IC (serial to parallel shifter) and STM32 Value Line Discovery Kit.]]></description>
			<content:encoded><![CDATA[<div id="video">
<p>
<iframe src="http://player.vimeo.com/video/35086259?title=0&amp;byline=0&amp;portrait=0" width="500" height="375" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
</p>
</div>
<div id="paragraph">
<p>Controlling multiple LED using just one wire, i.e. data line. using 74HC164 IC (serial to parallel shifter) and STM32 Value Line Discovery Kit.
</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://priyank.in/2012/01/stm32-using-one-wire-to-control-multiple-led/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Digital Frame using STM32 Cortex M3 and FatFs on WaveShare board</title>
		<link>http://priyank.in/2012/01/digital-frame-using-stm32-cortex-m3-and-fatfs-on-waveshare-board/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=digital-frame-using-stm32-cortex-m3-and-fatfs-on-waveshare-board</link>
		<comments>http://priyank.in/2012/01/digital-frame-using-stm32-cortex-m3-and-fatfs-on-waveshare-board/#comments</comments>
		<pubDate>Mon, 09 Jan 2012 05:35:15 +0000</pubDate>
		<dc:creator>Priyank</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Cortex M3]]></category>
		<category><![CDATA[Digital Frame]]></category>
		<category><![CDATA[FatFs]]></category>
		<category><![CDATA[Open103Z]]></category>
		<category><![CDATA[STM32]]></category>
		<category><![CDATA[WaveShare]]></category>

		<guid isPermaLink="false">http://priyank.in/?p=466</guid>
		<description><![CDATA[Once again, the same old stuff, but on a different board. Running the Digital Frame demo using the STM32 Cortex M3 processor on the WaveShare Open103Z board. The rest of the things, are the same, SanDisk 8GB micro SD card read using FatFs library.]]></description>
			<content:encoded><![CDATA[<div id="video">
<p><iframe src="http://player.vimeo.com/video/34779574?title=0&amp;byline=0&amp;portrait=0" width="500" height="375" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></p>
</div>
<div id="paragraph">
<p>Once again, the same old stuff, but on a different board. Running the Digital Frame demo using the STM32 Cortex M3 processor on the <a href="http://www.wvshare.com/product/Open103Z-Standard.htm" title="WaveShare Open103Z" target="_blank">WaveShare Open103Z</a> board. The rest of the things, are the same, SanDisk 8GB micro SD card read using FatFs library.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://priyank.in/2012/01/digital-frame-using-stm32-cortex-m3-and-fatfs-on-waveshare-board/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Digital Frame implementation using STM32 Cortex M3 processor and FatFs</title>
		<link>http://priyank.in/2012/01/digital-frame-using-stm32-cortex-m3-processor-fatfs/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=digital-frame-using-stm32-cortex-m3-processor-fatfs</link>
		<comments>http://priyank.in/2012/01/digital-frame-using-stm32-cortex-m3-processor-fatfs/#comments</comments>
		<pubDate>Sun, 08 Jan 2012 16:24:49 +0000</pubDate>
		<dc:creator>Priyank</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Cortex M3]]></category>
		<category><![CDATA[Digital Frame]]></category>
		<category><![CDATA[FatFs]]></category>
		<category><![CDATA[STM32]]></category>

		<guid isPermaLink="false">http://priyank.in/?p=456</guid>
		<description><![CDATA[My first try at implementing Digital Frame using STM32 Cortex M3 processor. Using Keil IDE and STM32VLDISCOVERY as ST-Link for programming. The prototype device is HY-Smart STM32 board. The FAT 32 file system on the SanDisk 8GB card is read using FatFs library. Luckily, most of code is just copied from the sample code provided [...]]]></description>
			<content:encoded><![CDATA[<div id="video">
<!--p><object width="480" height="360"><param name="movie" value="https://www.youtube-nocookie.com/v/yYmOEZ0p7nc?version=3&amp;hl=en_US&amp;rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="https://www.youtube-nocookie.com/v/yYmOEZ0p7nc?version=3&amp;hl=en_US&amp;rel=0" type="application/x-shockwave-flash" width="480" height="360" allowscriptaccess="always" allowfullscreen="true"></embed></object></p-->
<p><iframe src="http://player.vimeo.com/video/34743819?title=0&amp;byline=0&amp;portrait=0&amp;color=ff9933" width="500" height="375" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></p>
</div>
<div id="paragraph">
<p>My first try at implementing Digital Frame using STM32 Cortex M3 processor. Using Keil IDE and STM32VLDISCOVERY as ST-Link for programming. The prototype device is <a href="http://www.powermcu.com/product-9.html" title="HY-Smart STM32" target="_blank">HY-Smart STM32</a> board. The FAT 32 file system on the SanDisk 8GB card is read using FatFs library. Luckily, most of code is just copied from the sample code provided with the board.</p>
<p>Download code: <a href="http://priyank.in/2012/01/digital-frame-using-stm32-cortex-m3-processor-fatfs/digital-frame/" title="Digital Frame using STM32 Cortex  M3 and FatFs" target="_blank">Digital Frame using STM32 Cortex  M3 and FatFs</a></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://priyank.in/2012/01/digital-frame-using-stm32-cortex-m3-processor-fatfs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stuff’s that I love: Motorola DC800 Bluetooth Stereo Gateway and S9-HD Bluetooth Headphone</title>
		<link>http://priyank.in/2012/01/motorola-dc800-bluetooth-stereo-gateway-and-s9-hd-stereo-headphone/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=motorola-dc800-bluetooth-stereo-gateway-and-s9-hd-stereo-headphone</link>
		<comments>http://priyank.in/2012/01/motorola-dc800-bluetooth-stereo-gateway-and-s9-hd-stereo-headphone/#comments</comments>
		<pubDate>Sat, 07 Jan 2012 15:03:26 +0000</pubDate>
		<dc:creator>Priyank</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Motorola]]></category>
		<category><![CDATA[Product Review]]></category>

		<guid isPermaLink="false">http://priyank.in/?p=445</guid>
		<description><![CDATA[Motorola DC800 Bluetooth Stereo Gateway and S9-HD Bluetooth Headphone Motorola Bluetooth Home Stereo Transceiver by streaming music to your the Bluetooth Stereo Headphones, the Bluetooth Home Stereo Adapter turns audio devices such as home stereos and MP3 players into wireless music systems. Just plug the DC800 into your home stereo or MP3 player with an [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Motorola DC800 Bluetooth Stereo Gateway and S9-HD Bluetooth Headphone</strong></p>
<div id="video">
<p><img src="http://priyank.in/wp-content/uploads/2012/01/motorolaDC800_S9HD.png" alt="Motorola DC800 Bluetooth Stereo Gateway and S9-HD Bluetooth Headphone" /></p>
<div>
<div id="paragraph">
<p>Motorola Bluetooth Home Stereo Transceiver by streaming music to your the Bluetooth Stereo Headphones, the Bluetooth Home Stereo Adapter turns audio devices such as home stereos and MP3 players into wireless music systems. Just plug the DC800 into your home stereo or MP3 player with an included RCA cable or 3.5mm cable and you are ready to go. You can even hook up to your RCA capable TV!</p>
<p>The Motorola MOTOROKR&trade; S9-HD Stereo Headset delivers style, performance, and remarkable sound for your iPhone, iPod, or other stereo-capable Bluetooth device. This lightweight headset lets you make hands-free calls and wirelessly listen to music, and it features noise-isolating ear buds, so you&#8217;ll get high-definition surround sound for all of your calls and tracks.</p>
<p>The Motorola DC800 Bluetooth Stereo Gateway and S9-HD Bluetooth Headphone are excellent products and works amazingly great in combination. The best part that I love is: zero setup. Now, I can watch the TV, without disturbing my wife. But, I use it mainly with my computer to listen to video lectures, watch YouTube, etc. The reason, I don&#8217;t use the Motorola Headphone directly with the laptop is, that, it is tiresome to pair it with my laptop. Also for long lectures, if I pause it in between, and want to put my headphone on charge, I can&#8217;t switch the audio playback device, without reloading the online flash videos. Now, I can just sit on my bean bag, and enjoy the videos, no messy long cables, superb audio quality, no background noise.</p>
<p>BTW! Motorola DC800 Bluetooth Stereo Gateway can be used as a Bluetooth receiver also, to extend the wireless audio range.</p>
<p><strong>WARNING</strong>: Don&#8217;t buy Motorola S9 HD, from eBay. All the Chinese version, or as they call themselves original OEM editions are complete waste of money.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://priyank.in/2012/01/motorola-dc800-bluetooth-stereo-gateway-and-s9-hd-stereo-headphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stuff’s that I love: Nook Color</title>
		<link>http://priyank.in/2012/01/nook-color-review/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=nook-color-review</link>
		<comments>http://priyank.in/2012/01/nook-color-review/#comments</comments>
		<pubDate>Sat, 07 Jan 2012 14:48:55 +0000</pubDate>
		<dc:creator>Priyank</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Nook Color]]></category>
		<category><![CDATA[Product Review]]></category>

		<guid isPermaLink="false">http://priyank.in/?p=442</guid>
		<description><![CDATA[Nook Color: The Nook Color has a 7-inch 1024&#215;600 resolution multi-touch touchscreen LCD display. The Nook Color uses a Texas Instruments ARM Cortex-A8 processor running at 800 MHz. The device has 8 GB of internal memory supplied by Sandisk, but only 5GB is user-accessible and can store an estimated 6,000 books or 100 hours of [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Nook Color</strong>: </p>
<div id="video">
<p><object width="500" height="281"><param name="movie" value="https://www.youtube-nocookie.com/v/8OEli8s0UMk?version=3&amp;hl=en_US&amp;rel=0&amp;hd=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="https://www.youtube-nocookie.com/v/8OEli8s0UMk?version=3&amp;hl=en_US&amp;rel=0&amp;hd=1" type="application/x-shockwave-flash" width="500" height="281" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
</div>
<div id="paragraph">
<p>The Nook Color has a 7-inch 1024&#215;600 resolution multi-touch touchscreen LCD display. The Nook Color uses a Texas Instruments ARM Cortex-A8 processor running at 800 MHz. The device has 8 GB of internal memory supplied by Sandisk, but only 5GB is user-accessible and can store an estimated 6,000 books or 100 hours of audio. As with the original Nook, microSD and microSDHC memory cards can be inserted to expand the Nook Color&#8217;s memory up to 32 GB. Unlike the prior Nook, the Nook Color&#8217;s rechargeable battery is not user-replaceable and is expected to last for 8 hours of continuous use with the wireless turned off. The device includes a built-in speaker and a universal 3.5 mm stereo headphone jack. VividView technology is used to enhance image quality when viewing in direct sunlight.</p>
<p>In addition to rooting the stock operating system, complete versions of Android are available that can fully replace the firmware and provide functionality similar to any other Android device. Perhaps the most popular such replacement is CyanogenMod 7. CyanogenMod is a community-developed firmware replacement that can be downloaded for free. It can be installed to the internal storage or started via a microSD card, which typically will not affect the internal installation. Neither replacing the stock operating system nor running the operating system from a microSD card requires rooting.</p>
<p>With CyanogenMod 7, VividView technology multi-touch touchscreen LCD, 8+ hrs of battery life, WiFi, expandable memory up to 32 GB, millions of android apps like: Swype keyboard, ezPDFReader, Google apps, Dolphin Browser, Read It Later, Loquendo TTS Voice, Launcher Pro, DocumentsToGo, RealCalc, PowerAMP, Talking Clipboard, Screen Filter, etc. it makes an completely indispensable part of your life.</p>
<p>It&#8217;s amazing, my whole reading experience of reading books, news, emails, etc is redefined now. I am loving it.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://priyank.in/2012/01/nook-color-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Computer Vision Syndrome</title>
		<link>http://priyank.in/2012/01/computer-vision-syndrome/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=computer-vision-syndrome</link>
		<comments>http://priyank.in/2012/01/computer-vision-syndrome/#comments</comments>
		<pubDate>Wed, 04 Jan 2012 07:54:24 +0000</pubDate>
		<dc:creator>Priyank</dc:creator>
				<category><![CDATA[Fun & Entertainment]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Computer Vision Syndrome]]></category>
		<category><![CDATA[Dry Eyes]]></category>

		<guid isPermaLink="false">http://priyank.in/?p=434</guid>
		<description><![CDATA[God gives it to everyone, everyday for free. Still, I have to pay for it and get synthetic version, while everyone gets natural one. The irony is that, I can&#8217;t pray to GOD, to give me also more&#8230;tears. That&#8217;s the beauty of synthetic tears eyes drop for geek&#8217;s (Computer Vision Syndrome) dry eyes. Why don&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<div id="paragraph">
<p>God gives it to everyone, everyday for free. Still, I have to pay for it and get synthetic version, while everyone gets natural one. The irony is that, I can&#8217;t pray to GOD, to give me also more&#8230;<em>tears</em>.</p>
<p>That&#8217;s the beauty of synthetic tears eyes drop for geek&#8217;s (Computer Vision Syndrome) dry eyes.</p>
<p>Why don&#8217;t they sell &#8220;Refresh Plus Tears&#8221; in India? The &#8220;Refresh Tears&#8221; bottle once opened, is no good, after 1 month, even if you had just used it for 2 days. I think, I know the answer, $$$.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://priyank.in/2012/01/computer-vision-syndrome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to read Circuit Schematics</title>
		<link>http://priyank.in/2012/01/how-to-read-circuit-schematics/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=how-to-read-circuit-schematics</link>
		<comments>http://priyank.in/2012/01/how-to-read-circuit-schematics/#comments</comments>
		<pubDate>Wed, 04 Jan 2012 03:13:31 +0000</pubDate>
		<dc:creator>Priyank</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Electronics]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Youtube]]></category>

		<guid isPermaLink="false">http://priyank.in/?p=425</guid>
		<description><![CDATA[Yesterday, I watched this amazing tutorial from Collin&#8217;s Lab (Make Magazine). Collin has some other interesting videos also like: Electronics Tools, Infrared light, PCB Etching, Pulse Width Modulation, etc. Make sure to watch these. &#160;]]></description>
			<content:encoded><![CDATA[<div id="paragraph">
<p>Yesterday, I watched this amazing tutorial from Collin&#8217;s Lab (Make Magazine). Collin has some other interesting videos also like: Electronics Tools, Infrared light, PCB Etching, Pulse Width Modulation, etc. Make sure to watch these.</p>
</div>
<p>&nbsp; </p>
<div style="text-align:center"><object width="500" height="282"><param name="movie" value="https://www.youtube-nocookie.com/v/9cps7Q_IrX0?version=3&amp;hl=en_US&amp;rel=0&amp;hd=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="https://www.youtube-nocookie.com/v/9cps7Q_IrX0?version=3&amp;hl=en_US&amp;rel=0&amp;hd=1" type="application/x-shockwave-flash" width="500" height="282" allowscriptaccess="always" allowfullscreen="true"></embed></object></div>
]]></content:encoded>
			<wfw:commentRss>http://priyank.in/2012/01/how-to-read-circuit-schematics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Crack password protected zip files in a minute</title>
		<link>http://priyank.in/2011/12/crack-password-protected-zip-files-in-a-minute/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=crack-password-protected-zip-files-in-a-minute</link>
		<comments>http://priyank.in/2011/12/crack-password-protected-zip-files-in-a-minute/#comments</comments>
		<pubDate>Fri, 30 Dec 2011 17:16:59 +0000</pubDate>
		<dc:creator>Priyank</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Password]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://priyank.in/?p=420</guid>
		<description><![CDATA[I never knew, breaking a password protected zip file, would be so easy. Just broke a password protected zip archive of a code base. The code uses some standard code libraries, which are publicly available. Using the known plain text and Eli Biham and Paul Kocher algorithm to get the PKZip keys, it take seconds [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">I never knew, breaking a password protected zip file, would be so easy. Just broke a password protected zip archive of a code base. The code uses some standard code libraries, which are publicly available. Using the known plain text and Eli Biham and Paul Kocher algorithm to get the PKZip keys, it take seconds to break into the encrypted zip archive.</p>
<p style="text-align: justify;">This bring us, into an interesting question, why we still uses zip standard, when 7z format is there for so many years now. Also, why do we have password requirements for WiFi, etc. where password algorithms flaws have already been shown publicly. Also, what is the use of root digital certificate authority, when they can&#8217;t guarantee the authenticity of their own root certificate.</p>
]]></content:encoded>
			<wfw:commentRss>http://priyank.in/2011/12/crack-password-protected-zip-files-in-a-minute/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss><!-- Dynamic page generated in 0.503 seconds. --><!-- Cached page generated by WP-Super-Cache on 2012-01-24 09:46:02 --><!-- Compression = gzip -->

