<?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/"
	>

<channel>
	<title>Ramblings of a Coder&#039;s Mind</title>
	<atom:link href="http://karunab.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://karunab.com</link>
	<description>Got Tech? Will Hack.</description>
	<lastBuildDate>Tue, 14 May 2013 08:23:29 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Glassfish JNDI Custom Resource: Reading Primitives</title>
		<link>http://karunab.com/2013/05/14/glassfish-jndi-custom-resource-reading-primitives/</link>
		<comments>http://karunab.com/2013/05/14/glassfish-jndi-custom-resource-reading-primitives/#comments</comments>
		<pubDate>Tue, 14 May 2013 08:23:29 +0000</pubDate>
		<dc:creator>Karun</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[code sample]]></category>
		<category><![CDATA[glassfish]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[jndi]]></category>

		<guid isPermaLink="false">http://karunab.com/?p=457</guid>
		<description><![CDATA[Custom resources allow you to store server side values that are available to different J2EE applications on your server. This is an extremely useful feature that one should use. Head on over to the Glassfish admin panel (should be at localhost:4848 for most of you), go to Resources &#62; JNDI &#62; Custom Resources and create [...]]]></description>
				<content:encoded><![CDATA[<p>Custom resources allow you to store server side values that are available to different J2EE applications on your server. This is an extremely useful feature that one should use.</p>
<p>Head on over to the Glassfish admin panel (should be at localhost:4848 for most of you), go to Resources &gt; JNDI &gt; Custom Resources and create a new entry which looks like the following:</p>
<p><a href="http://karunab.com/wp-content/uploads/Glassfish-Custom-Resource.png"><img class="size-medium wp-image-459 alignnone" alt="Glassfish Custom Resource" src="http://karunab.com/wp-content/uploads/Glassfish-Custom-Resource-300x116.png" width="300" height="116" /></a></p>
<p>It is important to note here that if the name isn&#8217;t &#8220;value&#8221; (exactly), you <strong>will not be able to read this value</strong> via a InitialContext lookup in your Java code. You will get an exception as follows:</p>
<blockquote>
<pre>javax.naming.CommunicationException: Communication exception for SerialContext[myEnv={java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, java.naming.factory.state=com.sun.corba.ee.impl.presentation.rmi.JNDIStateFactoryImpl, java.naming.factory.url.pkgs=com.sun.enterprise.naming} [Root exception is java.lang.IllegalAccessException: value cannot be null]</pre>
<pre>...</pre>
<pre>Caused by: java.lang.IllegalAccessException: value cannot be null at org.glassfish.resources.custom.factory.PrimitivesAndStringFactory.getObjectInstance(PrimitivesAndStringFactory.java:99)</pre>
</blockquote>
<p>Essentially, the InitialContext code attempts to read a property named &#8220;value&#8221; by default.</p>
<p>Here is the code you can use to read the constant you&#8217;ve added:</p>
<blockquote>
<pre>new javax.naming.InitialContext().lookup("mailConfig");</pre>
</blockquote>
<p>If you want to use a JNDI entry in a not so direct way (not name it &#8220;value&#8221;), you can read it using the following code:</p>
<blockquote>
<pre>javax.naming.InitialContext c = new javax.naming.InitialContext();
javax.naming.NamingEnumeration neb = c.listBindings("");
while (neb.hasMore()) {
  javax.naming.Binding b = neb.next();
  if (b.getName().equals("mailConfig")) {
    javax.naming.Reference obj = (javax.naming.Reference) b.getObject();
    java.util.Enumeration en = obj.getAll();
    while (en.hasMoreElements()) {
      javax.naming.RefAddr ra = en.nextElement();
      System.out.println(ra.getType() + "=" + ra.getContent());
    }
  }
}</pre>
</blockquote>
<p>Took me a while to get these code samples working. Doesn&#8217;t seem to be clearly documented. Hope this helps someone else :)</p>
]]></content:encoded>
			<wfw:commentRss>http://karunab.com/2013/05/14/glassfish-jndi-custom-resource-reading-primitives/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google I/O 2013 Easter Eggs</title>
		<link>http://karunab.com/2013/05/01/google-io-2013-easter-eggs/</link>
		<comments>http://karunab.com/2013/05/01/google-io-2013-easter-eggs/#comments</comments>
		<pubDate>Wed, 01 May 2013 09:45:34 +0000</pubDate>
		<dc:creator>Karun</dc:creator>
				<category><![CDATA[Hacks]]></category>
		<category><![CDATA[easter eggs]]></category>
		<category><![CDATA[google i/o]]></category>

		<guid isPermaLink="false">http://karunab.com/?p=454</guid>
		<description><![CDATA[Most people don&#8217;t know about this but if you head on over to the Google I/O, their 2013 event website shows big I/O images that you can click and it reads out the letters &#8216;I&#8217; and &#8216;O&#8217;. Enter the right code and you get nice effects. Here&#8217;s a list of codes you can try out. [...]]]></description>
				<content:encoded><![CDATA[<p>Most people don&#8217;t know about this but if you head on over to the <a title="Google I/O 2013 Website" href="https://developers.google.com/events/io/" target="_blank">Google I/O</a>, their 2013 event website shows big I/O images that you can click and it reads out the letters &#8216;I&#8217; and &#8216;O&#8217;. Enter the right code and you get nice effects. Here&#8217;s a list of codes you can try out.</p>
<ul>
<li>Cat Mode: IIIOOIII</li>
<li>Space Mode: OOIOIOIO (doesn&#8217;t work on Android)</li>
<li>Pong Mode: IOOOOOOI</li>
<li>Bacon Mode: IOOIOOOO</li>
<li>Simone Mode: IIOIOOII</li>
<li>Eightbit Mode: OIOIOOII</li>
<li>Synth Mode: IOOOIOOO</li>
<li>Song Mode: IIOIIOII</li>
<li>ASCII Mode: OIIIIIII</li>
<li>Bowling Mode: OIIIOIOI</li>
<li>Rocket Mode: OIOOOIOI</li>
<li>Burger Mode: OOIIIOOI</li>
</ul>
<p>So head on over to the <a title="Google I/O 2013 Website" href="https://developers.google.com/events/io/" target="_blank">Google I/O 2013</a> website and try these out :) Note that Synth Mode will work only if you have audio enabled and Space Mode will not work on Android devices.</p>
<p>Source: <a href="http://zakelfassi.com/2013/03/08/all-googleio-easter-eggs/">http://zakelfassi.com/2013/03/08/all-googleio-easter-eggs/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://karunab.com/2013/05/01/google-io-2013-easter-eggs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TerraCopy: Copying files the way it&#8217;s meant to be copied</title>
		<link>http://karunab.com/2013/04/29/terracopy-copying-files-the-way-its-meant-to-be-copied/</link>
		<comments>http://karunab.com/2013/04/29/terracopy-copying-files-the-way-its-meant-to-be-copied/#comments</comments>
		<pubDate>Mon, 29 Apr 2013 11:53:54 +0000</pubDate>
		<dc:creator>Karun</dc:creator>
				<category><![CDATA[Review]]></category>
		<category><![CDATA[copy]]></category>
		<category><![CDATA[short review]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://karunab.com/?p=452</guid>
		<description><![CDATA[TeraCopy is an amazing tool for Windows which allows users to queue up copy requests, pause them, re-order them and change copy file lists at run time. It&#8217;s got a lot of power and great integration with Windows. It&#8217;s a tool which I highly recommend. Go check it out! I bet that you&#8217;ll love it [...]]]></description>
				<content:encoded><![CDATA[<p>TeraCopy is an amazing tool for Windows which allows users to queue up copy requests, pause them, re-order them and change copy file lists at run time. It&#8217;s got a lot of power and great integration with Windows. It&#8217;s a tool which I highly recommend.</p>
<p>Go <a title="TerraCopy Website" href="http://codesector.com/teracopy">check it out</a>! I bet that you&#8217;ll love it so much that you wouldn&#8217;t mind paying $20 for it! ;)</p>
]]></content:encoded>
			<wfw:commentRss>http://karunab.com/2013/04/29/terracopy-copying-files-the-way-its-meant-to-be-copied/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Converting FAT32 disks to NTFS</title>
		<link>http://karunab.com/2013/04/29/converting-fat32-disks-to-ntfs/</link>
		<comments>http://karunab.com/2013/04/29/converting-fat32-disks-to-ntfs/#comments</comments>
		<pubDate>Mon, 29 Apr 2013 11:50:30 +0000</pubDate>
		<dc:creator>Karun</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[command prompt]]></category>
		<category><![CDATA[fat32]]></category>
		<category><![CDATA[file system]]></category>
		<category><![CDATA[ntfs]]></category>

		<guid isPermaLink="false">http://karunab.com/?p=450</guid>
		<description><![CDATA[There used to be a slightly long way to do this earlier but I found a simple one line command to do it. It is probably old but it&#8217;s one I didn&#8217;t know of. convert L: /fs:NTFS This converts L: to NTFS without removing any data from the drive. This process, all in all, requires [...]]]></description>
				<content:encoded><![CDATA[<p>There used to be a slightly long way to do this earlier but I found a simple one line command to do it. It is probably old but it&#8217;s one I didn&#8217;t know of.</p>
<blockquote><p>convert L: /fs:NTFS</p></blockquote>
<p>This converts L: to NTFS without removing any data from the drive. This process, all in all, requires less than 3 seconds.</p>
]]></content:encoded>
			<wfw:commentRss>http://karunab.com/2013/04/29/converting-fat32-disks-to-ntfs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>File list generator v1.3</title>
		<link>http://karunab.com/2013/04/06/file-list-generator-v1-3/</link>
		<comments>http://karunab.com/2013/04/06/file-list-generator-v1-3/#comments</comments>
		<pubDate>Sat, 06 Apr 2013 09:16:42 +0000</pubDate>
		<dc:creator>Karun</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[File List Generator]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Source]]></category>

		<guid isPermaLink="false">http://karunab.com/?p=436</guid>
		<description><![CDATA[I noticed that my old file list generator page didn&#8217;t have a valid link any more. Since I&#8217;d go through and upload it again, I guess it would be worth it to add some minor documentation and make the path variable optional as well :) Here are some sample scripts C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe -command “&#38; ‘C:\Users\Karun\My Scripts\filelist.ps1‘” C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe -command “&#38; ‘C:\Users\Karun\My [...]]]></description>
				<content:encoded><![CDATA[<p>I noticed that my old file list generator page didn&#8217;t have a valid link any more. Since I&#8217;d go through and upload it again, I guess it would be worth it to add some minor documentation and make the path variable optional as well :)</p>
<p>Here are some sample scripts</p>
<blockquote><p>C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe <em>-command</em> “<strong>&amp; ‘C:\Users\Karun\My Scripts\filelist.ps1</strong>‘”<br />
C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe <em>-command</em> “<strong>&amp; ‘C:\Users\Karun\My Scripts\filelist.ps1</strong>‘” “<strong>.</strong>” “<strong>true</strong>”<br />
C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe <em>-command</em> “<strong>&amp; ‘C:\Users\Karun\My Scripts\filelist.ps1</strong>‘” “<strong>.</strong>” “<strong>true</strong>” “<strong>true</strong>“<br />
C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe <em>-command</em> “<strong>&amp; ‘C:\Users\Karun\My Scripts\filelist.ps1</strong>‘” “<strong>H:\Movies\HQ</strong>”<br />
C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe <em>-command</em> “<strong>&amp; ‘C:\Users\Karun\My Scripts\filelist.ps1</strong>‘” “<strong>H:\Movies</strong><strong></strong>” “<strong>true</strong>”<br />
C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe <em>-command</em> “<strong>&amp; ‘C:\Users\Karun\My Scripts\filelist.ps1</strong>‘” “<strong>H:\Movies</strong><strong></strong>” “<strong>true</strong>” “<strong>true</strong>“</p></blockquote>
<p>Add a shortcut with any of those and it will get the job done! ;)</p>
<p><a title="File List Generator Source" href="https://github.com/JAnderton/Scriptlets/blob/master/filelist.ps1" target="_blank">View Script Source Code</a> | <a title="File List Generator Page" href="http://karunab.com/dev/file-list-generator/">File List Generator page</a></p>
<p>If you’re having trouble executing the script, you should consider signing your PowerShell scripts. <a title="Scott Hanselman on &quot;Signing PowerShell Scripts&quot;" href="http://www.hanselman.com/blog/SigningPowerShellScripts.aspx" target="_blank">Scott Hanselman has written a great post on how to do so</a>. Go read it! You could simply <em>Set-ExecutionPolicy</em> to <em>Unrestricted</em> but then you’d be leaving your system open to attacks. Don’t blame anyone but yourself if you run someone else’s unsafe code and screw something up :) You have been warned :)</p>
]]></content:encoded>
			<wfw:commentRss>http://karunab.com/2013/04/06/file-list-generator-v1-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Soccer Scraper v1 Source on GitHub!</title>
		<link>http://karunab.com/2013/04/06/soccer-scraper-v1-source-on-github/</link>
		<comments>http://karunab.com/2013/04/06/soccer-scraper-v1-source-on-github/#comments</comments>
		<pubDate>Sat, 06 Apr 2013 08:04:41 +0000</pubDate>
		<dc:creator>Karun</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[GitHub]]></category>
		<category><![CDATA[scrape]]></category>
		<category><![CDATA[SMS]]></category>
		<category><![CDATA[soccer scraper]]></category>
		<category><![CDATA[Source]]></category>

		<guid isPermaLink="false">http://karunab.com/?p=434</guid>
		<description><![CDATA[Oh yes, it&#8217;s time I started uploading some of my old code to github. It&#8217;s something I&#8217;ve wanted to do for a while. For those unaware, I use Soccer Scraper to quickly view Manchester United&#8217;s schedule in IST. The base source code (circa 2008+minor fixes) is now on GitHub. There are tons of things that need [...]]]></description>
				<content:encoded><![CDATA[<p>Oh yes, it&#8217;s time I started uploading some of my old code to github. It&#8217;s something I&#8217;ve wanted to do for a while. For those unaware, I use Soccer Scraper to quickly view Manchester United&#8217;s schedule in IST. The base source code (circa 2008+minor fixes) is now on GitHub.</p>
<p>There are tons of things that need to be made configurable but first, I&#8217;d rather finish the SMS code that I had partly developed a while back along with the functional e-mail notification script. The only issue with the SMS functionality code is that it&#8217;s not stable since I scrape data onto the provider&#8217;s site (since they don&#8217;t provide a proper API :( oh well..). Once I get this working well, I&#8217;ll upload the SMS source code along with instructions on how I run it.</p>
<p>More details on the <a title="Soccer Scraper" href="http://karunab.com/dev/soccer-scraper/" target="_blank">Soccer Scraper development page</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://karunab.com/2013/04/06/soccer-scraper-v1-source-on-github/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Back to blogging!</title>
		<link>http://karunab.com/2013/04/05/back-to-blogging/</link>
		<comments>http://karunab.com/2013/04/05/back-to-blogging/#comments</comments>
		<pubDate>Thu, 04 Apr 2013 19:50:21 +0000</pubDate>
		<dc:creator>Karun</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://karunab.com/?p=419</guid>
		<description><![CDATA[I realize that over the past 3 and a half years I haven&#8217;t blogged as much as I used it. It&#8217;s not because I had nothing to say but was mainly because most things I had worked on were things I wasn&#8217;t allowed to talk about in public (thanks to NDAs and policies I needed [...]]]></description>
				<content:encoded><![CDATA[<p>I realize that over the past 3 and a half years I haven&#8217;t blogged as much as I used it. It&#8217;s not because I had nothing to say but was mainly because most things I had worked on were things I wasn&#8217;t allowed to talk about in public (thanks to NDAs and policies I needed to abide by). Since then, I&#8217;ve moved out of my previous organization and shall soon start working at a new place. Though the NDAs will continue, I am still allowed to pass along general learnings, which I&#8217;m keen to do.</p>
<p>More posts, coming soon!</p>
]]></content:encoded>
			<wfw:commentRss>http://karunab.com/2013/04/05/back-to-blogging/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unable to buy anything on XBox 360 and login to xbox.com</title>
		<link>http://karunab.com/2012/10/06/unable-to-buy-anything-on-xbox-360-and-login-to-xbox-com/</link>
		<comments>http://karunab.com/2012/10/06/unable-to-buy-anything-on-xbox-360-and-login-to-xbox-com/#comments</comments>
		<pubDate>Sat, 06 Oct 2012 13:59:04 +0000</pubDate>
		<dc:creator>Karun</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[credit card]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[login]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[payment]]></category>
		<category><![CDATA[remove]]></category>
		<category><![CDATA[xbox]]></category>

		<guid isPermaLink="false">http://karunab.com/?p=412</guid>
		<description><![CDATA[If you&#8217;re having issues buying anything on XBox 360 and doesn&#8217;t even let you login to xbox.com and it keeps kicking you out, there is a chance that one of the credit cards you have stored on record is invalid. If you read the XBox help on how to remove a payment option, they ask you [...]]]></description>
				<content:encoded><![CDATA[<p>If you&#8217;re having issues buying anything on XBox 360 and doesn&#8217;t even let you login to xbox.com and it keeps kicking you out, there is a chance that one of the credit cards you have stored on record is invalid.</p>
<p>If you read the <a href="http://support.xbox.com/en-US/billing-and-subscriptions/manage-payment-options/remove-xbox-live-payment-option">XBox help on how to remove a payment option</a>, they ask you to go to &#8220;Payment &amp; Billing&#8221; and this site won&#8217;t be accessible either.</p>
<p>Your best bet is to go to <a href="https://commerce.microsoft.com/PaymentHub/PaymentInstrument">commerce.microsoft.com</a> and then to their &#8220;payment options&#8221; page. Here, you will see your credit card. Click on it and click remove. Add a new payment option if you please. After this, you should be able to access xbox.com and buy things on your xbox</p>
]]></content:encoded>
			<wfw:commentRss>http://karunab.com/2012/10/06/unable-to-buy-anything-on-xbox-360-and-login-to-xbox-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Movement to Bumblebee</title>
		<link>http://karunab.com/2012/07/16/movement-to-bumblebee/</link>
		<comments>http://karunab.com/2012/07/16/movement-to-bumblebee/#comments</comments>
		<pubDate>Mon, 16 Jul 2012 09:48:52 +0000</pubDate>
		<dc:creator>Karun</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[news]]></category>

		<guid isPermaLink="false">http://karunab.com/?p=409</guid>
		<description><![CDATA[I finally took the time out to move away from WordPress into my own server. It&#8217;s been a long time coming but it&#8217;s finally here! I hope this will stop issues for WordPress caused by shared hosting. If it doesn&#8217;t, it&#8217;s out with WordPress :) I ported over data and my database after cleaning up [...]]]></description>
				<content:encoded><![CDATA[<p>I finally took the time out to move away from WordPress into my own server. It&#8217;s been a long time coming but it&#8217;s finally here! I hope this will stop issues for WordPress caused by shared hosting. If it doesn&#8217;t, it&#8217;s out with WordPress :)</p>
<p>I ported over data and my database after cleaning up the infections. I have, however lost some of the uploaded images from my past posts so any issues there are regretted :( These images are gone from my Dreamhost server and hence can&#8217;t be ported over.. oh well :&#8217;(</p>
<p>Thanks once again to those who helped me with Dreamhost.. let&#8217;s welcome the movement to our very own server, Bumblebee! :)</p>
]]></content:encoded>
			<wfw:commentRss>http://karunab.com/2012/07/16/movement-to-bumblebee/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make a bootable Universal Flash Drive</title>
		<link>http://karunab.com/2011/10/06/make-a-bootable-universal-flash-drive/</link>
		<comments>http://karunab.com/2011/10/06/make-a-bootable-universal-flash-drive/#comments</comments>
		<pubDate>Thu, 06 Oct 2011 10:48:07 +0000</pubDate>
		<dc:creator>Karun</dc:creator>
				<category><![CDATA[Hacks]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Bootable]]></category>
		<category><![CDATA[Flash Drive]]></category>
		<category><![CDATA[Pen Drive]]></category>
		<category><![CDATA[UFD]]></category>
		<category><![CDATA[USB]]></category>

		<guid isPermaLink="false">http://karunab.com/?p=403</guid>
		<description><![CDATA[This is a really old trick for Universal Flash Drives (UFDs) and I&#8217;ve been using it for years. I just thought I should document the steps so it&#8217;s available as quick reference for me :) Insert your UFD and make sure all your data is backed up because we&#8217;re going to format it. Run command [...]]]></description>
				<content:encoded><![CDATA[<p>This is a really old trick for Universal Flash Drives (UFDs) and I&#8217;ve been using it for years. I just thought I should document the steps so it&#8217;s available as quick reference for me :)</p>
<ol>
<li>Insert your UFD and make sure all your data is backed up because we&#8217;re going to format it.</li>
<li>Run command prompt</li>
<li>Open diskpart (will ask for elevation)</li>
<li>Type &#8220;list disk&#8221;</li>
<li>find what disk is your USB based on the size. Mine is number 3.</li>
<li>type &#8220;select disk 3&#8243; (where 3 is the number that the system associates with my flash drive)</li>
<li>type &#8220;clean&#8221;</li>
<li>type &#8220;create partition primary&#8221;</li>
<li>type &#8220;select partition 1&#8243;</li>
<li>type &#8220;active&#8221;</li>
<li>type &#8220;format fs=ntfs&#8221;. Might take some time based on the size of your drive</li>
<li>type &#8220;assign&#8221;. This gives your drive a letter on the system.</li>
<li>type &#8220;exit&#8221;. Closes diskpart.</li>
</ol>
<div>For step 11, you might get away with &#8220;format fs=ntfs quick&#8221; as well since full format takes forever. Now your UFD is ready for installing Windows, Linux or anything else you want. You can now even boot an operating system off it ;)</div>
]]></content:encoded>
			<wfw:commentRss>http://karunab.com/2011/10/06/make-a-bootable-universal-flash-drive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
