<?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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Web Development Script Guides</title>
	<atom:link href="http://programmerthoughts.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://programmerthoughts.wordpress.com</link>
	<description>Thoughts on Web and Computer Programming and a lot more</description>
	<lastBuildDate>Tue, 31 Jan 2012 20:27:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='programmerthoughts.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Web Development Script Guides</title>
		<link>http://programmerthoughts.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://programmerthoughts.wordpress.com/osd.xml" title="Web Development Script Guides" />
	<atom:link rel='hub' href='http://programmerthoughts.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Installing A New HardDrive on Ubuntu using Terminal (CLI)</title>
		<link>http://programmerthoughts.wordpress.com/2012/01/31/installing-a-new-harddrive-on-ubuntu-using-terminal-cli/</link>
		<comments>http://programmerthoughts.wordpress.com/2012/01/31/installing-a-new-harddrive-on-ubuntu-using-terminal-cli/#comments</comments>
		<pubDate>Tue, 31 Jan 2012 20:26:14 +0000</pubDate>
		<dc:creator>programmerthoughts</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[Linux Ubuntu]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://programmerthoughts.wordpress.com/?p=706</guid>
		<description><![CDATA[I am hoping that you already have knowledge regarding filesystems, so I won&#8217;t discuss it here. A. Determine Drive Information We assume that the hard drive is physically installed and detected by the BIOS. To determine the path that your system has assigned to the new hard drive, open a terminal and run: sudo lshw [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=programmerthoughts.wordpress.com&amp;blog=12226583&amp;post=706&amp;subd=programmerthoughts&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I am hoping that you already have knowledge regarding filesystems, so I won&#8217;t discuss it here.</p>
<h4 id="Determine_Drive_Information">A. Determine Drive Information</h4>
<p>We assume that the hard drive is physically installed and detected by the BIOS.</p>
<p>To determine the path that your system has assigned to the new hard drive, open a terminal and run:</p>
<pre>sudo lshw -C disk</pre>
<p>This should produce output similar to this sample:</p>
<pre> *-disk
       description: ATA Disk
       product: IC25N040ATCS04-0
       vendor: Hitachi
       physical id: 0
       bus info: ide@0.0
       logical name: /dev/sdb
       version: CA4OA71A
       serial: CSH405DCLSHK6B
       size: 37GB
       capacity: 37GB</pre>
<p>Be sure to note the &#8220;logical name&#8221; entry, as it will be used several times throughout this guide.</p>
<h4>B. Partition The Disk</h4>
<p>You&#8217;ll be using &#8220;fdisk&#8221; to accomplish this. Refer back to the logical name you noted from earlier. For illustration, I&#8217;ll use /dev/sdb, and assume that you want a single partition on the disk, occupying all the free space.</p>
<p>If the number of cylinders in the disk is larger than 1024 (and large hard drives always have more), it could, in certain setups, cause problems with:</p>
<ol type="1">
<li>software that runs at boot time (e.g., old versions of LILO)</li>
<li>booting and partitioning software from other OSs (e.g., DOS FDISK, OS/2 FDISK)</li>
</ol>
<p>Otherwise, this will not negatively affect you.</p>
<p>1) Initiate fdisk with the following command:</p>
<pre>sudo fdisk /dev/sdb</pre>
<p>2) Fdisk will display the following menu:</p>
<pre>Command (m for help): m &lt;enter&gt;
  Command action
   a   toggle a bootable flag
   b   edit bsd disklabel
   c   toggle the dos compatibility flag
   d   delete a partition
   l   list known partition types
   m   print this menu
   n   add a new partition
   o   create a new empty DOS partition table
   p   print the partition table
   q   quit without saving changes
   s   create a new empty Sun disklabel
   t   change a partition's system id
   u   change display/entry units
   v   verify the partition table
   w   write table to disk and exit
   x   extra functionality (experts only)

  Command (m for help):</pre>
<p>3) We want to add a new partition. Type &#8220;n&#8221; and press enter.</p>
<pre> Command action
   e   extended
   p   primary partition (1-4)</pre>
