<?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>Priyank</title>
	<atom:link href="http://priyank.in/feed/" rel="self" type="application/rss+xml" />
	<link>http://priyank.in</link>
	<description>A n00b learning to whisper w00t, everyday.</description>
	<lastBuildDate>Mon, 17 Sep 2012 21:08:48 +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>MyPhone 5: A GSM based phone using Raspberry Pi and SIM900</title>
		<link>http://priyank.in/2012/09/myphone-5-a-gsm-based-phone-using-raspberry-pi-and-simcom-900/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=myphone-5-a-gsm-based-phone-using-raspberry-pi-and-simcom-900</link>
		<comments>http://priyank.in/2012/09/myphone-5-a-gsm-based-phone-using-raspberry-pi-and-simcom-900/#comments</comments>
		<pubDate>Mon, 17 Sep 2012 21:08:48 +0000</pubDate>
		<dc:creator>Priyank</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[AT Commands]]></category>
		<category><![CDATA[GPIO]]></category>
		<category><![CDATA[GSM]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Raspberry Pi]]></category>
		<category><![CDATA[SIM900]]></category>
		<category><![CDATA[SIMCOM]]></category>
		<category><![CDATA[USART]]></category>

		<guid isPermaLink="false">http://priyank.in/?p=542</guid>
		<description><![CDATA[A demo of using SIMCOM 900 GSM module using Raspberry Pi USART, using the Linux minicom terminal program.]]></description>
				<content:encoded><![CDATA[<div id="paragraph">
<p>A demo of using SIMCOM 900 GSM module using Raspberry Pi USART, using the Linux minicom terminal program.</p>
</div>
<p><br/></p>
<div id="video"><iframe width="480" height="360" src="https://www.youtube.com/embed/Q6CO8wCFklE" frameborder="0" allowfullscreen></iframe></div>
]]></content:encoded>
			<wfw:commentRss>http://priyank.in/2012/09/myphone-5-a-gsm-based-phone-using-raspberry-pi-and-simcom-900/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Raspberry Pi LED Blinking and GPIO Demo using Python</title>
		<link>http://priyank.in/2012/09/raspberry-pi-led-blinking-and-gpio-demo-using-python/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=raspberry-pi-led-blinking-and-gpio-demo-using-python</link>
		<comments>http://priyank.in/2012/09/raspberry-pi-led-blinking-and-gpio-demo-using-python/#comments</comments>
		<pubDate>Sat, 15 Sep 2012 12:26:55 +0000</pubDate>
		<dc:creator>Priyank</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Demo]]></category>
		<category><![CDATA[GPIO]]></category>
		<category><![CDATA[Led Blinking]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Raspberry Pi]]></category>

		<guid isPermaLink="false">http://priyank.in/?p=534</guid>
		<description><![CDATA[This is a demo video of using Raspberry Pi showing LED Blinking and using GPIO in Python. More details can be found at the following links: http://www.raspberrypi-spy.co.uk/2012/07/install-rpi-gpio-library-in-raspbian/ https://www.youtube.com/watch?v=q_NvDTZIaS4 http://lwk.mjhosting.co.uk/?p=343]]></description>
				<content:encoded><![CDATA[<div id="paragraph">
<p>This is a demo video of using Raspberry Pi showing LED Blinking and using GPIO in Python.</p>
<p>More details can be found at the following links:</p>
<ul>
<li><a href="http://www.raspberrypi-spy.co.uk/2012/07/install-rpi-gpio-library-in-raspbian/" title="http://www.raspberrypi-spy.co.uk/2012/07/install-rpi-gpio-library-in-raspbian/" target="_blank">http://www.raspberrypi-spy.co.uk/2012/07/install-rpi-gpio-library-in-raspbian/</a></li>
<li><a href="https://www.youtube.com/watch?v=q_NvDTZIaS4" title="https://www.youtube.com/watch?v=q_NvDTZIaS4" target="_blank">https://www.youtube.com/watch?v=q_NvDTZIaS4</a></li>
<li><a href="http://lwk.mjhosting.co.uk/?p=343" title="http://lwk.mjhosting.co.uk/?p=343" target="_blank">http://lwk.mjhosting.co.uk/?p=343</a></li>
</ul>
</div>
<p><br/></p>
<div id="video"><iframe width="480" height="360" src="https://www.youtube.com/embed/oORa9LATMdA" frameborder="0" allowfullscreen></iframe></div>
<p><br/></p>
<pre class="brush: python; title: ; notranslate">
from time import sleep
import RPi.GPIO as GPIO

# to use Raspberry Pi board pin numbers
GPIO.setmode(GPIO.BOARD)

# set up the GPIO channels - output
GPIO.setup(13, GPIO.OUT)
GPIO.setup(15, GPIO.OUT)
GPIO.setup(16, GPIO.OUT)
GPIO.setup(18, GPIO.OUT)

while 1:
    GPIO.output(13, False)
    sleep(1)
    GPIO.output(13, True)
    sleep(1)
    
    GPIO.output(15, False)
    sleep(1)
    GPIO.output(15, True)
    sleep(1)
    
    GPIO.output(16, False)
    sleep(1)
    GPIO.output(16, True)
    sleep(1)
    
    GPIO.output(18, False)
    sleep(1)
    GPIO.output(18, True)
    sleep(1)
</pre>
]]></content:encoded>
			<wfw:commentRss>http://priyank.in/2012/09/raspberry-pi-led-blinking-and-gpio-demo-using-python/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>State of the Indian News Channels</title>
		<link>http://priyank.in/2012/07/state_of_the_indian_news_channels/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=state_of_the_indian_news_channels</link>
		<comments>http://priyank.in/2012/07/state_of_the_indian_news_channels/#comments</comments>
		<pubDate>Fri, 13 Jul 2012 09:55:46 +0000</pubDate>
		<dc:creator>Priyank</dc:creator>
				<category><![CDATA[Fun & Entertainment]]></category>
		<category><![CDATA[Commedy]]></category>
		<category><![CDATA[Indian News Channels]]></category>

		<guid isPermaLink="false">http://priyank.in/?p=528</guid>
		<description><![CDATA[Here is how the Indian TV news channel would report the Jack and Jill nursery rhyme. All names (except those of Jack and Jill), are fictitious. Prashant – TV Anchor: Two persons have been injured in a freak climbing accident. Jack and his companion Jill had gone up a hill to fetch a pail of [...]]]></description>
				<content:encoded><![CDATA[<div id="paragraph">
<p>Here is how the Indian TV news channel would report the Jack and Jill nursery rhyme. All names (except those of Jack and Jill), are fictitious.</p>
</div>
<p><b>Prashant – TV Anchor</b>:</p>
<div id="paragraph">
<p>Two persons have been injured in a freak climbing accident. Jack and his companion Jill had gone up a hill to fetch a pail of water when Jack fell down and broke his crown. Jill came tumbling after. Live from the hill, our reporter, Amrita Shah, takes up the story.</p>
</div>
<p><b>Amrita Shah</b>:</p>
<div id="paragraph">
<p>Thank you Prashant. Well, as you say, two persons – Jack and Jill – had gone up a hill to fetch a pail of water. Suddenly, Jack fell down and broke his crown and Jill came tumbling after. Prashant.</p>
</div>
<p><b>Prashant</b>:</p>
<div id="paragraph">
<p>Thank you Amrita. What do we know about the hill?</p>
</div>
<p><b>Amrita</b>:</p>
<div id="paragraph">
<p>Not too much. Jack was going up the hill to fetch a pail of water when he fell down and broke his crown. Jill came tumbling after [Headline appears at the foot of the TV screen: "hill breaks crown of pail-boy Jack"]</p>
</div>
<p><b>Prashant</b>:</p>
<div id="paragraph">
<p>What news of Jack and Jill?</p>
</div>
<p><b>Amrita</b>:</p>
<div id="paragraph">
<p>Prashant, it seems that Jack had gone up the hill to fetch a pail of water. We know nothing about the pail, or how heavy it was but it seems that Jack fell down and broke his crown and Jill came tumbling after. I have here with me, an eyewitness to the accident, Mr. Shahid Trivedi. Mr. Shahid, tell us what you saw.</p>
</div>
<p><b>Shahid Trivedi</b>:</p>
<div id="paragraph">
<p>Jack and Jill went up the hill to fetch a pail of water. Jack fell down and broke his crown and Jill came tumbling after. [Headline appears at the foot of the TV screen: "Boy and girl tumble down hill. Water spilled"]</p>
</div>
<p><b>Amrita</b>:</p>
<div id="paragraph">
<p>Jack and Jill. What do we know about them? Are they brother and sister? Are they married? Just what were they doing on the hill together?</p>
</div>
<p><b>Shahid Trivedi</b>:</p>
<div id="paragraph">
<p>Jack and Jill went up the hill to fetch a pail a water.</p>
</div>
<p><b>Amrita</b>:</p>
<div id="paragraph">
<p>And what happened next?</p>
</div>
<p><b>Shahid Trivedi</b>:</p>
<div id="paragraph">
<p>Jack fell down and broke his crown</p>
</div>
<p><b>Amrita</b>:</p>
<div id="paragraph">
<p>Go on.</p>
</div>
<p><b>Shahid Trivedi</b>:</p>
<div id="paragraph">
<p>And Jill came tumbling after.</p>
</div>
<p><b>Amrita</b>:</p>
<div id="paragraph">
<p>Prashant, there you have it. Two people innocently going about their business to fetch a pail of water when one of them falls down, breaks his crown, and the other comes tumbling after. Back to you in the studio Prashant. [Headline appears at the foot of the TV screen: "Water errand ends in tragedy"]</p>
</div>
<p><b>Prashant</b>:</p>
<div id="paragraph">
<p>I have with me in the studio now, Professor Chandrashekar Belagare from the Indian Institute of Applied Hill Sciences. Professor: a hill; Jack; Jill; a pail of water. A tragedy waiting to happen?</p>
</div>
<p><b>Professor</b>:</p>
<div id="paragraph">
<p>Well that depends on the hill, the two persons, the object they were carrying and the conditions underfoot. Let us look at the evidence so far.</p>
<p>Jack and Jill</p>
</div>
<div id="paragraph">
<p>Went up the hill</p>
<p>To fetch a pail of water.</p>
<p>Jack fell down</p>
<p>And broke his crown</p>
<p>And Jill came tumbling after.</p>
<p>Clearly, one would suspect that if Jack’s fall was severe enough to break his crown then the surface of the hill must have been slippery or unstable. But I think we’re overlooking something quite fundamental here. Who was carrying the pail? Jack fell down and broke his crown and – this is the key – Jill came tumbling after. If Jack and Jill had been carrying the pail together, would they not have fallen at the same time? The fact that Jill came tumbling after suggests that Jack lost his footing first and perhaps knocked Jill over as he slipped.</p>
</div>
<p><b>Prashant</b>:</p>
<div id="paragraph">
<p>Professor thank you very much. So there we have it, two persons – Jack and Jill – went up the hill to fetch a pail of water. Jack fell down and broke his crown and Jill came tumbling after. Later in the program, Shayad Halwa reveals names of ministers. But next up, join us after the break for a studio discussion about hills, boys and girls and whether water-fetching trips should be supervised. We’ll be right back…</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://priyank.in/2012/07/state_of_the_indian_news_channels/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Intelligent Lighting Control using AVR Microcontroller</title>
		<link>http://priyank.in/2012/05/intelligent-lighting-control-using-avr-microcontroller/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=intelligent-lighting-control-using-avr-microcontroller</link>
		<comments>http://priyank.in/2012/05/intelligent-lighting-control-using-avr-microcontroller/#comments</comments>
		<pubDate>Sat, 12 May 2012 04:17:13 +0000</pubDate>
		<dc:creator>Priyank</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[ADC]]></category>
		<category><![CDATA[ATMega32]]></category>
		<category><![CDATA[AVR]]></category>
		<category><![CDATA[Intelligent Lighting]]></category>
		<category><![CDATA[PWM]]></category>

		<guid isPermaLink="false">http://priyank.in/?p=521</guid>
		<description><![CDATA[This dissertation is an effort to learn embedded system development and embedded programming using AVR microcontroller. This dissertation will look at the working of Analog to Digital conversion (ADC) and the usage of Pulse Width Modulation (PWM) for Digital to Analog conversion (DAC). This dissertation will also cover the features of AVR microcontroller and the [...]]]></description>
				<content:encoded><![CDATA[<div id="paragraph">
<p>This dissertation is an effort to learn embedded system development and embedded programming using AVR microcontroller.</p>
<p>This dissertation will look at the working of Analog to Digital conversion (ADC) and the usage of Pulse Width Modulation (PWM) for Digital to Analog conversion (DAC). This dissertation will also cover the features of AVR microcontroller and the usage of timers and ADC conversion in AVR microcontroller.</p>
<p>This dissertation will combine the Analog to Digital conversion (ADC) and Pulse Width Modulation (PWM) to create an intelligent lighting, which will be automatically controlled based on the external ambient lighting. So, at dusk, when the external sunlight gradually decreases, the intelligent light will start, and it brightness will start gradually increasing to its maximum. Similarly, at dawn, the first appearance of light in the sky before sunrise, the intelligent light will slowly start dimming and will automatically switch off in the morning.</p>
</div>
<pre class="brush: cpp; title: ; notranslate">
#define F_CPU 8000000UL

#include &lt;avr/io.h&gt;
#include &lt;util/delay.h&gt;

// initialize adc
void adcInit()
{
  // AREF = AVcc
  ADMUX = (1&lt;&lt;REFS0);

  // ADC Enable and prescaler of 128
  // 8000000/128 = 62500
  ADCSRA = (1&lt;&lt;ADEN)|(1&lt;&lt;ADPS2)|(1&lt;&lt;ADPS1)|(1&lt;&lt;ADPS0);
}

// read adc value
uint16_t adcRead(uint8_t ch)
{
  // select the corresponding channel 0~7
  // ANDing with '7' will always keep the value
  // of 'ch' between 0 and 7
  ch &amp;= 0b00000111;  // AND operation with 7
  ADMUX = (ADMUX &amp; 0xF8)|ch;   // clears the bottom 3 bits before ORing

  // start single conversion
  // write '1' to ADSC
  ADCSRA |= (1&lt;&lt;ADSC);

  // wait for conversion to complete
  // till then, run loop continuously
  // The loop does nothing while ADIF is set to 0, 
  // it exits as soon as ADIF is set to one, 
  // i.e. conversion is complete. 
  while(!(ADCSRA &amp; (1&lt;&lt;ADIF)));

  //Clear ADIF by writing one to it
  ADCSRA|=(1&lt;&lt;ADIF);
  
  return (ADC);
}

void pwmInit()
{
   /*
   TCCR0 - Timer Counter Control Register (TIMER0)
   -----------------------------------------------
   BITS DESCRIPTION
   

   NO:   NAME   DESCRIPTION
   --------------------------
   BIT 7 : FOC0   Force Output Compare [Not used in this example]
   BIT 6 : WGM00  Wave form generation mode  [SET to 1]
   BIT 5 : COM01  Compare Output Mode    [SET to 1]
   BIT 4 : COM00  Compare Output Mode    [SET to 0]

   BIT 3 : WGM01  Wave form generation mode  [SET to 1]
   BIT 2 : CS02   Clock Select         [SET to 0]
   BIT 1 : CS01   Clock Select         [SET to 0]
   BIT 0 : CS00   Clock Select         [SET to 1]

   The above settings are for
   --------------------------

   Timer Clock = CPU Clock (No Prescalling)
   Mode    = Fast PWM
   PWM Output  = Non Inverted

   */


   TCCR0|=(1&lt;&lt;WGM00)|(1&lt;&lt;WGM01)|(1&lt;&lt;COM01)|(1&lt;&lt;CS00);

   //Set OC0 PIN as output. It is  PB3 on ATmega16 ATmega32

   DDRB|=(1&lt;&lt;PB3);
}

/******************************************************************
Sets the duty cycle of output. 

Arguments
---------
duty: Between 0 - 255

0 = 0%

255 = 100%

The Function sets the duty cycle of pwm output generated on OC0 PIN
The average voltage on this output pin will be

         duty
 Vout=  ------ x 5v
         255 

This can be used to control the brightness of LED or Speed of Motor.
*********************************************************************/

void setPWMOutput(uint8_t duty)
{
   OCR0=duty;
}

int main()
{
  uint16_t adcResult;
  uint8_t pwmBrightness;

  // initialize adc and pwm
  adcInit();
  pwmInit();

  _delay_ms(50);

  while(1)
  {
    adcResult = adcRead(0);    // read adc value at PA0
    
    // Mapping the adc value in the range of 0-1024 (2^10 bits)
    // to 0-255, which can be sent to 8 bit OCR0 register.
    // So the adcResult is divided by 4, to make it in the 
    // range of 0-255.
    // After that the value is subtracted from 255, so that if 
    // the adc value is less, we want to send high value to the
    // OCR0, for increasing brightness, and if the adc value is
    // high, we want to send lower values for the PWM signal 
    // generation, to reduce the brightness of the LED.
    pwmBrightness = (uint8_t)(255 - (adcResult/4));
    
    //Send the pwm value to the OCR0, to control the LED brightness
    setPWMOutput(pwmBrightness);
   }
}
</pre>
<div id="paragraph">
<p>The presentation and the project report can be downloaded from the previous post: <a href="http://priyank.in/2012/05/seminar-on-embedded-system-development-using-avr-microcontroller/" title="Seminar on Embedded System Development using AVR Microcontroller" target="_blank">Seminar on Embedded System Development using AVR Microcontroller</a>.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://priyank.in/2012/05/intelligent-lighting-control-using-avr-microcontroller/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Seminar on Embedded System Development using AVR Microcontroller</title>
		<link>http://priyank.in/2012/05/seminar-on-embedded-system-development-using-avr-microcontroller/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=seminar-on-embedded-system-development-using-avr-microcontroller</link>
		<comments>http://priyank.in/2012/05/seminar-on-embedded-system-development-using-avr-microcontroller/#comments</comments>
		<pubDate>Sat, 12 May 2012 03:48:10 +0000</pubDate>
		<dc:creator>Priyank</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[AVR]]></category>
		<category><![CDATA[Embedded Systems]]></category>
		<category><![CDATA[Seminar]]></category>

		<guid isPermaLink="false">http://priyank.in/?p=514</guid>
		<description><![CDATA[You can download the project report and the presentation from the below links: Project Presentation Project Report]]></description>
				<content:encoded><![CDATA[<div class="video">
<p><img src="http://priyank.in/wp-content/uploads/2012/05/AVREmbeddedSystems.jpg" alt="Embedded System Development using AVR Microcontroller" /></p>
</div>
<div class="paragraph">
<p>You can download the project report and the presentation from the below links:</p>
<ul>
<li><a href="http://priyank.in/wp-content/uploads/2012/05/presentation.pdf" title="Project Presentation" target="_blank">Project Presentation</a></li>
<li><a href="http://priyank.in/wp-content/uploads/2012/05/report.pdf" title="Project Report" target="_blank">Project Report</a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://priyank.in/2012/05/seminar-on-embedded-system-development-using-avr-microcontroller/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox New Download Manager Toolbar Interface</title>
		<link>http://priyank.in/2012/04/firefox-new-download-manager-toolbar-interface/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=firefox-new-download-manager-toolbar-interface</link>
		<comments>http://priyank.in/2012/04/firefox-new-download-manager-toolbar-interface/#comments</comments>
		<pubDate>Sat, 21 Apr 2012 15:27:42 +0000</pubDate>
		<dc:creator>Priyank</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[GUI]]></category>

		<guid isPermaLink="false">http://priyank.in/?p=506</guid>
		<description><![CDATA[Firefox has released a new, easy and improved interface to the download manager. Instead of popping out a new download window, now a toolbar button will show the remaining time, and the toolbar window will automatically disappear when the download is complete. Also, when you click on that toolbar button, a new tool tip like [...]]]></description>
				<content:encoded><![CDATA[<div id="paragraph">
<p>Firefox has released a new, easy and improved interface to the download manager. Instead of popping out a new download window, now a toolbar button will show the remaining time, and the toolbar window will automatically disappear when the download is complete. Also, when you click on that toolbar button, a new tool tip like window, will open, which will show each file details.</p>
</div>
<div id="video">
<p><img src="http://priyank.in/wp-content/uploads/2012/04/firefox_download_manager.png" alt="Firefox  New Download Manager Toolbar Interface" /></p>
<p><img src="http://priyank.in/wp-content/uploads/2012/04/firefox_download_manager_popup.png" alt="Firefox Download Manager Popup Window" /></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://priyank.in/2012/04/firefox-new-download-manager-toolbar-interface/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Google Reader&#8217;s UI Issue Fixed</title>
		<link>http://priyank.in/2012/02/google-reader-ui-issue-fixed/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=google-reader-ui-issue-fixed</link>
		<comments>http://priyank.in/2012/02/google-reader-ui-issue-fixed/#comments</comments>
		<pubDate>Wed, 22 Feb 2012 11:29:06 +0000</pubDate>
		<dc:creator>Priyank</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[User Experience]]></category>

		<guid isPermaLink="false">http://priyank.in/?p=487</guid>
		<description><![CDATA[In my last post, I have showed, how the new Google Reader&#8217;s user interface is so unfriendly, wasting more than 40% screen space. I came across, some user defined CSS to solve the Google user interface issues. I have modified the CSS by Ingmar Hupp to provide more reading space for news items. I am [...]]]></description>
				<content:encoded><![CDATA[<div id="paragraph">
<p>In my last post, I have showed, how the new Google Reader&#8217;s user interface is so unfriendly, wasting more than 40% screen space. I came across, some user defined CSS to solve the Google user interface issues. I have modified the CSS by <a href="https://gist.github.com/1335331" title="Ingmar Hupp" target="_blank">Ingmar Hupp</a> to provide more reading space for news items. I am using <a href="https://addons.mozilla.org/en-US/firefox/addon/stylish/" title="Stylish Firefox addon" target="_blank">Stylish</a> addon for Firefox, to load the user CSS.</p>
</div>
<div id="video">
<p><img src="http://priyank.in/wp-content/uploads/2012/02/google_fixed_ui.png" alt="Google Reader's UI Layout Issue Fixed" /><br/>Google Reader&#8217;s Fixed GUI</p>
<h2>
<p align="center">vs</p>
</h2>
<p><img src="http://priyank.in/wp-content/uploads/2012/02/google_new_ui1.png" alt="Google Reader's Stupid GUI" /><br/>Google Reader&#8217;s Stupid GUI</p>
</div>
<div id="paragraph">
<p>I am not a CSS expert, and this CSS has lot of issues, and it interferes with GMail and other Google products. So, I just disable it, when I am not using the Google Reader. The idea here is to show Google: how their GUI needs to be user friendly. Google Reader is basically a reader for RSS feeds, and any reader&#8217;s first priority should be to use the screen real estate efficiently.</p>
</div>
<div id="paragraph">
<p>
Download the fixed CSS from: <a href="http://priyank.in/wp-content/uploads/2012/02/greader.css" title="Google Reader Fixed CSS" target="_blank">http://priyank.in/wp-content/uploads/2012/02/greader.css</a></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://priyank.in/2012/02/google-reader-ui-issue-fixed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Reader&#8217;s new and amazing user interface</title>
		<link>http://priyank.in/2012/02/google-readers-new-and-amazing-user-interface/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=google-readers-new-and-amazing-user-interface</link>
		<comments>http://priyank.in/2012/02/google-readers-new-and-amazing-user-interface/#comments</comments>
		<pubDate>Tue, 21 Feb 2012 13:53:01 +0000</pubDate>
		<dc:creator>Priyank</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[User Interface]]></category>

		<guid isPermaLink="false">http://priyank.in/?p=481</guid>
		<description><![CDATA[]]></description>
				<content:encoded><![CDATA[<div id="image">
<p><img src="http://priyank.in/wp-content/uploads/2012/02/google_new_ui.png" alt="Google Reader new and amazing user interface" /></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://priyank.in/2012/02/google-readers-new-and-amazing-user-interface/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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&#038;utm_medium=rss&#038;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&#038;utm_medium=rss&#038;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>
	</channel>
</rss>

<!-- Dynamic page generated in 1.720 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2013-05-19 02:52:08 -->