<p>4) We want a primary partition. Enter &#8220;p&#8221; and enter.</p>
<pre>Partition number (1-4):</pre>
<p>5) Since this will be the only partition on the drive, number 1. Enter &#8220;1&#8243; and enter.</p>
<pre>  Command (m for help):</pre>
<p>If it asks about the first cylinder, just type &#8220;1&#8243; and enter. (We are making 1 partition to use the whole disk, so it should start at the beginning.)</p>
<p>6) Now that the partition is entered, choose option &#8220;w&#8221; to write the partition table to the disk. Type &#8220;w&#8221; and enter.</p>
<pre>The partition table has been altered!</pre>
<p>7) If all went well, you now have a properly partitioned hard drive that&#8217;s ready to be formatted. Since this is the first partition, Linux will recognize it as /dev/sdb1, while the <strong>disk</strong> that the partition is on is still /dev/sdb.</p>
<p>To format the new partition as ext3 file system (best for use under Ubuntu):</p>
<pre>  sudo mkfs -t ext3 /dev/sdb1</pre>
<p>To format the new partition as fat32 file system (best for use under Ubuntu &amp; Windows):</p>
<pre>  sudo mkfs -t fat32 /dev/sdb1</pre>
<p>As always, substitute &#8220;/dev/sdb1&#8243; with your own partition&#8217;s path.</p>
<h4 id="Mount_The_Drive">C. Mount The Drive</h4>
<p>You can choose to have the drive mounted automatically each time you boot the computer, or manually only when you need to use it.</p>
<h2 id="Automatic_Mount_At_Boot">Automatic Mount At Boot</h2>
<p>Note: Ubuntu now recommends to use UUID instead, see the instructions here:<a href="https://help.ubuntu.com/community/UsingUUID">https://help.ubuntu.com/community/UsingUUID</a></p>
<p>You&#8217;ll need to edit /etc/fstab:</p>
<pre>sudo nano -Bw /etc/fstab</pre>
<p>Add this line to the end (for ext3 file system):</p>
<pre>  /dev/sdb1    /media/mynewdrive   ext3    defaults     0        2</pre>
<p>Add this line to the end (for fat32 file system):</p>
<pre>  /dev/sdb1    /media/mynewdrive   vfat    defaults     0        2</pre>
<p>Give the newly created directory that points to the harddrive with the following command:</p>
<pre>sudo chmod 7777 /media/mynewdrive</pre>
<p>Thaks for <a href="https://help.ubuntu.com/community/InstallingANewHardDrive">https://help.ubuntu.com/community/InstallingANewHardDrive</a>, I am writing this for my own reference later on.</p>
<br />Filed under: <a href='http://programmerthoughts.wordpress.com/category/linux/'>linux</a>, <a href='http://programmerthoughts.wordpress.com/category/linux-ubuntu/'>Linux Ubuntu</a>, <a href='http://programmerthoughts.wordpress.com/category/ubuntu/'>ubuntu</a> Tagged: <a href='http://programmerthoughts.wordpress.com/tag/linux/'>linux</a>, <a href='http://programmerthoughts.wordpress.com/tag/ubuntu/'>ubuntu</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/programmerthoughts.wordpress.com/706/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/programmerthoughts.wordpress.com/706/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/programmerthoughts.wordpress.com/706/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/programmerthoughts.wordpress.com/706/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/programmerthoughts.wordpress.com/706/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/programmerthoughts.wordpress.com/706/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/programmerthoughts.wordpress.com/706/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/programmerthoughts.wordpress.com/706/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/programmerthoughts.wordpress.com/706/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/programmerthoughts.wordpress.com/706/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/programmerthoughts.wordpress.com/706/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/programmerthoughts.wordpress.com/706/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/programmerthoughts.wordpress.com/706/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/programmerthoughts.wordpress.com/706/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=programmerthoughts.wordpress.com&amp;blog=12226583&amp;post=706&amp;subd=programmerthoughts&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://programmerthoughts.wordpress.com/2012/01/31/installing-a-new-harddrive-on-ubuntu-using-terminal-cli/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1a8a36b6e0dfc62144fa27e561237a11?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">programmerthoughts</media:title>
		</media:content>
	</item>
		<item>
		<title>SSL Error &#8211; Certificate Not Trusted while surfing websites</title>
		<link>http://programmerthoughts.wordpress.com/2011/12/14/ssl-error-certificate-not-trusted-while-surfing-websites/</link>
		<comments>http://programmerthoughts.wordpress.com/2011/12/14/ssl-error-certificate-not-trusted-while-surfing-websites/#comments</comments>
		<pubDate>Wed, 14 Dec 2011 16:57:14 +0000</pubDate>
		<dc:creator>programmerthoughts</dc:creator>
				<category><![CDATA[Browser]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[guides]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[web development script guides]]></category>
		<category><![CDATA[webdevelopmentscriptguides]]></category>

		<guid isPermaLink="false">http://programmerthoughts.wordpress.com/?p=696</guid>
		<description><![CDATA[SSL Error &#8211; Certificate Not Trusted When you access a website through a secure connection, it is a common issue to get a warning that the certificate is not issued by a trusted authority. The exact warning message you will get depending on your browser is: Firefox 3 &#8211; &#8220;The certificate is not trusted because [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=programmerthoughts.wordpress.com&amp;blog=12226583&amp;post=696&amp;subd=programmerthoughts&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>SSL Error &#8211; Certificate Not Trusted</p>
<p>When you access a website through a secure connection, it is a common issue to get a warning that the certificate is not issued by a trusted authority.</p>
<p>The exact warning message you will get depending on your browser is:<br />
Firefox 3 &#8211; &#8220;The certificate is not trusted because the issuer certificate is unknown. (Error code: sec_error_unknown_issuer)&#8221;<br />
Internet Explorer 7 &#8211; &#8220;The security certificate presented by this website was not issued by a trusted certificate authority.&#8221;<br />
Google Chrome &#8211; &#8220;The site&#8217;s security certificate is not trusted!&#8221;<br />
Safari &#8211; &#8220;Authentication failed because the server certificate is not trusted.&#8221;<br />
If you get one of the above warnings, this means that your browser does not trust the SSL certificate because it is not signed by a company that the browser recognizes as trusted.</p>
<p>The two most common reasons for this warning are:</p>
<p>* The website is using a self-signed/free SSL certificate.<br />
* The website is using a private SSL certificate but it is missing a CA (Certificate Authority) certificate.</p>
<p>The solution in the first case is to purchase a private SSL certificate which is issued for the specific domain by a trusted authority.</p>
<p>The solution in the second case is to have the SSL certificate reinstalled with the correct CA bundle. The CA bundle is provided by the SSL vendor and should be included in the private SSL package.</p>
<p><span style="font-size:1px;color:#ffffff;">http://kb.siteground.com/article/SSL_Error__Certificate_Not_Trusted.html</span></p>
<br />Filed under: <a href='http://programmerthoughts.wordpress.com/category/browser/'>Browser</a>, <a href='http://programmerthoughts.wordpress.com/category/software/'>software</a>, <a href='http://programmerthoughts.wordpress.com/category/web-development/'>Web Development</a> Tagged: <a href='http://programmerthoughts.wordpress.com/tag/development/'>development</a>, <a href='http://programmerthoughts.wordpress.com/tag/google/'>google</a>, <a href='http://programmerthoughts.wordpress.com/tag/guides/'>guides</a>, <a href='http://programmerthoughts.wordpress.com/tag/web/'>web</a>, <a href='http://programmerthoughts.wordpress.com/tag/web-development/'>Web Development</a>, <a href='http://programmerthoughts.wordpress.com/tag/web-development-script-guides/'>web development script guides</a>, <a href='http://programmerthoughts.wordpress.com/tag/webdevelopmentscriptguides/'>webdevelopmentscriptguides</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/programmerthoughts.wordpress.com/696/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/programmerthoughts.wordpress.com/696/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/programmerthoughts.wordpress.com/696/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/programmerthoughts.wordpress.com/696/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/programmerthoughts.wordpress.com/696/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/programmerthoughts.wordpress.com/696/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/programmerthoughts.wordpress.com/696/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/programmerthoughts.wordpress.com/696/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/programmerthoughts.wordpress.com/696/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/programmerthoughts.wordpress.com/696/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/programmerthoughts.wordpress.com/696/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/programmerthoughts.wordpress.com/696/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/programmerthoughts.wordpress.com/696/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/programmerthoughts.wordpress.com/696/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=programmerthoughts.wordpress.com&amp;blog=12226583&amp;post=696&amp;subd=programmerthoughts&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://programmerthoughts.wordpress.com/2011/12/14/ssl-error-certificate-not-trusted-while-surfing-websites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1a8a36b6e0dfc62144fa27e561237a11?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">programmerthoughts</media:title>
		</media:content>
	</item>
		<item>
		<title>Extend Your Wifi Range!</title>
		<link>http://programmerthoughts.wordpress.com/2011/12/05/extend-your-wifi-range/</link>
		<comments>http://programmerthoughts.wordpress.com/2011/12/05/extend-your-wifi-range/#comments</comments>
		<pubDate>Mon, 05 Dec 2011 07:16:49 +0000</pubDate>
		<dc:creator>programmerthoughts</dc:creator>
				<category><![CDATA[Computer Networking]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Wi-Fi]]></category>
		<category><![CDATA[wifi]]></category>

		<guid isPermaLink="false">http://programmerthoughts.wordpress.com/?p=683</guid>
		<description><![CDATA[WiFi If you use a wifi network at home, there are undoubtedly limits to where you can access the signal. You might get a strong connection at the kitchen table, but take your laptop to the living room and you lose the signal. If you&#8217;re looking to boost your signal a few feet or get [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=programmerthoughts.wordpress.com&amp;blog=12226583&amp;post=683&amp;subd=programmerthoughts&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://news.yahoo.com/video/us-15749625/27210036">WiFi</a></p>
<p>If you use a wifi network at home, there are undoubtedly limits to where you can access the signal. You might get a strong connection at the kitchen table, but take your laptop to the living room and you lose the signal. If you&#8217;re looking to boost your signal a few feet or get a strong connection all the way upstairs in the back bedroom, we&#8217;ve got a handful of simple tricks and more advanced techniques to get you on connected to your home wifi from anywhere in your house.<br />
Move your router:<br />
* It&#8217;s so simple, but many people don&#8217;t realize that where you put your router really does make a difference. Obviously a central location is best, but for many, you are tied to putting the router where the Internet connection comes into the house.<br />
* Beyond simple proximity, consider the router&#8217;s height. The higher your router is on a shelf or cabinet, the less physical interference it&#8217;s likely to encounter. Move the router to the best possible position to take advantage of doorways and open spaces instead of walls and corners. Wifi might move through the airwaves, but furniture, walls and appliances can weaken your signal substantially.<br />
* Signal interference is one of the biggest culprits that might be at work if your wifi is weak. Walls and physical obstructions block your signal, but signals emitted by any electromagnetic household object do too. Scoot your router away from anything that might interfere: cordless phones, microwaves, wireless game controllers, other wifi-enabled devices (TVs, etc.), Bluetooth devices, and even flourescent lights and elevators.<br />
Technical tweaks:<br />
Once you&#8217;ve got your router in an ideal spot, take a look at your equipment. These next steps can help you further improve your wifi signal.<br />
* Did you know routers have channels? If you live in close proximity to someone else with a wifi network you may both be trying to use the same channel and degrading your signals.<br />
To find out if you are &#8220;crossing the streams&#8221; use WiFi Stumbler or inSSIDer to find the best and least-trafficked channel for your router to broadcast on. Once you&#8217;ve found the optimal channel, follow these step-by-step instructions to get your router on the right track.<br />
* Depending on the age of your router, it may be slower than newer models. Upgrade an older b or g router to an n router to extend your range for relatively reasonable cost. There are some new n routers for as little as $30. An n router can handle local electrical and physical signal interference better than b and g and may get you quite a bit more range.<br />
* Lesser-known fact: The &#8220;current standard&#8221; 802.11n routers can operate at either 2.4 GHz or 5 GHz bands, and 2.4 GHz is far better at travelling through walls. So if you already have a Wireless-n router and need it to extend farther, make sure it&#8217;s set to use 2.4 GHz instead of 5 GHz.<br />
* The internal antenna on your laptop itself can be a factor in how much range you get. Even if your laptop has built-in wifi, it could be well worth picking up an external USB adapter, like this $30 option from Netgear.<br />
This could also help an older laptop without Wireless-N support take advantage of faster speeds and improved range from a new 802.11n router.<br />
Invest in network extension options:<br />
* Wifi repeaters amplify and extend your wireless signal. Put a repeater within range of your existing wifi router and it will relay that signal out to hard-to-reach locations around your home or office. They cost about $90 and while they can theoretically double your range, real life results tend to vary considerably. If you&#8217;ve had good or bad luck with a repeater, we welcome any advice or testimonials in the comments section below.<br />
* Powerline networking uses the electrical wiring in your house to extend your Internet coverage. This is especially good if you want to get Internet access in a back room or you want to connect a gaming console that&#8217;s on an old TV in the garage. Plug one powerline adapter into your router and the other into an electrical plug. Then in the far room where you want connectivity, plug the other powerline adapter into an electrical plug and voila &#8211; you&#8217;ve got Internet, you can even put a second wireless router on that connection. Setting up an alternative powerline network using your home&#8217;s own AC power adapters can circumvent many of the most common wireless connectivity problems, and you don&#8217;t even need to give up wifi altogether. If you look into getting started with a powerline setup, be sure to stick with one manufacturer when buying your equipment to avoid any compatibility issues.</p>
<p><span style="color:#ffffff;font-size:1px;">http://news.yahoo.com/blogs/upgrade-your-life/upgrade-life-extend-wifi-range-214513350.html</span></p>
<br />Filed under: <a href='http://programmerthoughts.wordpress.com/category/computer-networking/'>Computer Networking</a>, <a href='http://programmerthoughts.wordpress.com/category/technology/'>Technology</a> Tagged: <a href='http://programmerthoughts.wordpress.com/tag/networking/'>Networking</a>, <a href='http://programmerthoughts.wordpress.com/tag/wi-fi/'>Wi-Fi</a>, <a href='http://programmerthoughts.wordpress.com/tag/wifi/'>wifi</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/programmerthoughts.wordpress.com/683/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/programmerthoughts.wordpress.com/683/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/programmerthoughts.wordpress.com/683/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/programmerthoughts.wordpress.com/683/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/programmerthoughts.wordpress.com/683/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/programmerthoughts.wordpress.com/683/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/programmerthoughts.wordpress.com/683/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/programmerthoughts.wordpress.com/683/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/programmerthoughts.wordpress.com/683/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/programmerthoughts.wordpress.com/683/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/programmerthoughts.wordpress.com/683/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/programmerthoughts.wordpress.com/683/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/programmerthoughts.wordpress.com/683/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/programmerthoughts.wordpress.com/683/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=programmerthoughts.wordpress.com&amp;blog=12226583&amp;post=683&amp;subd=programmerthoughts&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://programmerthoughts.wordpress.com/2011/12/05/extend-your-wifi-range/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1a8a36b6e0dfc62144fa27e561237a11?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">programmerthoughts</media:title>
		</media:content>
	</item>
		<item>
		<title>Setting Static IP in Ubuntu Terminal</title>
		<link>http://programmerthoughts.wordpress.com/2011/09/21/setting-static-ip-in-ubuntu-terminal/</link>
		<comments>http://programmerthoughts.wordpress.com/2011/09/21/setting-static-ip-in-ubuntu-terminal/#comments</comments>
		<pubDate>Wed, 21 Sep 2011 20:21:23 +0000</pubDate>
		<dc:creator>programmerthoughts</dc:creator>
				<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://programmerthoughts.wordpress.com/?p=690</guid>
		<description><![CDATA[Open your Ubuntu&#8217;s Terminal, then issue the command: sudo /etc/network/interfaces after hitting ENTER key this will ask for your root or admin password; adjust it to your needs (in this example setup I will use the IP address 192.168.0.100): # This file describes the network interfaces available on your system # and how to activate [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=programmerthoughts.wordpress.com&amp;blog=12226583&amp;post=690&amp;subd=programmerthoughts&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div id="attachment_687" class="wp-caption alignleft" style="width: 160px"><a href="http://programmerthoughts.files.wordpress.com/2011/09/terminal.png"><img class="size-thumbnail wp-image-687  " title="terminal" src="http://programmerthoughts.files.wordpress.com/2011/09/terminal.png?w=150&#038;h=150" alt="terminal" width="150" height="150" /></a><p class="wp-caption-text">terminal</p></div>
<p>Open your Ubuntu&#8217;s Terminal, then issue the command:</p>
<p><span class="Apple-style-span" style="font-family:monospace;">sudo /etc/network/interfaces</span></p>
<p>after hitting ENTER key this will ask for your root or admin password; adjust it to your needs (in this example setup I will use the IP address 192.168.0.100):<br />
<code># This file describes the network interfaces available on your system<br />
# and how to activate them. For more information, see interfaces(5).<br />
# The loopback network interface<br />
auto lo<br />
iface lo inet loopback</code></p>
<p><code># This is a list of hotpluggable network interfaces.<br />
# They will be activated automatically by the hotplug subsystem.<br />
mapping hotplug<br />
script grep<br />
map eth0</code></p>
<p><code># The primary network interface<br />
auto eth0<br />
iface eth0 inet static<br />
address 192.168.0.100<br />
netmask 255.255.255.0<br />
network 192.168.0.0<br />
broadcast 192.168.0.255<br />
gateway 192.168.0.1</code></p>
<br />Filed under: <a href='http://programmerthoughts.wordpress.com/category/ubuntu/'>ubuntu</a> Tagged: <a href='http://programmerthoughts.wordpress.com/tag/ubuntu/'>ubuntu</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/programmerthoughts.wordpress.com/690/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/programmerthoughts.wordpress.com/690/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/programmerthoughts.wordpress.com/690/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/programmerthoughts.wordpress.com/690/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/programmerthoughts.wordpress.com/690/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/programmerthoughts.wordpress.com/690/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/programmerthoughts.wordpress.com/690/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/programmerthoughts.wordpress.com/690/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/programmerthoughts.wordpress.com/690/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/programmerthoughts.wordpress.com/690/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/programmerthoughts.wordpress.com/690/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/programmerthoughts.wordpress.com/690/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/programmerthoughts.wordpress.com/690/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/programmerthoughts.wordpress.com/690/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=programmerthoughts.wordpress.com&amp;blog=12226583&amp;post=690&amp;subd=programmerthoughts&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://programmerthoughts.wordpress.com/2011/09/21/setting-static-ip-in-ubuntu-terminal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1a8a36b6e0dfc62144fa27e561237a11?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">programmerthoughts</media:title>
		</media:content>

		<media:content url="http://programmerthoughts.files.wordpress.com/2011/09/terminal.png?w=150" medium="image">
			<media:title type="html">terminal</media:title>
		</media:content>
	</item>
		<item>
		<title>Automatically Add Startup Programs for Ubuntu Using Terminal Commands</title>
		<link>http://programmerthoughts.wordpress.com/2011/09/20/automatically-add-startup-programs-for-ubuntu-using-terminal-commands/</link>
		<comments>http://programmerthoughts.wordpress.com/2011/09/20/automatically-add-startup-programs-for-ubuntu-using-terminal-commands/#comments</comments>
		<pubDate>Tue, 20 Sep 2011 18:07:06 +0000</pubDate>
		<dc:creator>programmerthoughts</dc:creator>
				<category><![CDATA[Linux Ubuntu]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://programmerthoughts.wordpress.com/?p=686</guid>
		<description><![CDATA[Open and edit rc.local script file: nano /etc/rc.local Enter either of the two commands: /bin/bash [commands] or /bin/sh -c [command] Thanks: http://ubuntuforums.org/showthread.php?t=1540464 Filed under: Linux Ubuntu, ubuntu<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=programmerthoughts.wordpress.com&amp;blog=12226583&amp;post=686&amp;subd=programmerthoughts&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div id="attachment_687" class="wp-caption alignright" style="width: 160px"><a href="http://programmerthoughts.files.wordpress.com/2011/09/terminal.png"><img class="size-thumbnail wp-image-687" title="terminal" src="http://programmerthoughts.files.wordpress.com/2011/09/terminal.png?w=150&#038;h=150" alt="terminal" width="150" height="150" /></a><p class="wp-caption-text">terminal</p></div>
<p>Open and edit rc.local script file:<br />
<code style="padding:10px;">nano /etc/rc.local</code><br />
Enter either of the two commands:<br />
<code style="padding:10px;">/bin/bash [commands]</code><br />
or<br />
<code style="padding:10px;">/bin/sh -c [command]</code></p>
<p>Thanks: http://ubuntuforums.org/showthread.php?t=1540464</p>
<br />Filed under: <a href='http://programmerthoughts.wordpress.com/category/linux-ubuntu/'>Linux Ubuntu</a>, <a href='http://programmerthoughts.wordpress.com/category/ubuntu/'>ubuntu</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/programmerthoughts.wordpress.com/686/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/programmerthoughts.wordpress.com/686/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/programmerthoughts.wordpress.com/686/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/programmerthoughts.wordpress.com/686/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/programmerthoughts.wordpress.com/686/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/programmerthoughts.wordpress.com/686/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/programmerthoughts.wordpress.com/686/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/programmerthoughts.wordpress.com/686/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/programmerthoughts.wordpress.com/686/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/programmerthoughts.wordpress.com/686/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/programmerthoughts.wordpress.com/686/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/programmerthoughts.wordpress.com/686/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/programmerthoughts.wordpress.com/686/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/programmerthoughts.wordpress.com/686/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=programmerthoughts.wordpress.com&amp;blog=12226583&amp;post=686&amp;subd=programmerthoughts&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://programmerthoughts.wordpress.com/2011/09/20/automatically-add-startup-programs-for-ubuntu-using-terminal-commands/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1a8a36b6e0dfc62144fa27e561237a11?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">programmerthoughts</media:title>
		</media:content>

		<media:content url="http://programmerthoughts.files.wordpress.com/2011/09/terminal.png?w=150" medium="image">
			<media:title type="html">terminal</media:title>
		</media:content>
	</item>
		<item>
		<title>Limiting Bandwidth Usage for Ubuntu Linux Terminal</title>
		<link>http://programmerthoughts.wordpress.com/2011/09/20/limiting-bandwidth-usage-for-ubuntu-linux-terminal/</link>
		<comments>http://programmerthoughts.wordpress.com/2011/09/20/limiting-bandwidth-usage-for-ubuntu-linux-terminal/#comments</comments>
		<pubDate>Tue, 20 Sep 2011 17:43:48 +0000</pubDate>
		<dc:creator>programmerthoughts</dc:creator>
				<category><![CDATA[Linux Ubuntu]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://programmerthoughts.wordpress.com/?p=677</guid>
		<description><![CDATA[There are many reasons one would want to limit internet bandwidth/speed on a system e.g you dont want your siblings to choke your internet or, if you are a network admin, you dont want one user, downloading a big movie over torrent, to hurt every one else&#8217;s surfing. To limit internet bandwidth on a Ubuntu [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=programmerthoughts.wordpress.com&amp;blog=12226583&amp;post=677&amp;subd=programmerthoughts&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div id="attachment_226" class="wp-caption alignleft" style="width: 146px"><a href="http://programmerthoughts.files.wordpress.com/2009/04/ubuntulogo.jpg"><img class="size-full wp-image-226 " title="web development script guides - Ubuntu Logo" src="http://programmerthoughts.files.wordpress.com/2009/04/ubuntulogo.jpg?w=600" alt=""   /></a><p class="wp-caption-text">Ubuntu Logo</p></div>
<p>There are many reasons one would want to limit internet bandwidth/speed on a system e.g you dont want your siblings to choke your internet or, if you are a network admin, you dont want one user, downloading a big movie over torrent, to hurt every one else&#8217;s surfing.</p>
<p>To limit internet bandwidth on a Ubuntu machine install wondershaper. For this open a terminal and type following command:<br />
<code style="padding:5px;">sudo apt-get install wondershaper</code><br />
Now use ifconfig command to find out the name of interface connected to internet. The name will be something like eth0, eth1, wlan0 or something similar. In my case it is eth0</p>
<p>Now issue a command similar to follwoing (relpacing eth0 with your interface name):<br />
<code style="padding:5px;">sudo wondershaper eth0 1024 256</code><br />
this will limit the download speed to 1024 Kbps and upload to 256 Kbps. Remember that this limit is for all internet traffic i.e torrent, ftp, browsing and any thing else.</p>
<p>If you want to remove these limits use<br />
<code style="padding:5px;">sudo wondershaper clear eth0</code><br />
again replacing eth0 with your interface name.</p>
<pre><span style="color:#ffffff;">thanks to:</span> <span style="color:#ffffff;">http://binwaheed.blogspot.com/2011/01/limit-internet-bandwidth-usage-internet.html</span></pre>
<br />Filed under: <a href='http://programmerthoughts.wordpress.com/category/linux-ubuntu/'>Linux Ubuntu</a>, <a href='http://programmerthoughts.wordpress.com/category/ubuntu/'>ubuntu</a> Tagged: <a href='http://programmerthoughts.wordpress.com/tag/ubuntu/'>ubuntu</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/programmerthoughts.wordpress.com/677/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/programmerthoughts.wordpress.com/677/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/programmerthoughts.wordpress.com/677/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/programmerthoughts.wordpress.com/677/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/programmerthoughts.wordpress.com/677/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/programmerthoughts.wordpress.com/677/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/programmerthoughts.wordpress.com/677/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/programmerthoughts.wordpress.com/677/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/programmerthoughts.wordpress.com/677/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/programmerthoughts.wordpress.com/677/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/programmerthoughts.wordpress.com/677/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/programmerthoughts.wordpress.com/677/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/programmerthoughts.wordpress.com/677/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/programmerthoughts.wordpress.com/677/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=programmerthoughts.wordpress.com&amp;blog=12226583&amp;post=677&amp;subd=programmerthoughts&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://programmerthoughts.wordpress.com/2011/09/20/limiting-bandwidth-usage-for-ubuntu-linux-terminal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1a8a36b6e0dfc62144fa27e561237a11?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">programmerthoughts</media:title>
		</media:content>

		<media:content url="http://programmerthoughts.files.wordpress.com/2009/04/ubuntulogo.jpg" medium="image">
			<media:title type="html">web development script guides - Ubuntu Logo</media:title>
		</media:content>
	</item>
		<item>
		<title>Ubuntu Linux User Management Commands</title>
		<link>http://programmerthoughts.wordpress.com/2011/08/02/ubuntu-linux-user-management-commands/</link>
		<comments>http://programmerthoughts.wordpress.com/2011/08/02/ubuntu-linux-user-management-commands/#comments</comments>
		<pubDate>Tue, 02 Aug 2011 18:31:09 +0000</pubDate>
		<dc:creator>programmerthoughts</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[Linux Ubuntu]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[change user fullname profile ubuntu terminal]]></category>
		<category><![CDATA[user management ubuntu terminal]]></category>

		<guid isPermaLink="false">http://programmerthoughts.wordpress.com/?p=667</guid>
		<description><![CDATA[Ubuntu System Admin may find these commands useful on managing users. Obviously, these will be executed on Ubuntu Terminal or Console and must have either &#8220;sudo&#8221; or a member of &#8220;sudoers&#8221; and have a root priviledges. Changing User&#8217;s Profile Fullname: Syntax: chfn -f [fullname] -r [room number] -o [other phone number] -w [work phone number] [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=programmerthoughts.wordpress.com&amp;blog=12226583&amp;post=667&amp;subd=programmerthoughts&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Ubuntu System Admin may find these commands useful on managing users. Obviously, these will be executed on Ubuntu Terminal or Console and must have either &#8220;sudo&#8221; or a member of &#8220;sudoers&#8221; and have a root priviledges.</p>
<p>Changing User&#8217;s Profile Fullname:<br />
Syntax:</p>
<p>chfn -f [fullname] -r [room number] -o [other phone number] -w [work phone number] -h [home phone number] [username you want these changes to take effect]</p>
<p><span style="font-size:2px;">source: http://manpages.ubuntu.com/manpages/intrepid/man1/chfn.1.html</span><br />
Mount/Unmount Disk Drive on Ubuntu Terminal:</p>
<p>Be sure you are familiar with the Disk Drive ID  registered on the Ubuntu filesystem, in my case, it has the following:</p>
<blockquote style="font-weight:bold;"><p>UUID=7c5c005a-e535-44fe-990d-3b7d5995e546</p></blockquote>
<p>open your terminal, and issue a command:</p>
<p>admin@admin#: mkdir mystoragedata</p>
<p>admin@admin#:nano /etc/fstab</p>
<p>at the end of the line, place the following line:</p>
<blockquote><p>UUID=7c5c005a-e535-44fe-990d-3b7d5995e546 /mystoragedata ext4 defaults 0 0</p></blockquote>
<p>Save and Exit</p>
<p>Browse through your &#8220;Places &gt; Computer&#8221;, and you will see the contents of your disk drive</p>
<br />Filed under: <a href='http://programmerthoughts.wordpress.com/category/linux/'>linux</a>, <a href='http://programmerthoughts.wordpress.com/category/linux-ubuntu/'>Linux Ubuntu</a>, <a href='http://programmerthoughts.wordpress.com/category/ubuntu/'>ubuntu</a>, <a href='http://programmerthoughts.wordpress.com/category/uncategorized/'>Uncategorized</a> Tagged: <a href='http://programmerthoughts.wordpress.com/tag/change-user-fullname-profile-ubuntu-terminal/'>change user fullname profile ubuntu terminal</a>, <a href='http://programmerthoughts.wordpress.com/tag/user-management-ubuntu-terminal/'>user management ubuntu terminal</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/programmerthoughts.wordpress.com/667/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/programmerthoughts.wordpress.com/667/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/programmerthoughts.wordpress.com/667/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/programmerthoughts.wordpress.com/667/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/programmerthoughts.wordpress.com/667/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/programmerthoughts.wordpress.com/667/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/programmerthoughts.wordpress.com/667/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/programmerthoughts.wordpress.com/667/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/programmerthoughts.wordpress.com/667/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/programmerthoughts.wordpress.com/667/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/programmerthoughts.wordpress.com/667/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/programmerthoughts.wordpress.com/667/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/programmerthoughts.wordpress.com/667/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/programmerthoughts.wordpress.com/667/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=programmerthoughts.wordpress.com&amp;blog=12226583&amp;post=667&amp;subd=programmerthoughts&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://programmerthoughts.wordpress.com/2011/08/02/ubuntu-linux-user-management-commands/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1a8a36b6e0dfc62144fa27e561237a11?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">programmerthoughts</media:title>
		</media:content>
	</item>
		<item>
		<title>Facebook Plugin for Pidgin</title>
		<link>http://programmerthoughts.wordpress.com/2011/04/19/facebook-plugin-for-pidgin/</link>
		<comments>http://programmerthoughts.wordpress.com/2011/04/19/facebook-plugin-for-pidgin/#comments</comments>
		<pubDate>Tue, 19 Apr 2011 20:14:28 +0000</pubDate>
		<dc:creator>programmerthoughts</dc:creator>
				<category><![CDATA[plugins]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://programmerthoughts.wordpress.com/?p=668</guid>
		<description><![CDATA[My Yahoo Messenger recently has been broken and to my disappointment, I installed Pidgin. This multi-client Instant Messenger seems to be working smoothly and I&#8217;m quite satisfied with the result. As I am doing setup for my yahoo messenger, googletalk, AIM  accounts among others, I have found out that there is a facebook on the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=programmerthoughts.wordpress.com&amp;blog=12226583&amp;post=668&amp;subd=programmerthoughts&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://programmerthoughts.files.wordpress.com/2011/04/facebook-icon.png"><img class="alignleft size-thumbnail wp-image-669" style="margin:5px;" title="facebook-icon" src="http://programmerthoughts.files.wordpress.com/2011/04/facebook-icon.png?w=150&#038;h=150" alt="programmerthoughts-facebook" width="150" height="150" /></a><a href="http://programmerthoughts.files.wordpress.com/2011/04/pidgin9.png"><img class="alignleft size-thumbnail wp-image-670" style="margin:5px;" title="pidgin9" src="http://programmerthoughts.files.wordpress.com/2011/04/pidgin9.png?w=150&#038;h=150" alt="programmerthoughts-facebook" width="150" height="150" /></a>My Yahoo Messenger recently has been broken and to my disappointment, I installed Pidgin. This multi-client Instant Messenger seems to be working smoothly and I&#8217;m quite satisfied with the result.</p>
<p>As I am doing setup for my yahoo messenger, googletalk, AIM  accounts among others, I have found out that there is a facebook on the list of protocols. Since I am really wanting to do a test to let my facebook chat activated on my Pidgin, I tried to set it up so that there is no need for me to log into my facebook using browser and still can chat my friends. But what the heck are the tutorials over the net? I&#8217;m almost done with all the settings except for the &#8220;Uncheck SSL&#8221; thing that other people on the net is telling me, and I can&#8217;t even find that option on my Pidgin window. Until I found a plugin for Pidgin hosted by Google. I downloaded  and install the support software on my machine and I can see my facebook online friends on Pidgin&#8217;s Buddy list. Works like charm. You can download the plugin <strong><a title="programmerthoughts-facebook-plugin-for-pidgin" href="http://pidgin-facebookchat.googlecode.com/files/pidgin-facebookchat-1.69.exe">here</a></strong>.</p>
<br />Filed under: <a href='http://programmerthoughts.wordpress.com/category/plugins/'>plugins</a>, <a href='http://programmerthoughts.wordpress.com/category/software/'>software</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/programmerthoughts.wordpress.com/668/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/programmerthoughts.wordpress.com/668/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/programmerthoughts.wordpress.com/668/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/programmerthoughts.wordpress.com/668/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/programmerthoughts.wordpress.com/668/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/programmerthoughts.wordpress.com/668/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/programmerthoughts.wordpress.com/668/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/programmerthoughts.wordpress.com/668/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/programmerthoughts.wordpress.com/668/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/programmerthoughts.wordpress.com/668/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/programmerthoughts.wordpress.com/668/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/programmerthoughts.wordpress.com/668/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/programmerthoughts.wordpress.com/668/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/programmerthoughts.wordpress.com/668/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=programmerthoughts.wordpress.com&amp;blog=12226583&amp;post=668&amp;subd=programmerthoughts&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://programmerthoughts.wordpress.com/2011/04/19/facebook-plugin-for-pidgin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1a8a36b6e0dfc62144fa27e561237a11?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">programmerthoughts</media:title>
		</media:content>

		<media:content url="http://programmerthoughts.files.wordpress.com/2011/04/facebook-icon.png?w=150" medium="image">
			<media:title type="html">facebook-icon</media:title>
		</media:content>

		<media:content url="http://programmerthoughts.files.wordpress.com/2011/04/pidgin9.png?w=150" medium="image">
			<media:title type="html">pidgin9</media:title>
		</media:content>
	</item>
		<item>
		<title>Using SMTP mail protocol with CodeIgniter</title>
		<link>http://programmerthoughts.wordpress.com/2011/03/24/using-smtp-mail-protocol-with-codeigniter/</link>
		<comments>http://programmerthoughts.wordpress.com/2011/03/24/using-smtp-mail-protocol-with-codeigniter/#comments</comments>
		<pubDate>Thu, 24 Mar 2011 03:27:50 +0000</pubDate>
		<dc:creator>programmerthoughts</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://programmerthoughts.wordpress.com/?p=665</guid>
		<description><![CDATA[Google or gmail has their smtp service for free. You can set it up with your codes provided that the settings are found in your codes and in Email.php located at /system/libraries/ of your CodeIgniter project folder/directory. The following parameter: &#160; &#160; var $useragent = "CodeIgniter"; var $mailpath = "/usr/sbin/sendmail"; // Sendmail path var $protocol [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=programmerthoughts.wordpress.com&amp;blog=12226583&amp;post=665&amp;subd=programmerthoughts&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" title="codeigniter" src="http://www.99points.info/wp-content/uploads/2010/07/codeigniter.png" alt="" width="82" height="113" /><img class="alignleft" title="google" src="http://thenextweb.com/google/files/2010/04/google_logo2.jpg" alt="" width="100" height="113" />Google or gmail has their smtp service for free. You can set it up with your codes provided that the settings are found in your codes and in Email.php located at /system/libraries/ of your CodeIgniter project folder/directory. The following parameter:</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><code><br />
var	$useragent		= "CodeIgniter";</code></p>
<p><code>var	$mailpath		= "/usr/sbin/sendmail";	// Sendmail path</p>
<p><span style="font-family:monospace;">var	$protocol	 = "smtp";	// mail/sendmail/smtp</span></p>
<p>var	$smtp_host	 = "ssl://smtp.gmail.com";	 // SMTP Server.  Example: mail.earthlink.net</p>
<p>var $smtp_user	 = "&lt;your-gmail-email-address&gt;@gmail.com";	 // SMTP Username</p>
<p>var	$smtp_pass	 = "&lt;your-gmail-password&gt;";	 // SMTP Password</p>
<p>var	$smtp_port		= 465;		// SMTP Port</p>
<p></code></p>
<p><code>var	$newline		= "\r\n";		// Default newline. "\r\n" or "\n" (Use "\r\n" to comply with RFC 822)<br />
</code></p>
<p>&nbsp;</p>
<p>Save Email.php file, then, in your controller, do the following codes:</p>
<p>&nbsp;</p>
<p><code>$this-&gt;load-&gt;library('email', $config);</code></p>
<p>&nbsp;</p>
<p>You can now send email from your PHP CodeIgniter program.</p>
<br />Filed under: <a href='http://programmerthoughts.wordpress.com/category/uncategorized/'>Uncategorized</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/programmerthoughts.wordpress.com/665/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/programmerthoughts.wordpress.com/665/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/programmerthoughts.wordpress.com/665/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/programmerthoughts.wordpress.com/665/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/programmerthoughts.wordpress.com/665/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/programmerthoughts.wordpress.com/665/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/programmerthoughts.wordpress.com/665/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/programmerthoughts.wordpress.com/665/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/programmerthoughts.wordpress.com/665/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/programmerthoughts.wordpress.com/665/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/programmerthoughts.wordpress.com/665/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/programmerthoughts.wordpress.com/665/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/programmerthoughts.wordpress.com/665/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/programmerthoughts.wordpress.com/665/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=programmerthoughts.wordpress.com&amp;blog=12226583&amp;post=665&amp;subd=programmerthoughts&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://programmerthoughts.wordpress.com/2011/03/24/using-smtp-mail-protocol-with-codeigniter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1a8a36b6e0dfc62144fa27e561237a11?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">programmerthoughts</media:title>
		</media:content>

		<media:content url="http://www.99points.info/wp-content/uploads/2010/07/codeigniter.png" medium="image">
			<media:title type="html">codeigniter</media:title>
		</media:content>

		<media:content url="http://thenextweb.com/google/files/2010/04/google_logo2.jpg" medium="image">
			<media:title type="html">google</media:title>
		</media:content>
	</item>
		<item>
		<title>Security Risk to Internet Explorer Users</title>
		<link>http://programmerthoughts.wordpress.com/2011/02/03/security-risk-to-internet-explorer-users/</link>
		<comments>http://programmerthoughts.wordpress.com/2011/02/03/security-risk-to-internet-explorer-users/#comments</comments>
		<pubDate>Thu, 03 Feb 2011 17:18:23 +0000</pubDate>
		<dc:creator>programmerthoughts</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[threat]]></category>

		<guid isPermaLink="false">http://programmerthoughts.wordpress.com/?p=649</guid>
		<description><![CDATA[London: Software giant Microsoft has issued a &#8220;critical&#8221; alert for millions of people using its web browser Internet Explorer, saying a newly-discovered flaw in the Windows operating system can be exploited by hackers to steal personal details. The glitch is so severe that it potentially affects every user of Internet Explorer. The company said that [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=programmerthoughts.wordpress.com&amp;blog=12226583&amp;post=649&amp;subd=programmerthoughts&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://programmerthoughts.files.wordpress.com/2010/12/internetexplorer.jpg"><img class="alignleft size-full wp-image-657" title="internetexplorer" src="http://programmerthoughts.files.wordpress.com/2010/12/internetexplorer.jpg?w=600" alt=""   /></a>London: Software giant Microsoft has issued a &#8220;critical&#8221; alert for millions of people using its web browser Internet Explorer, saying a newly-discovered flaw in the Windows operating system can be exploited by hackers to steal personal details.</p>
<p>The glitch is so severe that it potentially affects every user of Internet Explorer. The company said that hackers can take advantage of the flaw in taking over personal computers of more than 900 million using the web browser.</p>
<p>However, other browsers such as Firefox, Google Chrome and Safari are unaffected by the threat because, unlike Internet Explorer, they don&#8217;t support MHTML files, where the problem lies, the Daily Mail reported.</p>
<p>Microsoft said that the bug is inside Windows, presumably because they don&#8217;t want users to migrate to other browsers.</p>
<p>This means it affects all versions of the operating system currently supported including Windows XP (SP3), Windows Vista, Windows 7, Windows Server 2003 and Windows Server 2008 (R2).</p>
<p>The company has so far been unable to remove the bug itself and has issued a &#8220;fix it&#8221; security patch to block any attempts to use it.</p>
<p>All Windows users, particularly those who use Internet Explorer, are being urged to download the patch as the company&#8217;s security team work on a way to permanently fix the problem.</p>
<p>The company has described the flaw as a serious threat, although no hackers are thought to have yet exploited the vulnerability.</p>
<p>Microsoft spokeswoman Angela Gunn announced the flaw in a security advisory published online Friday.</p>
<p>&#8220;An attacker could construct an HTML link designed to trigger a malicious script and somehow convince the targeted user to click it. When the user clicked that link, the malicious script would run on the user&#8217;s computer for the rest of the current Internet Explorer session,&#8221; she was quoted as saying.</p>
<p>&#8220;Such a script might collect user information (e.g. email), spoof content displayed in the browser, or otherwise interfere with the user&#8217;s experience,&#8221; the warning said.</p>
<p style="font-size:1px;">Source: http://www.facenfacts.com/NewsDetails/4276/security-risk-to-internet-explorer-users.htm</p>
<br />Filed under: <a href='http://programmerthoughts.wordpress.com/category/uncategorized/'>Uncategorized</a> Tagged: <a href='http://programmerthoughts.wordpress.com/tag/internet-explorer/'>internet explorer</a>, <a href='http://programmerthoughts.wordpress.com/tag/microsoft/'>microsoft</a>, <a href='http://programmerthoughts.wordpress.com/tag/threat/'>threat</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/programmerthoughts.wordpress.com/649/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/programmerthoughts.wordpress.com/649/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/programmerthoughts.wordpress.com/649/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/programmerthoughts.wordpress.com/649/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/programmerthoughts.wordpress.com/649/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/programmerthoughts.wordpress.com/649/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/programmerthoughts.wordpress.com/649/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/programmerthoughts.wordpress.com/649/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/programmerthoughts.wordpress.com/649/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/programmerthoughts.wordpress.com/649/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/programmerthoughts.wordpress.com/649/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/programmerthoughts.wordpress.com/649/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/programmerthoughts.wordpress.com/649/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/programmerthoughts.wordpress.com/649/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=programmerthoughts.wordpress.com&amp;blog=12226583&amp;post=649&amp;subd=programmerthoughts&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://programmerthoughts.wordpress.com/2011/02/03/security-risk-to-internet-explorer-users/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1a8a36b6e0dfc62144fa27e561237a11?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">programmerthoughts</media:title>
		</media:content>

		<media:content url="http://programmerthoughts.files.wordpress.com/2010/12/internetexplorer.jpg" medium="image">
			<media:title type="html">internetexplorer</media:title>
		</media:content>
	</item>
	</channel>
</rss>
