<?xml version="1.0"?>
<rss version="2.0">

<channel>
	<title>Planet Ubuntu Nepal</title>
	<link>http://planet.ubuntu.org.np</link>
	<language>en</language>
	<description>Planet Ubuntu Nepal - http://planet.ubuntu.org.np</description>

<item>
	<title>Ishwor Gurung: Bound vs. Unbound Erlang variable, posted Feb. 28, 2010</title>
	<guid>http://develworx.com/blog/15</guid>
	<link>http://develworx.com/blog/15</link>
	<description>&lt;p&gt;
	&lt;span&gt;&lt;span&gt;A pretty decent definition of &lt;a href=&quot;http://learnyousomeerlang.com/syntax-in-functions&quot;&gt;bound vs. unbound variable&lt;/a&gt;. A very good Erlang book is at &lt;a href=&quot;http://learnyousomeerlang.com/&quot;&gt;http://learnyousomeerlang.com/&lt;/a&gt;; the author of the book hangs around at #erlang@freenode and overall, he's a great guy who helps folks with problems in Erlang.&lt;br /&gt;
	&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;
	&lt;span&gt;&lt;span&gt;&lt;img alt=&quot;http://learnyousomeerlang.com/static/img/un-bound.png&quot; src=&quot;http://learnyousomeerlang.com/static/img/un-bound.png&quot; /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;
	&lt;span&gt;&lt;span&gt;On that note, Erlang is a powerful functional language with the following features:&lt;br /&gt;
	&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;
		&lt;span&gt;&lt;span&gt;Shared-nothing memory architecture - we don't have to worry about resource locking scheme (deadlock/livelock) since nothing is shared. If you need to name a variable twice use a different variable name.&lt;br /&gt;
		&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
	&lt;li&gt;
		&lt;span&gt;&lt;span&gt;Asynchronous message-passing - means decent performance on multiple cores within an Erlang cluster and worry free variables (they don't need supervisory locks to monitor their state because again it's not shared! :)&lt;br /&gt;
		&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
	&lt;li&gt;
		&lt;span&gt;&lt;span&gt;Functional language properties - A high-order function for control abstractions, anonymous functions and lambda expressions(in spirit of Python)&lt;br /&gt;
		&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
	&lt;li&gt;
		&lt;span&gt;&lt;span&gt;OTP and libraries - Running network applications with about 10 lines of server code and about 6 lines of client code is awesome. I've never seen something like it honestly; Or what about full-on binary IP packet matching (what some folks call packet sniffing) in less than 10 lines?&lt;br /&gt;
		&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
	&lt;li&gt;
		&lt;span&gt;&lt;span&gt;Full-on Exception model - try/catch/throw semantics (like Java)&lt;br /&gt;
		&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
	&lt;li&gt;
		&lt;span&gt;&lt;span&gt;Hot-swappable code on live systems - That code path shouldn't excecute after these conditions are met. Instead load a new set of code that I am updating right-now (say a new set of beam files).&lt;br /&gt;
		&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
	&lt;li&gt;
		&lt;span&gt;&lt;span&gt;Mnesia - Database for Erlang. It was actually called &amp;quot;Amnesia&amp;quot; but Joe's boss at the time in Ericsson didn't particularly like a database name that forgets things so they renamed it.&lt;br /&gt;
		&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
	&lt;li&gt;
		&lt;span&gt;&lt;span&gt;Networking - It's convenient to write BSD-style socket apps in Erlang.&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
	&lt;span&gt;&lt;span&gt;During my university days, I did a bit of Prolog and Lisp too, so i've found that it fits really well with my mental model especially the concept of head and tail while running pattern matching on an function argument classic. It's like saying - &amp;quot;oh well, i did that at school but i almost completely forgot. Why didn't I think of that before?&amp;quot;. About a year ago, an Erlang programmer said to me something like this on the #erlang@freenode - &amp;quot;You know you've found Erlang at an early age, you're lucky!&amp;quot;. I think I somewhat know why now. I have yet to learn the &amp;quot;fault-tolerant&amp;quot; part of it as I am still going through the book but surely in due time I'll have figured out this as well.&lt;br /&gt;
	&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;
	&lt;span&gt;&lt;span&gt;Joe Amstrong's example on Concurrency from the &lt;a href=&quot;http://www.pragprog.com/titles/jaerlang/programming-erlang&quot;&gt;Erlang book&lt;/a&gt; is:&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;blockquote&gt;
	&lt;p&gt;
		&lt;span&gt;&lt;span&gt;We don't have shared memory. I have my memory. You have yours. We have two brains, one each. They are not joined together. To change your memory, I send you a message: I talk, or I wave my arms. You liten, you see, and your memory changes; However, without asking you a question or observing your response, I do not know that you have received my message.&lt;br /&gt;
		&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
	&lt;span&gt;&lt;span&gt;I think Joe is proving more right. Erlang is coming up quickly as the top 20 programming language on &lt;a href=&quot;http://www.tiobe.com/index.php/content/paperinfo/tpci/index.html&quot;&gt;TIOBE list&lt;/a&gt; and the reasons are pretty clear - we can not just keep adding more hardware and expect a sane performance with concurrency and management. Even with that hindsight in mind, not all the programming languages support running code on multiple cores. Python has trouble with threads deep within it's core - the GIL or the Global Intepreter Lock and I think Ruby even resorts to native threads (oh no!). Contrast that with Erlang - a nice set of green thread that run on VM (like Java). You want 1,000,000 threads? No problem. How about 2,000,000 threads? Yep no problem either! I am not an SQL guru but it seems a lot could be weilded if Erlang was met with NoSQL. I have no experience whatsoever in that department so i'll leave it upto fellow readers of this post.&lt;br /&gt;
	&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;</description>
	<pubDate>Sun, 28 Feb 2010 10:56:54 +0000</pubDate>
</item>
<item>
	<title>888: Worth Reading 'Funny Hacker Story'</title>
	<guid>tag:blogger.com,1999:blog-1241233588755403188.post-8977334378395356185</guid>
	<link>http://feedproxy.google.com/~r/feedburner/PsXj/~3/0OIIJluaFzE/worth-reading-funny-hacker-story.html</link>
	<description>&lt;p&gt;&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/yOa9nzX41uhW4dhI64fuuh5vn5s/0/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/yOa9nzX41uhW4dhI64fuuh5vn5s/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/yOa9nzX41uhW4dhI64fuuh5vn5s/1/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/yOa9nzX41uhW4dhI64fuuh5vn5s/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;blockquote&gt; shut up i hack you&lt;br /&gt;
&lt;br /&gt;
 ok, i’m quiet, hope you don’t show us how good a hacker you are ^^&lt;br /&gt;
&lt;br /&gt;
 tell me your network number man then you’re dead&lt;br /&gt;
&lt;br /&gt;
 Eh, it’s 129.0.0.1&lt;br /&gt;
&lt;br /&gt;
 or maybe 127.0.0.1&lt;br /&gt;
&lt;br /&gt;
 yes exactly that’s it: 127.0.0.1 I’m waiting for you great attack&lt;br /&gt;
&lt;br /&gt;
 in five minutes your hard drive is deleted&lt;br /&gt;
&lt;br /&gt;
 Now I’m frightened&lt;br /&gt;
&lt;br /&gt;
 shut up you’ll be gone&lt;br /&gt;
&lt;br /&gt;
 i have a program where i enter your ip and you’re dead&lt;br /&gt;
&lt;br /&gt;
 say goodbye&lt;br /&gt;
&lt;br /&gt;
 to whom?&lt;br /&gt;
&lt;br /&gt;
 to you man&lt;br /&gt;
&lt;br /&gt;
 buy buy&lt;br /&gt;
&lt;br /&gt;
 I’m shivering thinking about such great Hack0rs like you&lt;br /&gt;
&lt;br /&gt;
* bitchchecker (~java@euirc-61a2169c.dip.t-dialin.net) Quit (Ping timeout#)&lt;br /&gt;
&lt;/blockquote&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;More is in here.&lt;a href=&quot;http://whatthehell.eu/hacker-story&quot;&gt;http://whatthehell.eu/hacker-story&lt;/a&gt;&lt;/span&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; src=&quot;https://blogger.googleusercontent.com/tracker/1241233588755403188-8977334378395356185?l=techspalace.blogspot.com&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=dnAgFdmebmM:yH-WrmJdbL8:V_sGLiPBpWU&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=dnAgFdmebmM:yH-WrmJdbL8:V_sGLiPBpWU&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=dnAgFdmebmM:yH-WrmJdbL8:7Q72WNTAKBA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=7Q72WNTAKBA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=dnAgFdmebmM:yH-WrmJdbL8:gIN9vFwOqvQ&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=dnAgFdmebmM:yH-WrmJdbL8:gIN9vFwOqvQ&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=dnAgFdmebmM:yH-WrmJdbL8:dnMXMwOfBR0&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=dnMXMwOfBR0&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=dnAgFdmebmM:yH-WrmJdbL8:qj6IDK7rITs&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=qj6IDK7rITs&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=dnAgFdmebmM:yH-WrmJdbL8:yIl2AUoC8zA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=yIl2AUoC8zA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=dnAgFdmebmM:yH-WrmJdbL8:63t7Ie-LG7Y&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=63t7Ie-LG7Y&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/techspalace/~4/dnAgFdmebmM&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/feedburner/PsXj/~4/0OIIJluaFzE&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Sat, 27 Feb 2010 03:46:00 +0000</pubDate>
	<author>noreply@blogger.com (Techs Palace)</author>
</item>
<item>
	<title>Bibek Shrestha: Don't think</title>
	<guid>http://bibekshrestha.com.np/24 at http://bibekshrestha.com.np</guid>
	<link>http://bibekshrestha.com.np/blogs/post/2010/02/26/dont-think</link>
	<description>&lt;p&gt;Don't think&lt;/p&gt;
&lt;p&gt;Thinking makes you weak,&lt;br /&gt;thinking makes you strong,&lt;br /&gt;thinking makes you unhappy,&lt;br /&gt;thinking brings you joy&lt;/p&gt;
&lt;p&gt;And if emotion is the drunk husband, thought the cunning wife.&lt;br /&gt;&amp;nbsp;&lt;/p&gt;</description>
	<pubDate>Fri, 26 Feb 2010 18:31:13 +0000</pubDate>
</item>
<item>
	<title>Bibek Shrestha: No title</title>
	<guid>http://bibekshrestha.com.np/23 at http://bibekshrestha.com.np</guid>
	<link>http://bibekshrestha.com.np/blogs/post/2010/02/26/no-title</link>
	<description>&lt;p&gt;&quot;Good Night&quot; is sufficient to her. She's doesn't ask for more or does she complain. She is like a small drizzle, its enough for her. For me, I want to love the drizzle but if she knew I thrive on a heavy downpour. I want to get wet, no I want to drown. I wonder if the drizzle will ever fullfill.&lt;/p&gt;
&lt;p&gt;I wouldn't judge myself, or so I think. I am unhappy and unsatisfied. Wishing for the monsoon, only if life a cyclic season.&lt;/p&gt;</description>
	<pubDate>Fri, 26 Feb 2010 18:22:17 +0000</pubDate>
</item>
<item>
	<title>Jwalanta Shrestha (jwala): Internet Connection Sharing in Linux over Ad-hoc Wireless</title>
	<guid>tag:blogger.com,1999:blog-31851025.post-4702847478667972961</guid>
	<link>http://jwalanta.blogspot.com/2010/02/internet-connection-sharing-ics-in.html</link>
	<description>Laptops are common these days and so is wireless networking that comes with it. Almost all of us use Wireless Router for wireless networking and internet sharing. But most of us might not be familiar with &lt;a href=&quot;http://en.wikipedia.org/wiki/Wireless_ad_hoc_network&quot;&gt;ad-hoc mode&lt;/a&gt; that works in every wireless card and can eliminate the use of router altogether. Here's how:&lt;br /&gt;&lt;br /&gt;To setup ad-hoc wireless, you basically set two or more wireless cards to same &lt;a href=&quot;http://en.wikipedia.org/wiki/Service_set_(802.11_network)#Service_Set_identifier_.28SSID.29&quot;&gt;ESSID&lt;/a&gt; in ad-hoc mode and different IP addresses.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Setting the wireless card in ad-hoc mode&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;Generally &lt;a href=&quot;http://www.linuxcommand.org/man_pages/iwconfig8.html&quot;&gt;iwconfig&lt;/a&gt; is used to set the wireless mode, but if you have &lt;a href=&quot;http://madwifi.org/&quot;&gt;madwifi&lt;/a&gt; drivers (&lt;a href=&quot;http://jwalanta.blogspot.com/2009/01/no-wifi-to-master-mode.html&quot;&gt;see this too&lt;/a&gt;), the commands are slightly different. Go to terminal and type,&lt;br /&gt;&lt;pre&gt;iwconfig&lt;/pre&gt;If you see interfaces named wlan0, wlan1, etc iwconfig will work. If you see interface names similar to ath1 and wifi0, then madwifi specific commands are to be used.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;For general wifi cards:&lt;/b&gt;&lt;br /&gt;&lt;pre&gt;sudo iwconfig wlan0 mode ad-hoc&lt;/pre&gt;&lt;i&gt;Replace wlan0 with the interface name as listed by iwconfig&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;For cards using madwifi driver:&lt;/b&gt;&lt;br /&gt;&lt;pre&gt;sudo wlanconfig ath1 destroy&lt;br /&gt;sudo wlanconfig ath1 create wlandev wifi0 wlanmode adhoc&lt;/pre&gt;Now set essid. Pick some name like 'adhocwifi'&lt;br /&gt;&lt;pre&gt;sudo iwconfig wlan0 essid adhocwifi&lt;/pre&gt;If required, to set encryption key&lt;br /&gt;&lt;pre&gt;sudo iwconfig wlan0 key 1234567890&lt;/pre&gt;Now set IP address:&lt;br /&gt;&lt;pre&gt;sudo ifconfig wlan0 192.168.0.1&lt;/pre&gt;Follow the above steps for another wireless card and set IP address in same subnet, say 192.168.0.2, and ping each other.&lt;br /&gt;&lt;br /&gt;The whole ad-hoc mode setting can also be done using GUI network-manager, but since i'm not so much fond of graphical interface i'm not covering it. It should be simple.. :)&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Internet Connection Sharing&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;Now to share the internet over wireless,&lt;br /&gt;&lt;pre&gt;sudo iptables -t nat -A POSTROUTING -o ppp0 -j MASQUERADE&lt;/pre&gt;&lt;i&gt;where ppp0 is the connection you want to share (PPPoE connection in this case)&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;You also need to enable IP forwarding:&lt;br /&gt;&lt;pre&gt;sudo sh -c &quot;echo 1 &gt; /proc/sys/net/ipv4/ip_forward&quot;&lt;/pre&gt;Or, to enable permanently add the following line to /etc/sysctl.conf&lt;br /&gt;&lt;pre&gt;net.ipv4.ip_forward=1&lt;/pre&gt;Some &lt;a href=&quot;http://www.wlink.com.np/&quot;&gt;ISP&lt;/a&gt;s might limit the &lt;a href=&quot;http://en.wikipedia.org/wiki/Time_to_live&quot;&gt;TTL&lt;/a&gt; so that you wont be able to share the internet. Fix:&lt;br /&gt;&lt;pre&gt;sudo iptables -t mangle -A PREROUTING -j TTL --ttl-inc 1&lt;/pre&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;b&gt;Using the shared internet (in Linux)&lt;/b&gt;&lt;/div&gt;&lt;br /&gt;Now to use the shared internet on another computer, set it to ad-hoc mode and assign IP address in the same subnet as described above and perform the following:&lt;br /&gt;&lt;br /&gt;1. Set the IP of computer sharing internet as gateway&lt;br /&gt;&lt;pre&gt;sudo route add default gw 192.168.0.1&lt;/pre&gt;2. Set DNS server. We're using Google's DNS.&lt;br /&gt;&lt;pre&gt;sudo sh -c &quot;echo 'nameserver 8.8.8.8' &gt;&gt; /etc/resolv.conf&quot;&lt;/pre&gt;You can also use IP and DNS Masquerading to ease the task.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;div&gt;&lt;b&gt;Using the shared internet (in M$ Windows)&lt;/b&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;div&gt;If you want to use the shared internet on M$ Windows,&lt;br /&gt;&lt;br /&gt;1. Connect to the Wireless Network (in this case 'adhocwifi')&lt;br /&gt;2. Go to Network Connections&lt;br /&gt;3. Right click the Wireless Connection&lt;br /&gt;4. Select the Internet Protocol (TCP/IP) and click Properties&lt;br /&gt;5. Set IP to 192.168.0.2 (or accordingly in the same subnet as set on Linux box), gateway to 192.168.0.1 (as set on Linux box) and DNS to 8.8.8.8&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; src=&quot;https://blogger.googleusercontent.com/tracker/31851025-4702847478667972961?l=jwalanta.blogspot.com&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;</description>
	<pubDate>Fri, 26 Feb 2010 02:28:14 +0000</pubDate>
	<author>noreply@blogger.com (Jwalanta Shrestha)</author>
</item>
<item>
	<title>Surmandal: Phishing, A small note</title>
	<guid>http://surmandal.livejournal.com/3169.html</guid>
	<link>http://surmandal.livejournal.com/3169.html</link>
	<description>&lt;p&gt;PHISHING&lt;/p&gt; &lt;p&gt;Phishing is not a Security Flaw, not even you got Hacked/screwed. This is just a trick phishers use to steal/collect the username/Password, Credit card information and Other crucial information from Victims. This is a technique&amp;nbsp; of online identity theft. and this is totally preventable but you have to be more careful. phishers can infect computers with viruses, bots, malwares, spywares and convince people to participate unwittingly in money laundering. The most Reliable source of Phishing is spoof email. This message looks like it came from original source. it looks like very authentic and make people to reveal them to disclosed their personal information. Although there are many way, which phisheres used to process, to collect the data, Initially they decide the target company, business house and collect the email address of customers who are associated with that business house. mostly they use mass-mailing and other address collection technique, which adopted by other Spammers.&lt;br /&gt; Then after they setup a method to deliver the message to collect the data. often, this includes email(html based mail), web-site, DNS poisoning, tempering HOST file, pharming and many others technique, but email is most reliable technique to the date.&lt;/p&gt; &lt;p&gt;In third Phase, Phishers send a fake/phony message that appears to be from a authentic source. Then they start to collect the data/information which victims enter into website/pop-up and whatever the link sent in steps 3.&lt;/p&gt; &lt;p&gt;Last but not least, Phishers use these information as they want to. there has been many changes phishing technique since 1996 (I believe the term &amp;ldquo;Phishing&amp;rdquo; was mention in 1996 in 2600, A security newsletter). Nowadays URL shorten service like bit.ly play the role of catalyst to spread the phishing scam. user can not figure out, where the link is redirecting to.&lt;/p&gt; &lt;p&gt;&lt;strong&gt;Phishing Vector:&lt;/strong&gt; To accomplished the phishing attack successful these are the method that is used widely&lt;br /&gt; &amp;bull; Man-in-the-middle Attacks:- For man-in-the-middle attacks to be successful, the phishers must be able to re-direct the user to their proxy server instead of the real server. This may be carried out through a Transparent Proxies,DNS Cache Poisoning,URL Obfuscation(As I mention earlier Bad domain names,Friendly login URL,Third-party shortened URL,Host name obfuscation). This is a scenario of MITM Attack&lt;/p&gt; &lt;p&gt;User &amp;lt;&amp;ndash;&amp;gt; Attacker&amp;rsquo;s Proxy &amp;lt;&amp;ndash;&amp;gt; Real Website&lt;/p&gt; &lt;p&gt;&amp;bull; Cross-site Scripting/XSS Attacks&lt;br /&gt; &amp;bull; Pre-set Session Attacks&lt;br /&gt; &amp;bull; Observing Customer Data&lt;br /&gt; &amp;bull; Client-side Vulnerability Exploitation&lt;/p&gt; &lt;p&gt;Above technique are the methods/way of, how Phishers Attack and collect the information from victims. I have been involved some Phishing fraud cases in Nepal. after investigation, what I found is all the source was not from Nepal but phishers used Nepal based server to host the Fraudulent site. and interesting fact is all the server was Linux based distribution. I am not saying that Linux is easy to screwed but during the investigation, I found these is lack of strong System administration, lack of auditing, lack of regular monitoring.&lt;/p&gt; &lt;p&gt;&lt;strong&gt;Treatment/Preventing method&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;To prevent from phishing, I have chopped it in 3 parts&lt;/p&gt; &lt;p&gt;&lt;strong&gt;1. Client End:-&lt;/strong&gt; End User Computer security is more poor that enterprise/corporate Workstations. however we can make it more secure. Use of Local Anti-Virus/Personal Firewall/Personal IDS/Personal Anti-Spam/Spyware Detection software, although these software may cut your budgets. and yes installing Anti-Phishing Plug-ins on internet browser would be another good idea.User application-level monitoring solutions,Locking-down browser capabilities,Digitally signed email is yet another secure way to get rid of phishing email and lastly End User awareness. If you get an email that warns you that an account of yours will be shut down/suspend unless you reconfirm billing information, Please Please do not reply that mail or click on the link&lt;br /&gt; in the email. If you get such mail, you can contact the company instead. Never respond the HTML based Email. before submitting the financial information to/from web, always look on &amp;ldquo;LOCK&amp;rdquo; sign, that sign refers that your transaction is secure. you can also click on that icon and review the SSL certificate that has been received and issued by a trusted certificate authority. last but not least do not forget to review the bank statement, credit card statement after any financial transaction.&lt;/p&gt; &lt;p&gt;&lt;strong&gt;2. Server End:-&lt;/strong&gt; From the server end, we can implement intelligent anti-phishing application to secure the web applications. always update the message to user/customer how phishing can be done and how to prevent them. post the pages/email address so that users/customers can send the abuse report if they found and do quickly response to them. post the message that company will never send HTML based email and ask them to do not response it, also ask customer to forward that type of mail to the company. you can go for your own customized web application, of-course, for that you need skilled manpower and budget. never forget that security is major concern. another things that should be take care is never used IP address as a URL. always use fully qualified Domain name. for example use www.sarojlamichhane.com.np instead of 202.79.32.251.&lt;/p&gt; &lt;p&gt;&lt;strong&gt;3. Enterprise End:-&lt;/strong&gt;Business house and Internet Service Providers may lead the leading role to prevent the phishing scams. from ISP, their security model works in client side and server side security mechanism. use of digitally signed email, proper monitoring of corporate domain, its expiry date and registering similar type of domain. Business houses should implement Gateway Anti-virus, Gateway Content filtering, Gateway anti-filtering to scan all the traffic.&lt;/p&gt; &lt;p&gt;By implementing a multi-tiered approach to client-side, server-side and&lt;br /&gt; enterprise, organisations can easily manage their protection technologies against today&amp;rsquo;s and&lt;br /&gt; tomorrows threats. Phishing is just a part of Hacking culture, So only preventing phishing is not enough way, so implement the secure way to prevent other criminal attack vector. be on safe side.&lt;/p&gt;</description>
	<pubDate>Wed, 24 Feb 2010 19:39:07 +0000</pubDate>
</item>
<item>
	<title>Ishwor Gurung: Write assembly in Python!, posted Feb. 24, 2010</title>
	<guid>http://develworx.com/blog/12</guid>
	<link>http://develworx.com/blog/12</link>
	<description>&lt;p&gt;
	&lt;span&gt;&lt;span&gt;Multiple things have happened over the last couple of weeks and few months I spent not blogging.&lt;br /&gt;
	&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;
	&lt;span&gt;&lt;span&gt;First, I picked this wonderful post by Robert Kern on python mailing list today that made me blog in the first place; Much thanks owes to him for enlightening mere mortals like me. I am still to play around with it but reading the docs is half the battle done. It is all documented at &lt;a href=&quot;http://www.corepy.org&quot;&gt;http://www.corepy.org&lt;/a&gt;; if you flip over and start reading the &amp;quot;hello world&amp;quot; side of things at &lt;a href=&quot;http://www.corepy.org/wiki/index.php?title=CorePy_Basics&quot;&gt;http://www.corepy.org/wiki/index.php?title=CorePy_Basics&lt;/a&gt;, it looks ridicolously fun and easy again! I think assembly just became fun again :-)&lt;br /&gt;
	&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;
	&lt;span&gt;&lt;span&gt;I'll leave it upto you as to basically what you can do them but essentially to do anything substantial you'd have to pump out a lot of asm using CorePy. One could implement some native assembly code in it and use other python libraries to do some really neat stuff. If you only dabble in Assembly like me and wish to not leave the comfortable rear-view seat of Python's high-level world, then CorePy is for you!&lt;br /&gt;
	&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;
	&lt;span&gt;&lt;span&gt;Take a look at this snippet:&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;pre class=&quot;python&quot;&gt;
&lt;span&gt;&lt;span&gt;  import&lt;/span&gt; corepy.&lt;span&gt;lib&lt;/span&gt;.&lt;span&gt;printer&lt;/span&gt; as printer
  &lt;span&gt;import&lt;/span&gt; corepy.&lt;span&gt;arch&lt;/span&gt;.&lt;span&gt;x86_64&lt;/span&gt;.&lt;span&gt;platform&lt;/span&gt; as env
  &lt;span&gt;import&lt;/span&gt; corepy.&lt;span&gt;arch&lt;/span&gt;.&lt;span&gt;x86_64&lt;/span&gt;.&lt;span&gt;isa&lt;/span&gt; as x86
  &lt;span&gt;from&lt;/span&gt; corepy.&lt;span&gt;arch&lt;/span&gt;.&lt;span&gt;x86_64&lt;/span&gt;.&lt;span&gt;types&lt;/span&gt;.&lt;span&gt;registers&lt;/span&gt; &lt;span&gt;import&lt;/span&gt; *
&amp;nbsp;
  &lt;span&gt;code&lt;/span&gt; = env.&lt;span&gt;InstructionStream&lt;/span&gt;&lt;span&gt;(&lt;/span&gt;&lt;span&gt;)&lt;/span&gt;
&amp;nbsp;
  x86.&lt;span&gt;set_active_code&lt;/span&gt;&lt;span&gt;(&lt;/span&gt;&lt;span&gt;code&lt;/span&gt;&lt;span&gt;)&lt;/span&gt;
  x86.&lt;span&gt;mov&lt;/span&gt;&lt;span&gt;(&lt;/span&gt;&lt;span&gt;code&lt;/span&gt;.&lt;span&gt;gp_return&lt;/span&gt;, &lt;span&gt;11&lt;/span&gt;&lt;span&gt;)&lt;/span&gt;
  x86.&lt;span&gt;add&lt;/span&gt;&lt;span&gt;(&lt;/span&gt;&lt;span&gt;code&lt;/span&gt;.&lt;span&gt;gp_return&lt;/span&gt;, &lt;span&gt;31&lt;/span&gt;&lt;span&gt;)&lt;/span&gt;
&amp;nbsp;
  printer.&lt;span&gt;PrintInstructionStream&lt;/span&gt;&lt;span&gt;(&lt;/span&gt;&lt;span&gt;code&lt;/span&gt;, printer.&lt;span&gt;x86_64_Nasm&lt;/span&gt;&lt;span&gt;(&lt;/span&gt;function_name=&lt;span&gt;&amp;quot;foobar&amp;quot;&lt;/span&gt;&lt;span&gt;))&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;
&lt;p&gt;
	&lt;span&gt;&lt;span&gt;The code above prints x86 instructions (intel style- &amp;quot;x86_64_Nasm&amp;quot; plugin) and assigns them to a &amp;quot;foobar&amp;quot; function. See below for output. More documentation on CorePy are available at their website.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;pre class=&quot;asm&quot;&gt;
&lt;span&gt;BITS &lt;span&gt;64&lt;/span&gt;
SECTION .text
global foobar
foobar:
&amp;nbsp;
&lt;span&gt;PROLOGUE&lt;/span&gt;:
        &lt;span&gt;push&lt;/span&gt; rbp
        &lt;span&gt;mov&lt;/span&gt; rbp, rsp
        &lt;span&gt;push&lt;/span&gt; r15
        &lt;span&gt;push&lt;/span&gt; r14
        &lt;span&gt;push&lt;/span&gt; r13
        &lt;span&gt;push&lt;/span&gt; r12
        &lt;span&gt;push&lt;/span&gt; rbx
&amp;nbsp;
BODY:
        &lt;span&gt;mov&lt;/span&gt; rax, &lt;span&gt;11&lt;/span&gt;
        &lt;span&gt;add&lt;/span&gt; rax, &lt;span&gt;31&lt;/span&gt;
&amp;nbsp;
&lt;span&gt;EPILOGUE&lt;/span&gt;:
        &lt;span&gt;pop&lt;/span&gt; rbx
        &lt;span&gt;pop&lt;/span&gt; r12
        &lt;span&gt;pop&lt;/span&gt; r13
        &lt;span&gt;pop&lt;/span&gt; r14
        &lt;span&gt;pop&lt;/span&gt; r15
        &lt;span&gt;leave&lt;/span&gt; 
        &lt;span&gt;ret&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;
&lt;p&gt;
	&lt;span&gt;&lt;span&gt;If you are really into Assembly and Python, I'd recommend you give CorePy a go; do drop a line how it goes. If you're an Assembly/CorePy/Python hacker then please enlighten me :-)&lt;br /&gt;
	&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;
	&lt;span&gt;&lt;span&gt;Secondly, I have been working on my Djangle blog engine for the last couple of months on an irregular basis; I'd love to work more on it but due to my day job as a Perl hacker, it's quite hard to find the time commit code. It's also quite a bit of a concern for me as some days I feel utterly tired while the other days I feel exactly the other way around. Anyhow, the things that are on my list to make this a bit more &amp;quot;developer&amp;quot; friendly in near future are-&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;ol&gt;
	&lt;li&gt;
		&lt;span&gt;&lt;span&gt;Pingback and Trackback&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
	&lt;li&gt;
		&lt;span&gt;&lt;span&gt;Management page&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
	&lt;li&gt;
		&lt;span&gt;&lt;span&gt;Integrating video, audio, pictures&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
	&lt;li&gt;
		&lt;span&gt;&lt;span&gt;Media library - Photo, Audio&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
	&lt;li&gt;
		&lt;span&gt;&lt;span&gt;Social web integration - Facebook, Flickr, Youtube, Twitter, Openid, Wave, Buzz etc..&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
	&lt;li&gt;
		&lt;span&gt;&lt;span&gt;XML-RPC API for &amp;quot;push&amp;quot; and &amp;quot;pull&amp;quot; (this is a big &amp;quot;maybe&amp;quot; at the moment though)&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
	&lt;li&gt;
		&lt;span&gt;&lt;span&gt;URL pagination for permalinks (the current URL scheme kind of sucks)&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;
	&lt;span&gt;&lt;span&gt;Do drop a line if you feel something must exist in a blog engine; If it's reasonable and challenging enough, I might skip few of the ones above to implement them :-)&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;
	&lt;span&gt;&lt;span&gt;Thirdly, I have been reading a lot of books recently that encompass multiple programming languages, theories and whatnot. I buy using &lt;a href=&quot;http://www.booko.com.au/&quot;&gt;http://www.booko.com.au&lt;/a&gt; which is by far the best place to find cheaper books in Australia. Theyt essentially aggregate the price of an item across several stores and sorts them in descending order for you by price! The books I am reading simulaneously for essentially reference purpose, educational learning etc. are -&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;ol&gt;
	&lt;li&gt;
		&lt;span&gt;&lt;span&gt;Programming Erlang&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
	&lt;li&gt;
		&lt;span&gt;&lt;span&gt;Coders at Work&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
	&lt;li&gt;
		&lt;span&gt;&lt;span&gt;Definitive Guide to Catalyst&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
	&lt;li&gt;
		&lt;span&gt;&lt;span&gt;Programming Collective Intelligence&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
	&lt;li&gt;
		&lt;span&gt;&lt;span&gt;Advanced Programming in the UNIX environment&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
	&lt;li&gt;
		&lt;span&gt;&lt;span&gt;Secure Programming with Static Analysis&lt;br /&gt;
		&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
	&lt;li&gt;
		&lt;span&gt;&lt;span&gt;The Visual Display of Quantitative Information&lt;br /&gt;
		&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
	&lt;li&gt;
		&lt;span&gt;&lt;span&gt;Pattern Recognition and Neural Networks&lt;br /&gt;
		&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;
	&lt;span&gt;&lt;span&gt;They are all very interesting but it's kind of hard to squeeze them all into a 24-hour day so, I read them at a very gradual pace using some of them as a good reference on a subject matter.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;
	&lt;span&gt;&lt;span&gt;&lt;br /&gt;
	&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;
	&lt;span&gt;&lt;span&gt;Fourthly, I have been visiting and meeting some of SyPy, GTUGers at Google for various talks and social gatherings. Some of the talks and hackfests I've been to are:&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;ol&gt;
	&lt;li&gt;
		&lt;span&gt;&lt;span&gt;Python game under 5 minutes - Tim Ansell =&amp;gt; An amazing Python hacker and my project mentor for a brief period at UniSA&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
	&lt;li&gt;
		&lt;span&gt;&lt;span&gt;GeoDjango - Peter Marks&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
	&lt;li&gt;
		&lt;span&gt;&lt;span&gt;Go - Rob Pike&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
	&lt;li&gt;
		&lt;span&gt;&lt;span&gt;Closure - Daniel Nadasi&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
	&lt;li&gt;
		&lt;span&gt;&lt;span&gt;Project Bondi - Adrian Dries&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
	&lt;li&gt;
		&lt;span&gt;&lt;span&gt;Django usergroup meetup - Digital Eskimo&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
	&lt;li&gt;
		&lt;span&gt;&lt;span&gt;PlanningAlerts.org.au - Matthew Landauer&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
	&lt;li&gt;
		&lt;span&gt;&lt;span&gt;Creating a CC machine learning dataset - Chris Neugebauer&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;
	&lt;span&gt;&lt;span&gt;There were lot of other talks and social &amp;quot;lubrications&amp;quot; I went to that I can't recall. Things of interest though - if you live in Sydney and are into python, linux, opensource software, then do join Sydney Python usergroup, Sydney Linux usergroup, Sydney django usergroup (there are only a table-full people at the moment but given Django's growing popularity, I reckon it will see an increase) and GTUG if you are into Google stuff (I just rocked up for Go! talk by Rob Pike). Go talk was an interesting event but I'd rather stay away from it for the moment. The reason I'd stay away is because firstly, I don't enough time (I have Erlang on my plate!). Secondly, I have too many hobbies (AVR, Software Security, Heavy mathematics yada yada.. on my plate!!). So, sorry Go, you'd have to wait. The language itself is cute though. You can use a C compiler to generate native binaries from Go code (from Ken Thompson and Ian Taylor respectively), do all kinds of funky stuffs with Functional-style programming, do threads and lot more. If you're interested Go is at &lt;a href=&quot;http://golang.org&quot;&gt;http://golang.org&lt;/a&gt; (&lt;a href=&quot;http://www.youtube.com/watch?v=rKnDgT73v8s&quot;&gt;http://www.youtube.com/watch?v=rKnDgT73v8s&lt;/a&gt; for videos, &lt;a href=&quot;http://golang.org/doc/&quot;&gt;http://golang.org/doc/&lt;/a&gt; for slides)&lt;br /&gt;
	&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;
	&lt;span&gt;&lt;span&gt;Lastly, this blog. My blog runs on my own hand-crafted Python blogging engine still in its infancy and named &amp;quot;Djangle&amp;quot;. Named so because it rhymes with Django and Angle - &amp;quot;Angle&amp;quot; because the a blog is an angle of a mind; We project our thoughts into it and make sure it's got an angle to just sufficiently mean the things we want it to mean, to convey something to the inhibitants in our own words and to cover just about enough people's satisfaction like a right-angle ;-)&lt;br /&gt;
	&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;
	&lt;span&gt;&lt;span&gt;The source is at &lt;a href=&quot;http://github.com/ishwor/djangle&quot;&gt;http://github.com/ishwor/djangle&lt;/a&gt; and if you are good at Python and feel like taking those fingers for a small ride, please by all means join my effort to create a simple, elegant and functional blogging engine using Django; This can be a good experience for us! :-)&lt;br /&gt;
	&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;</description>
	<pubDate>Wed, 24 Feb 2010 13:00:15 +0000</pubDate>
</item>
<item>
	<title>Surmandal: Many way to securing Linux Box</title>
	<guid>http://surmandal.livejournal.com/2823.html</guid>
	<link>http://surmandal.livejournal.com/2823.html</link>
	<description>&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-AU&quot;&gt;Some security tips (Linux)--there is more to go but for this time Please bare with it :D&lt;/span&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-AU&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;  &lt;ol type=&quot;1&quot; start=&quot;1&quot;&gt;&lt;li class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-AU&quot;&gt;Encrypt all the data      communication using password/keys/certificates. Use sftp/scp/rsync and      sshfs/fuse (&lt;a href=&quot;http://surmandal.livejournal.com/2244.html&quot;&gt;http://surmandal.livejournal.com/2244.html&lt;/a&gt;)      to mount your home directory remotely.&lt;/span&gt;&lt;/li&gt;&lt;li class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-AU&quot;&gt;&lt;/span&gt;&lt;span lang=&quot;EN-AU&quot;&gt;Use of GnuPG, it allows to      encrypt and sign the data.&lt;/span&gt;&lt;/li&gt;&lt;li class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-AU&quot;&gt;&lt;/span&gt;&lt;span lang=&quot;EN-AU&quot;&gt;Openvpn is another ssl vpn      tools to connect your office/corporate LAN from outer Network.&lt;/span&gt;&lt;/li&gt;&lt;li class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-AU&quot;&gt;&lt;/span&gt;&lt;span lang=&quot;EN-AU&quot;&gt;Avoid using FTP/TELNET/Rlogin      like tools, using these tools; anyone can view/capture the packet using      sniffer tools.&lt;/span&gt;&lt;/li&gt;&lt;li class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-AU&quot;&gt;Do not install any application until      and unless it required. To minimize the Vulnerability, list the installed      package (dpkg --list Ubuntu/debian), list out the necessary application      and remove others. Remove the X, in server you don&amp;rsquo;t need X window, it      will increase the server performance.&lt;/span&gt;&lt;/li&gt;&lt;li class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-AU&quot;&gt;Use one machine for one      application/service if possible for example install Apache and mysql      service in different machine so that if attacker rooted to web server,      there will be less chance to tooted mysql server. Virtualization will be      another good application to reduce this thread.&lt;/span&gt;&lt;/li&gt;&lt;li class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-AU&quot;&gt;Offcourse, update regularly      kernel/software, installed patch.&lt;/span&gt;&lt;/li&gt;&lt;li class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-AU&quot;&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;SElinux ---- see how to guid ;)&lt;/span&gt;&lt;/li&gt;&lt;li class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-AU&quot;&gt;Use of Strong Account/password      policy, in existing system, use the john the ripper tools to find out the      week password and make it strong( using alpha      numeric/upper-lowercase/special character). &lt;/span&gt;&lt;/li&gt;&lt;li class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-AU&quot;&gt;Disable the root login/find out      any user has UID 0, if yes make sure that s/he is allowed by you else      remove it.&lt;/span&gt;&lt;/li&gt;&lt;li class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-AU&quot;&gt;Use of packet filter/      tcpwrappers, Do not forget to use IDS, there is a software called AIDE, I      highly recommend it to use in your system.&lt;/span&gt;&lt;/li&gt;&lt;li class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-AU&quot;&gt;Strong physical security, use      of Bios/GRUB password, disable the CD/DVD Drive, also USP ports&lt;/span&gt;&lt;/li&gt;&lt;li class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-AU&quot;&gt;Try to change the default      service port, i.e. open shh server runs in 22 port, change it to 2010 (as      your wish)&lt;br /&gt;      &lt;br /&gt;      &lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-AU&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-AU&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;</description>
	<pubDate>Sun, 21 Feb 2010 20:37:44 +0000</pubDate>
</item>
<item>
	<title>Jwalanta Shrestha (jwala): Overriding extension compatibility check for FF3.5+</title>
	<guid>tag:blogger.com,1999:blog-31851025.post-922817154910289307</guid>
	<link>http://jwalanta.blogspot.com/2010/02/overriding-extension-compatibility.html</link>
	<description>Disabling extension compatibility check for Firefox was easy. Go to about:config and create a boolean value named &lt;i&gt;extensions.checkCompatibility&lt;/i&gt; and set it to &lt;i&gt;false.&lt;/i&gt;&lt;div&gt;&lt;i&gt;&lt;br /&gt;&lt;/i&gt;&lt;/div&gt;&lt;div&gt;Until Firefox 3.5! &lt;/div&gt;&lt;div&gt;(More specifically, products that are based on &amp;lt; Gecko 1.9.2)&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Newer Firefox requires you to append version number to the variable. This will ensure the extension override wont work forever as FF is upgraded to next version. For example, in Firefox 3.6, the variable would be &lt;i&gt;extensions.checkCompatibility.3.6&lt;/i&gt;&lt;/div&gt;&lt;div&gt;&lt;i&gt;&lt;br /&gt;&lt;/i&gt;&lt;/div&gt;&lt;div&gt;Explained in detail here:&lt;/div&gt;&lt;div&gt;http://kb.mozillazine.org/Extensions.checkCompatibility&lt;/div&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; src=&quot;https://blogger.googleusercontent.com/tracker/31851025-922817154910289307?l=jwalanta.blogspot.com&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;</description>
	<pubDate>Fri, 19 Feb 2010 11:58:47 +0000</pubDate>
	<author>noreply@blogger.com (Jwalanta Shrestha)</author>
</item>
<item>
	<title>Jwalanta Shrestha (jwala): Converting Latex document to HTML / ODT / DOC</title>
	<guid>tag:blogger.com,1999:blog-31851025.post-1074440427818059785</guid>
	<link>http://jwalanta.blogspot.com/2010/02/converting-latex-document-to-html-odt.html</link>
	<description>I do all my documents in Latex. Actually i usually use emacs &lt;a href=&quot;http://orgmode.org/&quot;&gt;org-mode&lt;/a&gt; first and later convert it to Latex, but when it comes to using bibtex, it's all latex. It works great and the output dvi/pdf files look so professional. However recently i had to submit the file in .doc format, and i had a real hard time finding good tools to do that.&lt;br /&gt;&lt;br /&gt;There are no direct Latex to .doc converters, so the best bet is to go Latex -&gt; HTML -&gt; DOC. There are lots of Latex to HTML converters like &lt;a href=&quot;http://www.latex2html.org/&quot;&gt;latex2html&lt;/a&gt;, &lt;a href=&quot;http://hutchinson.belmont.ma.us/tth/&quot;&gt;tth&lt;/a&gt; and &lt;a href=&quot;http://pauillac.inria.fr/%7Emaranget/hevea/index.html&quot;&gt;hevea&lt;/a&gt;, but most of them either don't produce good HTML or mess with bibliography references. But after some research i found the best: &lt;a href=&quot;http://www.cse.ohio-state.edu/%7Egurari/TeX4ht/&quot;&gt;TeX4ht&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;TeX4ht is available in ubuntu/debian repo, so to install&lt;br /&gt;&lt;pre&gt;sudo apt-get install tex4ht&lt;/pre&gt;Conversion is simple:&lt;br /&gt;&lt;pre&gt;htlatex document&lt;/pre&gt;(please note, there is no .tex suffix)&lt;br /&gt;&lt;br /&gt;This will generate document.html, css and bunch of .png files.&lt;br /&gt;&lt;br /&gt;Now to convert it to wordprocessor files (odt, doc..),&lt;br /&gt;1. Open the html file with OpenOffice.org&lt;br /&gt;2. File &gt; Save as&lt;br /&gt;3. Choose the format you want to save it in (odt, doc)&lt;br /&gt;&lt;br /&gt;If you have images in the document, they will be linked instead of embedded in the document. To fix this: (&lt;a href=&quot;http://wiki.services.openoffice.org/wiki/Documentation/OOo3_User_Guides/Getting_Started/Inserting_an_image_from_a_file#Embedding_linked_images&quot;&gt;source&lt;/a&gt;)&lt;br /&gt;1. Edit &gt; Links&lt;br /&gt;2. Click &quot;Break Link&quot; for each image link&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; src=&quot;https://blogger.googleusercontent.com/tracker/31851025-1074440427818059785?l=jwalanta.blogspot.com&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;</description>
	<pubDate>Wed, 17 Feb 2010 09:18:14 +0000</pubDate>
	<author>noreply@blogger.com (Jwalanta Shrestha)</author>
</item>
<item>
	<title>Bibek Paudel: How does Leadership work</title>
	<guid>http://bibekpaudel.wordpress.com/2010/02/16/how-does-leadership-work/</guid>
	<link>http://bibekpaudel.wordpress.com/2010/02/16/how-does-leadership-work/</link>
	<description>&lt;br /&gt;&lt;div class=&quot;posterous_autopost&quot;&gt;
&lt;p&gt;&lt;span&gt;&lt;a href=&quot;http://bibekpaudel.wordpress.com/2010/02/16/how-does-leadership-work/&quot;&gt;&lt;img src=&quot;http://img.youtube.com/vi/fW8amMCVAJQ/2.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;  &lt;a href=&quot;http://posterous.com&quot;&gt;Posted via web&lt;/a&gt;   from &lt;a href=&quot;http://tutverse.posterous.com/how-does-leadership-work&quot;&gt;Tutorial Universe&lt;/a&gt;  &lt;/p&gt;
&lt;/div&gt;
  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/bibekpaudel.wordpress.com/412/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/bibekpaudel.wordpress.com/412/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/bibekpaudel.wordpress.com/412/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/bibekpaudel.wordpress.com/412/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/bibekpaudel.wordpress.com/412/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/bibekpaudel.wordpress.com/412/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/bibekpaudel.wordpress.com/412/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/bibekpaudel.wordpress.com/412/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/bibekpaudel.wordpress.com/412/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/bibekpaudel.wordpress.com/412/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=bibekpaudel.wordpress.com&amp;amp;blog=4624062&amp;amp;post=412&amp;amp;subd=bibekpaudel&amp;amp;ref=&amp;amp;feed=1&quot; /&gt;</description>
	<pubDate>Tue, 16 Feb 2010 12:40:04 +0000</pubDate>
</item>
<item>
	<title>Prasanna Gautam (SR71-Blackbird): Ruby vs Python Battle to Death</title>
	<guid>http://www.nextdoorhacker.com/2010/02/ruby-vs-python-battle-to-death/</guid>
	<link>http://www.nextdoorhacker.com/2010/02/ruby-vs-python-battle-to-death/</link>
	<description>This is a pretty interesting talk by Gary Bernhardt about the good and bad things about Ruby and Python. Here's the blog post
Python vs. Ruby: A Battle to The Death from Gary Bernhardt on Vimeo.</description>
	<pubDate>Tue, 16 Feb 2010 11:00:10 +0000</pubDate>
</item>
<item>
	<title>888: Gmail and OpenID</title>
	<guid>tag:blogger.com,1999:blog-1241233588755403188.post-2307079699602574102</guid>
	<link>http://feedproxy.google.com/~r/feedburner/PsXj/~3/0S8Hn7YE27I/gmail-and-openid.html</link>
	<description>&lt;p&gt;&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/p8npVf66ePpru1RfYPtnV00lFPo/0/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/p8npVf66ePpru1RfYPtnV00lFPo/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/p8npVf66ePpru1RfYPtnV00lFPo/1/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/p8npVf66ePpru1RfYPtnV00lFPo/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;/p&gt;Q. Can I use Gmail as &lt;a href=&quot;http://en.wikipedia.org/wiki/OpenID&quot;&gt;OpenID&lt;/a&gt; ?&lt;br /&gt;
A. Yes.&lt;br /&gt;
&lt;br /&gt;
Q. How can I use my gmail ID as OpendID ?&lt;br /&gt;
A. Use the url http://www.google.com/accounts/o8/id&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; src=&quot;https://blogger.googleusercontent.com/tracker/1241233588755403188-2307079699602574102?l=techspalace.blogspot.com&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=bnTFgE3oE4A:5xODGhBnDXE:V_sGLiPBpWU&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=bnTFgE3oE4A:5xODGhBnDXE:V_sGLiPBpWU&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=bnTFgE3oE4A:5xODGhBnDXE:7Q72WNTAKBA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=7Q72WNTAKBA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=bnTFgE3oE4A:5xODGhBnDXE:gIN9vFwOqvQ&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=bnTFgE3oE4A:5xODGhBnDXE:gIN9vFwOqvQ&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=bnTFgE3oE4A:5xODGhBnDXE:dnMXMwOfBR0&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=dnMXMwOfBR0&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=bnTFgE3oE4A:5xODGhBnDXE:qj6IDK7rITs&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=qj6IDK7rITs&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=bnTFgE3oE4A:5xODGhBnDXE:yIl2AUoC8zA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=yIl2AUoC8zA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=bnTFgE3oE4A:5xODGhBnDXE:63t7Ie-LG7Y&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=63t7Ie-LG7Y&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/techspalace/~4/bnTFgE3oE4A&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/feedburner/PsXj/~4/0S8Hn7YE27I&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Mon, 15 Feb 2010 15:51:00 +0000</pubDate>
	<author>noreply@blogger.com (Techs Palace)</author>
</item>
<item>
	<title>Prasanna Gautam (SR71-Blackbird): Userscript to remove read news</title>
	<guid>http://www.nextdoorhacker.com/2010/02/userscript-to-remove-read-news/</guid>
	<link>http://www.nextdoorhacker.com/2010/02/userscript-to-remove-read-news/</link>
	<description>So, I've been dabbling with Javascript in a very serious way right now. For one, I'm taking the Advanced Web Programming class where we are officially learning the language. I have to admit, I am getting to learn new ways of doing things and realizing what a jarhead way of ...</description>
	<pubDate>Mon, 15 Feb 2010 09:00:13 +0000</pubDate>
</item>
<item>
	<title>888: Google History</title>
	<guid>tag:blogger.com,1999:blog-1241233588755403188.post-4035550253729862099</guid>
	<link>http://feedproxy.google.com/~r/feedburner/PsXj/~3/FWQFpf0qpOk/google-history.html</link>
	<description>&lt;p&gt;&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/qD31r3N9bGPtgAYGcE9p9QjTmOQ/0/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/qD31r3N9bGPtgAYGcE9p9QjTmOQ/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/qD31r3N9bGPtgAYGcE9p9QjTmOQ/1/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/qD31r3N9bGPtgAYGcE9p9QjTmOQ/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;blockquote&gt;With Web History, you'll be able to:&lt;br /&gt;
&lt;br /&gt;
View and manage your web activity. &lt;br /&gt;
You know that great web site you saw online and now can't find? From now on, you can. With Web History, you can view and search across the full text of the pages you've visited, including Google searches, web pages, images, videos and news stories. You can also manage your web activity and remove items from your web history at any time. &lt;br /&gt;
&lt;br /&gt;
Get the search results most relevant to you. &lt;br /&gt;
Web History helps deliver more personalized search results based on the things you've searched for on Google and the sites you've visited. You might not notice a big impact on your search results early on, but they should steadily improve over time the more you use Web History. &lt;br /&gt;
&lt;br /&gt;
Follow interesting trends in your web activity. &lt;br /&gt;
Which sites do you visit frequently? How many searches did you do between 10 a.m. and 2 p.m.? Web History can tell you about these and other interesting trends in your web activity.&lt;/blockquote&gt;&lt;br /&gt;
&lt;a href=&quot;http://google.com/history&quot;&gt;http://google.com/history&lt;/a&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; src=&quot;https://blogger.googleusercontent.com/tracker/1241233588755403188-4035550253729862099?l=techspalace.blogspot.com&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=Ifft9jUyidw:-fUs99gqO_g:V_sGLiPBpWU&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=Ifft9jUyidw:-fUs99gqO_g:V_sGLiPBpWU&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=Ifft9jUyidw:-fUs99gqO_g:7Q72WNTAKBA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=7Q72WNTAKBA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=Ifft9jUyidw:-fUs99gqO_g:gIN9vFwOqvQ&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=Ifft9jUyidw:-fUs99gqO_g:gIN9vFwOqvQ&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=Ifft9jUyidw:-fUs99gqO_g:dnMXMwOfBR0&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=dnMXMwOfBR0&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=Ifft9jUyidw:-fUs99gqO_g:qj6IDK7rITs&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=qj6IDK7rITs&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=Ifft9jUyidw:-fUs99gqO_g:yIl2AUoC8zA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=yIl2AUoC8zA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=Ifft9jUyidw:-fUs99gqO_g:63t7Ie-LG7Y&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=63t7Ie-LG7Y&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/techspalace/~4/Ifft9jUyidw&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/feedburner/PsXj/~4/FWQFpf0qpOk&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Sun, 14 Feb 2010 05:07:00 +0000</pubDate>
	<author>noreply@blogger.com (Techs Palace)</author>
</item>
<item>
	<title>888: Upside Down Web Cam Simple Fix</title>
	<guid>tag:blogger.com,1999:blog-1241233588755403188.post-4039352956847677593</guid>
	<link>http://feedproxy.google.com/~r/feedburner/PsXj/~3/JevldhNhTeg/upside-down-web-cam-simple-fix.html</link>
	<description>&lt;p&gt;&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/AsOMPq9Dv3EdJNj2zxk1qsM20P4/0/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/AsOMPq9Dv3EdJNj2zxk1qsM20P4/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/AsOMPq9Dv3EdJNj2zxk1qsM20P4/1/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/AsOMPq9Dv3EdJNj2zxk1qsM20P4/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;/p&gt;Many laptop put their webcam upside down resulting in flipped images in Ubuntu. There were fixes for some but for some you had to physically remount the camera. The webcam that comes with Lenovo Ideapad Y510 is also mounted upside down. Unluckily there wasn't any simple fix for this. (some people rotated the camera physically).&lt;br /&gt;
&lt;br /&gt;
Fortunately &lt;a href=&quot;http://hansdegoede.livejournal.com/profile&quot;&gt;Hans de Goede&lt;/a&gt;&amp;nbsp;came with a beautiful &lt;a href=&quot;http://hansdegoede.livejournal.com/8140.html&quot;&gt;solution&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
Open Terminal and add libv4l ppa&lt;br /&gt;
&lt;blockquote&gt;sudo add-apt-repository ppa:libv4l/ppa&lt;/blockquote&gt;Update your software list&lt;br /&gt;
&lt;blockquote&gt;sudo aptitude update&lt;/blockquote&gt;Install libv4l&lt;br /&gt;
&lt;blockquote&gt;sudo aptitude install libv4l-0&lt;/blockquote&gt;You have to use the following command to open any application that uses webcam&lt;br /&gt;
&lt;blockquote&gt;LD_PRELOAD=/usr/lib/libv4l/v4l1compat.so application_name&lt;/blockquote&gt;If you use 64 bit system, use the following command&lt;br /&gt;
&lt;blockquote&gt;LD_PRELOAD=/usr/lib32/libv4l/v4l1compat.so application_name&lt;/blockquote&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; src=&quot;https://blogger.googleusercontent.com/tracker/1241233588755403188-4039352956847677593?l=techspalace.blogspot.com&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=-OqhptWUO6Q:K7dIfmKR0AE:V_sGLiPBpWU&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=-OqhptWUO6Q:K7dIfmKR0AE:V_sGLiPBpWU&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=-OqhptWUO6Q:K7dIfmKR0AE:7Q72WNTAKBA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=7Q72WNTAKBA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=-OqhptWUO6Q:K7dIfmKR0AE:gIN9vFwOqvQ&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=-OqhptWUO6Q:K7dIfmKR0AE:gIN9vFwOqvQ&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=-OqhptWUO6Q:K7dIfmKR0AE:dnMXMwOfBR0&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=dnMXMwOfBR0&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=-OqhptWUO6Q:K7dIfmKR0AE:qj6IDK7rITs&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=qj6IDK7rITs&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=-OqhptWUO6Q:K7dIfmKR0AE:yIl2AUoC8zA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=yIl2AUoC8zA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=-OqhptWUO6Q:K7dIfmKR0AE:63t7Ie-LG7Y&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=63t7Ie-LG7Y&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/techspalace/~4/-OqhptWUO6Q&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/feedburner/PsXj/~4/JevldhNhTeg&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Sat, 06 Feb 2010 20:37:00 +0000</pubDate>
	<author>noreply@blogger.com (Techs Palace)</author>
</item>
<item>
	<title>Bibek Shrestha: His story</title>
	<guid>http://bibekshrestha.com.np/22 at http://bibekshrestha.com.np</guid>
	<link>http://bibekshrestha.com.np/blogs/post/2010/02/06/his-story</link>
	<description>&lt;p&gt;He wants to go away. Among people who he knows and who knows him, life will always be an unjustice. Full of complaints. They pin point your flaws but he already knows them. He asks them Why? They remain silent. He knows the &quot;Why?&quot; is a power yet meaningless questions. Whenever you feel like not making a conversation, just ask &quot;Why?&quot;. If only they also knew they could complain less, he thinks.&lt;/p&gt;</description>
	<pubDate>Sat, 06 Feb 2010 14:58:49 +0000</pubDate>
</item>
<item>
	<title>Bibek Shrestha: Using custom php.ini in a cPanel server</title>
	<guid>http://bibekshrestha.com.np/21 at http://bibekshrestha.com.np</guid>
	<link>http://bibekshrestha.com.np/blogs/post/2010/02/05/using-custom-phpini-cpanel-server</link>
	<description>&lt;p&gt;Recently in our office at YIPL, we needed to increase the upload_max_filesize and post_max_size of one of our clients. We run on a virtual private server with WHM and cPanel.&lt;/p&gt;
&lt;p&gt;The default php runs as a FastCGI with suexec enabled.&lt;/p&gt;
&lt;p&gt;Here is how I configured apache to run custom php.ini.&lt;/p&gt;
&lt;p&gt;&lt;big&gt;1. Know where your existing php.ini file exists. &lt;/big&gt;&lt;/p&gt;
&lt;p&gt;Just create a phpinfo.php file in your public_html or www folder. Use the phpinfo() function know the current location of default php.ini.&lt;/p&gt;
&lt;p&gt;&lt;code&gt;/home/username/public_html/phpinfo.php&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;&lt;code&gt;&amp;lt;?php&lt;br /&gt;phpinfo();&lt;br /&gt;?&amp;gt;&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;Access the file with &lt;a href=&quot;http://www.sitename.com/phpinfo.php&quot; title=&quot;http://www.sitename.com/phpinfo.php&quot;&gt;http://www.sitename.com/phpinfo.php&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;big&gt;2. Copy the file inside your cgi-bin folder&lt;/big&gt;&lt;/p&gt;
&lt;p&gt;&lt;code&gt;$ cp /usr/local/lib/php.ini /home/username/public_html/cgi-bin&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;&lt;big&gt;3. Create a custom cgi executable to run php.&lt;/big&gt;&lt;/p&gt;
&lt;p&gt;&lt;code&gt;$ vim /home/username/public_html/php.cgi&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;Add following lines&lt;/p&gt;
&lt;p&gt;&lt;code&gt;#!/bin/sh&lt;br /&gt;/usr/local/cpanel/cgi-sys/php5 -c /home/username/public_html/cgi-bin/&lt;br /&gt;# Note, the parameter after -c is the location of new php.ini&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;Allow executable permission to the new php executable&lt;/p&gt;
&lt;p&gt;&lt;code&gt;$ chmod +x /home/username/public_html/cgi-bin/php.cgi&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;&lt;big&gt;4. Modify .htaccess to run php with our new executable by adding the following lines at the top&lt;/big&gt;&lt;/p&gt;
&lt;p&gt;&lt;code&gt;$ head /home/username/public_html/.htaccess&lt;br /&gt;Action application/x-httpd-php5 /cgi-bin/php.cgi&lt;br /&gt;&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;&lt;code&gt;#.. other commands&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;&lt;big&gt;5. Make sure new configuration is loaded.&lt;/big&gt;&lt;/p&gt;
&lt;p&gt;The &lt;a href=&quot;http://www.sitename.com/phpinfo.php&quot; title=&quot;http://www.sitename.com/phpinfo.php&quot;&gt;http://www.sitename.com/phpinfo.php&lt;/a&gt; file should now show&lt;code&gt; /home/username/public_html/cgi-bin/php.ini&lt;/code&gt; as the loaded setting file.&lt;/p&gt;
&lt;p&gt;&lt;big&gt;6. Remove phpinfo.php for security purposes&lt;/big&gt;&lt;/p&gt;
&lt;p&gt;&lt;code&gt;$ rm /home/username/www/phpinfo.php&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;References&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://drupal.org/node/147534&quot; title=&quot;http://drupal.org/node/147534&quot;&gt;http://drupal.org/node/147534&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://forums.cpanel.net/f5/fastcgi-fcgid-php-ini-per-user-100133.html&quot; title=&quot;http://forums.cpanel.net/f5/fastcgi-fcgid-php-ini-per-user-100133.html&quot;&gt;http://forums.cpanel.net/f5/fastcgi-fcgid-php-ini-per-user-100133.html&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://bibekshrestha.com.np/blogs/post/2010/02/05/using-custom-phpini-cpanel-server&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
	<pubDate>Fri, 05 Feb 2010 13:33:22 +0000</pubDate>
</item>
<item>
	<title>Jwalanta Shrestha (jwala): mpg123: Lightest mp3 player in Linux</title>
	<guid>tag:blogger.com,1999:blog-31851025.post-8810402934257307158</guid>
	<link>http://jwalanta.blogspot.com/2010/02/mpg123-lightest-mp3-player-in-linux.html</link>
	<description>If you are in search of the lightest barebone mp3 player in Linux, nothing can beat &lt;a href=&quot;http://www.mpg123.de/&quot;&gt;mpg123&lt;/a&gt;. Unless you want flashy visualizations and playlist management and such, mpg123 can save you a lot of memory and cpu horsepower.&lt;br /&gt;&lt;br /&gt;Installation is easy. In Ubuntu,&lt;br /&gt;&lt;pre&gt;sudo apt-get install mpg123&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;Mpg123 comes with loads of options. Check out the man page for details. Here I'm gonna share a few usage tips.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Shuffle-play a directory of mp3s:&lt;/b&gt;&lt;br /&gt;&lt;pre&gt;mpg123 -CZ /path/to/mp3/folder/*&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;-Z option is for shuffle, -C is for control. From man page:&lt;br /&gt;&lt;pre&gt;-C, --control&lt;br /&gt;  Enable terminal control keys. By default use ’s’ to&lt;br /&gt;  stop, ’p’ to pause, ’f’ to jump forward to the next&lt;br /&gt;  song, ’b’ to jump back to the beginning of the song,&lt;br /&gt;  ’,’ to rewind, ’.’ to fast forward, and ’q’ to quit.&lt;br /&gt;  Type ’h’ for a full  list  of  available  controls.&lt;/pre&gt;&lt;br /&gt;&lt;b&gt;Equalizer:&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;Don't fall off your chair! Yes, mpg123 also comes with 32-band equalizer. But there's no inbuilt graphical UI for that, you need to create the plain-text file. There's an &lt;a href=&quot;http://www.igalaxie.com/ltt/mp3/misc/gtk_mpg123_equal.html&quot;&gt;editor&lt;/a&gt; though if you like, but creating one is not hard either. From man page:&lt;br /&gt;&lt;pre&gt;-E file, --equalizer&lt;br /&gt;  Enables equalization, taken from file. The file needs to&lt;br /&gt;  contain 32 lines of data, additional comment lines may be&lt;br /&gt;  prefixed with #. Each data line consists of two floating-&lt;br /&gt;  point entries, separated by whitespace. They specify the&lt;br /&gt;  multipliers for left and right channel of a  certain&lt;br /&gt;  frequency band, respectively. The first line corresponds&lt;br /&gt;  to the lowest, the 32nd to the highest frequency band.&lt;br /&gt;  Note that you can control the equalizer interactively&lt;br /&gt;  with the generic control interface.&lt;/pre&gt;&lt;br /&gt;I've made one with party feel: &lt;a href=&quot;http://jwalanta.com.np/files/party.txt&quot;&gt;party.txt&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Usage:&lt;br /&gt;&lt;pre&gt;mpg123 -CZ -E party.txt mp3_file&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;b&gt;Songs again and again:&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;Plus if you kind of person who listens to couple of songs again and again for weeks (instead of shuffled huge playlist), then hi5! :) and here's how to do that with mpg123:&lt;br /&gt;&lt;pre&gt;mpg123 -CZ song1.mp3 song2.mp3&lt;br /&gt;&lt;/pre&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; src=&quot;https://blogger.googleusercontent.com/tracker/31851025-8810402934257307158?l=jwalanta.blogspot.com&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;</description>
	<pubDate>Thu, 04 Feb 2010 11:15:35 +0000</pubDate>
	<author>noreply@blogger.com (Jwalanta Shrestha)</author>
</item>
<item>
	<title>888: Multiple profile in Google Chrome in Ubuntu</title>
	<guid>tag:blogger.com,1999:blog-1241233588755403188.post-4847340917543993554</guid>
	<link>http://feedproxy.google.com/~r/feedburner/PsXj/~3/EjbisryOvSA/multiple-profile-in-google-chrome-in.html</link>
	<description>&lt;p&gt;&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/t5dZtK_lKOAvnG-LUlBuxk_Rjhg/0/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/t5dZtK_lKOAvnG-LUlBuxk_Rjhg/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/t5dZtK_lKOAvnG-LUlBuxk_Rjhg/1/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/t5dZtK_lKOAvnG-LUlBuxk_Rjhg/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;/p&gt;I'm talking on basis of Ubuntu. This may or may not work in other OS.&lt;br /&gt;
You can use Google Chrome with multiple profile to:&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;Open different email address at once. For eg: open abc@gmail.com in one window and xyz@gmail.com in another&lt;/li&gt;
&lt;li&gt;Separate personal stuff and your work stuff&lt;/li&gt;
&lt;li&gt;Allow your family member to login without you signing out&lt;/li&gt;
&lt;/ul&gt;These are the main reasons I use multiple profile in google-chrome. If you don't want to go through this&amp;nbsp;hassles,&amp;nbsp;you can always open multiple browsers.&lt;br /&gt;
For case in point you are browsing facebook.com and your sister wants to open the same site for quick check, you can either open different browser or open the same browser that has different profile. (or open in private mode too)&lt;br /&gt;
&lt;br /&gt;
Both my favorite browsers Chrome and Firefox supports multiple profile. For now I'll write instructions for Chrome:&lt;br /&gt;
&lt;ol&gt;&lt;li&gt; Right click your panel, select add to panel and select custom application launcher (if you want to add in panel)&lt;br /&gt;
or&lt;br /&gt;
Right click the &lt;i&gt;menu&lt;/i&gt;, select &lt;i&gt;edit menu&lt;/i&gt;s&lt;i&gt;&lt;/i&gt; and click &lt;i&gt;new item&lt;/i&gt; (if you want to add to menu)&lt;/li&gt;
&lt;li&gt;Fill it as:&lt;/li&gt;

&lt;div class=&quot;separator&quot;&gt;&lt;a href=&quot;http://1.bp.blogspot.com/_a6LMj16lz7g/S2mQaavS4cI/AAAAAAAAAUI/653UXkftpgI/s1600-h/google-chrome-profile.png&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;162&quot; src=&quot;http://1.bp.blogspot.com/_a6LMj16lz7g/S2mQaavS4cI/AAAAAAAAAUI/653UXkftpgI/s320/google-chrome-profile.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;ul&gt;&lt;li&gt;Type: Application&lt;/li&gt;
&lt;li&gt;Name: Google Chrome Profile A&lt;/li&gt;
&lt;li&gt;Command:&amp;nbsp;google-chrome --user-data-dir=/home/&lt;i&gt;userName&lt;/i&gt;/.config/google-chrome/newProfile (&lt;span&gt;the text in picture isn't correct&lt;/span&gt;)&lt;/li&gt;
&lt;/ul&gt;
&lt;li&gt;Click close&lt;/li&gt;
&lt;li&gt;Thats it folks. &lt;/li&gt;
&lt;/ol&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; src=&quot;https://blogger.googleusercontent.com/tracker/1241233588755403188-4847340917543993554?l=techspalace.blogspot.com&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=k28Vz4FKRPo:-1xco4tzzN4:V_sGLiPBpWU&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=k28Vz4FKRPo:-1xco4tzzN4:V_sGLiPBpWU&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=k28Vz4FKRPo:-1xco4tzzN4:7Q72WNTAKBA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=7Q72WNTAKBA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=k28Vz4FKRPo:-1xco4tzzN4:gIN9vFwOqvQ&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=k28Vz4FKRPo:-1xco4tzzN4:gIN9vFwOqvQ&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=k28Vz4FKRPo:-1xco4tzzN4:dnMXMwOfBR0&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=dnMXMwOfBR0&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=k28Vz4FKRPo:-1xco4tzzN4:qj6IDK7rITs&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=qj6IDK7rITs&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=k28Vz4FKRPo:-1xco4tzzN4:yIl2AUoC8zA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=yIl2AUoC8zA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=k28Vz4FKRPo:-1xco4tzzN4:63t7Ie-LG7Y&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=63t7Ie-LG7Y&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/techspalace/~4/k28Vz4FKRPo&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/feedburner/PsXj/~4/EjbisryOvSA&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Wed, 03 Feb 2010 15:06:00 +0000</pubDate>
	<author>noreply@blogger.com (Techs Palace)</author>
</item>
<item>
	<title>Jwalanta Shrestha (jwala): Making DLink DWL-650+ PCMCIA Wireless card work under linux</title>
	<guid>tag:blogger.com,1999:blog-31851025.post-2967140525487954682</guid>
	<link>http://jwalanta.blogspot.com/2010/02/making-dlink-dwl-650-pcmcia-wireless.html</link>
	<description>The DLink &lt;a href=&quot;http://www.dlink.com/products/?pid=23&quot;&gt;DWL-650+&lt;/a&gt; PCMCIA Wireless card doesn't work on recent Linux distros (I tried Ubuntu Hardy to Jaunty). After plugging in, the system hangs with CapsLock flashing.&lt;br /&gt;&lt;br /&gt;Turns out the card is handled by &lt;a href=&quot;http://acx100.sourceforge.net/&quot;&gt;acx&lt;/a&gt; module and the support is broken for this card. So use ndiswrapper instead.&lt;br /&gt;&lt;br /&gt;First blacklist acx module. Open /etc/modprobe.d/blacklist.conf file and add the following line&lt;br /&gt;&lt;pre&gt;blacklist acx&lt;/pre&gt;Now install ndiswrapper&lt;br /&gt;&lt;pre&gt;sudo apt-get install ndiswrapper-common&lt;/pre&gt;Now get the Windows driver for the card from &lt;a href=&quot;ftp://ftp.dlink.com/Wireless/DWL650+/Driver/dwl-650+_drivers_306.zip&quot;&gt;here&lt;/a&gt;. Extract the file, go to the winxp folder and,&lt;br /&gt;&lt;pre&gt;sudo ndiswrapper -i AIRPLUS.INF&lt;/pre&gt;The card should work now.&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; src=&quot;https://blogger.googleusercontent.com/tracker/31851025-2967140525487954682?l=jwalanta.blogspot.com&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;</description>
	<pubDate>Wed, 03 Feb 2010 08:19:33 +0000</pubDate>
	<author>noreply@blogger.com (Jwalanta Shrestha)</author>
</item>
<item>
	<title>Ishwor Gurung: Eclipse, Pydev, Epic, Java, ErlIDE all in one, posted Jan. 23, 2010</title>
	<guid>http://develworx.com/blog/6</guid>
	<link>http://develworx.com/blog/6</link>
	<description>&lt;div&gt;
	&lt;p&gt;
		&lt;span&gt;&lt;span&gt;Eclipse IDE, Pydev, Epic, Java IDE, ErlIDE is bundled up and available to download (117Mb) from&amp;nbsp;&lt;a href=&quot;http://develworx.com/dl/eclipse+java+pydev+epic+erlide.tar.bz2&quot;&gt;here&amp;nbsp;&lt;/a&gt;. Kindly note, that all the packages and the dependencies were strictly downloaded and tested on Ubuntu 9.04 only. The versions includes:&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
	&lt;ul&gt;
		&lt;li&gt;
			&lt;span&gt;&lt;span&gt;Eclipse IDE- Galileo 3.5 SR1&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
		&lt;li&gt;
			&lt;span&gt;&lt;span&gt;Pydev Release: 1.5.4&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
		&lt;li&gt;
			&lt;span&gt;&lt;span&gt;Epic - Testing: 0.6.35&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
		&lt;li&gt;
			&lt;span&gt;&lt;span&gt;ErlIDE - 0.7.3&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
	&lt;/ul&gt;
	&lt;p&gt;
		&lt;span&gt;&lt;span&gt;All software belong to the respective projects. Kindly use it at your own risk. I am providing it merely because of convenience.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
	&lt;p&gt;
		&lt;span&gt;&lt;span&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;[ishwor@muffin:~]$ sha256sum eclipse+java+pydev+epic+erlide.tar.bz2 8249ae3a489f00f2418b8c6d79d936e98d7d4dfc271093bfa52bf7515ea237e8 eclipse+java+pydev+epic+erlide.tar.bz2&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
	&lt;p&gt;
		&lt;span&gt;&lt;span&gt;Happy hacking!&lt;/span&gt;&amp;nbsp;&lt;img alt=&quot;:)&quot; src=&quot;http://develworx.com/libs/ckeditor/plugins/smiley/images/regular_smile.gif&quot; title=&quot;:)&quot; /&gt;&lt;/span&gt;&lt;/p&gt;
	&lt;p&gt;
		&lt;span&gt;&lt;span&gt;(update: re-posting because of typo in my RSS template. Apologies)&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/div&gt;</description>
	<pubDate>Mon, 01 Feb 2010 12:06:11 +0000</pubDate>
</item>
<item>
	<title>Ishwor Gurung: First post!, posted Feb. 27, 2010</title>
	<guid>http://develworx.com/blog/1</guid>
	<link>http://develworx.com/blog/1</link>
	<description>New post using Djangle blogging engine :)</description>
	<pubDate>Mon, 01 Feb 2010 12:06:11 +0000</pubDate>
</item>
<item>
	<title>Bibek Shrestha: Periodic monitoring connection to certain port of certain ip address</title>
	<guid>http://bibekshrestha.com.np/20 at http://bibekshrestha.com.np</guid>
	<link>http://bibekshrestha.com.np/blogs/post/2010/01/30/periodic-monitoring-connection-certain-port-certain-ip-address</link>
	<description>&lt;p&gt;While running a kannel server, I need to make sure certain connections to telcos are up. And here is a simple technique taiyal from ##linux suggested me. It is pretty simple though.&lt;/p&gt;
&lt;p&gt;&lt;code&gt;$ netcat -z -w 2 192.168.10.1 5020 -v -n&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;Netcat is a very simple utility command to connect to a certain ip at certain port. The parameters are as follows.&lt;/p&gt;
&lt;p&gt;&lt;code&gt;-z&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; zero-I/O mode [used for scanning]&lt;br /&gt;-w 2 &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; timeout for connects and final net reads&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; in our case try to connect for just 2 seconds&lt;br /&gt;-v&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; verbose [use twice to be more verbose]&lt;br /&gt;-n&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; numeric-only IP addresses, no DNS&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; No need for dns resolution&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;Add this to a cron and redirect the output to log file and we're set.&lt;/p&gt;
&lt;p&gt;Here is my crontab&lt;/p&gt;
&lt;p&gt;&lt;code&gt;$ crontab -e&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;&lt;code&gt;# m h&amp;nbsp; dom mon dow&amp;nbsp;&amp;nbsp; command&lt;br /&gt;*/5 * * * * /home/monitor/bin/checksmsc.sh&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;And here is my checksmsc.sh code&lt;/p&gt;
&lt;p&gt;&lt;code&gt;$ cat /home/monitor/bin/checksmsc.sh&lt;br /&gt;#! /bin/bash&lt;br /&gt;datetime=`date`&lt;br /&gt;log=`netcat -z -w 2 192.168.10.1 5020 -vn 2&amp;gt;&amp;amp;1`&lt;br /&gt;echo $datetime $log &amp;gt;&amp;gt; /home/monitor/log/connection.log&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;Make sure you make the log folder&lt;/p&gt;
&lt;p&gt;&lt;code&gt;$ mkdir /home/monitor/log&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;Output is in the format as&lt;/p&gt;
&lt;p&gt;&lt;code&gt;Sat Jan 30 14:25:02 NPT 2010 (UNKNOWN) [192.80.10.1] 5020 (?) open&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;Besides netcat, you could also use nmap command&lt;/p&gt;
&lt;p&gt;&lt;code&gt;$ nmap 192.168.10.1 -p T:5020 -oG filename.txt&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;Where -oG specifies output in Greppable format and writes out to filename.txt&lt;/p&gt;
&lt;p&gt;Simple tcp monitor :)&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://bibekshrestha.com.np/blogs/post/2010/01/30/periodic-monitoring-connection-certain-port-certain-ip-address&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
	<pubDate>Sat, 30 Jan 2010 05:39:39 +0000</pubDate>
</item>
<item>
	<title>Bibek Shrestha: Where do you find brilliant ideas?</title>
	<guid>http://bibekshrestha.com.np/19 at http://bibekshrestha.com.np</guid>
	<link>http://bibekshrestha.com.np/blogs/post/2010/01/27/where-do-you-find-brilliant-ideas</link>
	<description>&lt;p&gt;Seriously, where do you find brilliant ideas? Do you have to brilliant, creative, active, thoughful, ..., ?? to get the ideas? Well it might be that being brilliant or creative or thoughtful is just a bi-product of having great ideas.&lt;/p&gt;
&lt;p&gt;I have been in search of a great idea, a great *Product* idea to be specific. Last week I saw the video from David Heinemeier Hansson (&lt;a href=&quot;http://www.loudthinking.com/&quot; title=&quot;http://www.loudthinking.com/&quot;&gt;http://www.loudthinking.com/&lt;/a&gt;) where he speaks about creating a profitable startup company&lt;img alt=&quot;&quot; src=&quot;http://bibekshrestha.com.np/sites/default/files/122544491_76c96fc2e0.jpg&quot; width=&quot;250&quot; height=&quot;333&quot; align=&quot;right&quot; /&gt;. See the video here &lt;a href=&quot;http://www.youtube.com/watch?v=0CDXJ6bMkMY&quot; title=&quot;http://www.youtube.com/watch?v=0CDXJ6bMkMY&quot;&gt;http://www.youtube.com/watch?v=0CDXJ6bMkMY&lt;/a&gt; . It is pretty impressive, thanks to Geshan (&lt;a href=&quot;http://twitter.com/geshan&quot; title=&quot;http://twitter.com/geshan&quot;&gt;http://twitter.com/geshan&lt;/a&gt;). He talks about the small challenges startups face and the why not to fear for not being successful. It is not necessary to target to be the next facebook or twitter or google or microsoft and a startup should just focus on getting your own product up and build your own small client base and keep them happy. I've seen few other products, small but quiet useful. I think they  should have a mediocre client base and have good revenue stream.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Take the mockup tool Balsamiq for example. It costs 79$. That isn't much for a tool of such good use and a lot of people will actually prefer to pay for it. If you build something useful, people will pay for it. The same goes for the online source code hosting website github (&lt;a href=&quot;http://github.org&quot; title=&quot;http://github.org&quot;&gt;http://github.org&lt;/a&gt;). Pretty awesome right?&lt;/p&gt;
&lt;p&gt;A lof of these ideas aren't the very first time people have come up with. There must have been a lot of mockup tools before Balsamiq and a lot of source code hosting facilities other than GitHub, and there will be others too. The idea it seems is to not to focus to beat the other guy, but to start delivering products to your clients. If you focus on 5 clients today, it is very much possible to have 10 clients tomorrow if you have a good product. To constantly deliver and innovate should suffice one to stay in the business. Why not you stay in the business and let others do their own business. Take it small I guess.&lt;/p&gt;
&lt;p&gt;And to once again come back to topic, it seems when nurturing a concept, its more of a we than I, when coming up with ideas. I alone might come up with 3 ideas and only one of it might actually be good enough, but when there is a group, innovation starts to flow. Two person with three ideas each will be six ideas to start of. Take one good idea from it, work on it, brainstorm and modify to make it better. Sounds interesting.&lt;/p&gt;
&lt;p&gt;And to have the *we* thing, ie to build a good team there needs to be communication. That is where this post comes in. I have been lacking enough creativeness to really start blogging till now. And shall I now start blogging just to get my point out to open, no matter how small or how insignificant it is.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://bibekshrestha.com.np/blogs/post/2010/01/27/where-do-you-find-brilliant-ideas&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
	<pubDate>Wed, 27 Jan 2010 15:10:16 +0000</pubDate>
</item>
<item>
	<title>Prasanna Gautam (SR71-Blackbird): Removing editor swap files before commits in git</title>
	<guid>http://www.nextdoorhacker.com/2010/01/removing-editor-swap-files-before-commits-in-git/</guid>
	<link>http://www.nextdoorhacker.com/2010/01/removing-editor-swap-files-before-commits-in-git/</link>
	<description>I use git a lot. And I use just about any text editor in my system to edit files. And they tend to come with baggages of their own. Albeit useful, the swap files tend to linger on and eventually end up in my git repository. Here's how to avoid ...</description>
	<pubDate>Wed, 27 Jan 2010 03:00:06 +0000</pubDate>
</item>
<item>
	<title>888: gnome-shell In Karmic</title>
	<guid>tag:blogger.com,1999:blog-1241233588755403188.post-6162906009036069898</guid>
	<link>http://feedproxy.google.com/~r/feedburner/PsXj/~3/snWITJaBqc0/gnome-shell-in-karmic.html</link>
	<description>&lt;p&gt;&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/s-4Y7dmNvWx8SxS3DmfNIpypoT0/0/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/s-4Y7dmNvWx8SxS3DmfNIpypoT0/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/s-4Y7dmNvWx8SxS3DmfNIpypoT0/1/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/s-4Y7dmNvWx8SxS3DmfNIpypoT0/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;blockquote&gt;The GNOME Shell redefines user interactions with the GNOME desktop. In particular, it offers new ways for the user to find and open applications and documents, switch between various activities, and view incoming information such as chat messages or system notifications. Later, it will introduce a framework for creating custom extensions. The GNOME Shell replaces functions handled by the GNOME Panel and by the window manager in previous versions of GNOME. The GNOME Shell has rich visual effects enabled by new graphical technologies.&lt;br /&gt;
&lt;/blockquote&gt;In short its cool!&lt;br /&gt;
&lt;div class=&quot;separator&quot;&gt;&lt;a href=&quot;http://4.bp.blogspot.com/_a6LMj16lz7g/S16B20o-lPI/AAAAAAAAAT8/cz-5SudLqFI/s1600-h/gnome-3-gnome-shell.png&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;250&quot; src=&quot;http://4.bp.blogspot.com/_a6LMj16lz7g/S16B20o-lPI/AAAAAAAAAT8/cz-5SudLqFI/s400/gnome-3-gnome-shell.png&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;This will be included in Gnome-3.0 which is going to be released in September 2010. Nevertheless gnome-shell is already available as package in Karmic Koala. You can see the new look of gnome very easily.&lt;br /&gt;
&lt;br /&gt;
In terminal type:&lt;br /&gt;
&lt;blockquote&gt;sudo aptitude install gnome-shell&lt;br /&gt;
&lt;/blockquote&gt;This will install gnome-shell. Now to try it press ALT+F2 and type:&lt;br /&gt;
&lt;blockquote&gt;gnome-shell --replace&lt;br /&gt;
&lt;/blockquote&gt;To get your regular gnome-desktop, press ALT+F2 and type:&lt;br /&gt;
&lt;blockquote&gt;compiz --replace&lt;br /&gt;
&lt;/blockquote&gt;If you like gnome-shell and want to make it default while opening your computer, open terminal and type:&lt;br /&gt;
&lt;blockquote&gt;gconftool-2 --set /desktop/gnome/session/required_components/windowmanager --type string gnome-shell&lt;br /&gt;
&lt;/blockquote&gt;To get rid of this, open terminal and type:&lt;br /&gt;
&lt;blockquote&gt;gconftool-2 --unset /desktop/gnome/session/required_components/windowmanager&lt;br /&gt;
&lt;/blockquote&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; src=&quot;https://blogger.googleusercontent.com/tracker/1241233588755403188-6162906009036069898?l=techspalace.blogspot.com&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=E9LiLYoLnAE:FdCHGvSgbMM:V_sGLiPBpWU&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=E9LiLYoLnAE:FdCHGvSgbMM:V_sGLiPBpWU&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=E9LiLYoLnAE:FdCHGvSgbMM:7Q72WNTAKBA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=7Q72WNTAKBA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=E9LiLYoLnAE:FdCHGvSgbMM:gIN9vFwOqvQ&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=E9LiLYoLnAE:FdCHGvSgbMM:gIN9vFwOqvQ&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=E9LiLYoLnAE:FdCHGvSgbMM:dnMXMwOfBR0&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=dnMXMwOfBR0&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=E9LiLYoLnAE:FdCHGvSgbMM:qj6IDK7rITs&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=qj6IDK7rITs&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=E9LiLYoLnAE:FdCHGvSgbMM:yIl2AUoC8zA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=yIl2AUoC8zA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=E9LiLYoLnAE:FdCHGvSgbMM:63t7Ie-LG7Y&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=63t7Ie-LG7Y&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/techspalace/~4/E9LiLYoLnAE&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/feedburner/PsXj/~4/snWITJaBqc0&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Mon, 25 Jan 2010 06:05:00 +0000</pubDate>
	<author>noreply@blogger.com (Techs Palace)</author>
</item>
<item>
	<title>888: 'Pages' Available In Blogger Draft</title>
	<guid>tag:blogger.com,1999:blog-1241233588755403188.post-3117424987497506376</guid>
	<link>http://feedproxy.google.com/~r/feedburner/PsXj/~3/V7D5t4i3SqI/pages-available-in-blogger-draft.html</link>
	<description>&lt;p&gt;&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/XVejXHwJFZgQmDAdLwI4DlDVhuk/0/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/XVejXHwJFZgQmDAdLwI4DlDVhuk/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/XVejXHwJFZgQmDAdLwI4DlDVhuk/1/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/XVejXHwJFZgQmDAdLwI4DlDVhuk/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;blockquote&gt;Blogger pages let you to publish static information on stand-alone pages linked from your blog. For example, you can use pages to create anAbout This Blog page that discusses the evolution of your blog, or a Contact Me page that provides directions, a phone number, and a map to your location.&lt;/blockquote&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.google.com/support/blogger/bin/answer.py?answer=165955&quot;&gt;http://www.google.com/support/blogger/bin/answer.py?answer=165955&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
You can only have 10 pages. The guide above has instruction to enable page in custom template too.&lt;br /&gt;
&lt;br /&gt;
For this you have to enable your blogger draft. This is some kind of beta version of blogger and new updates are rolled through this.&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; src=&quot;https://blogger.googleusercontent.com/tracker/1241233588755403188-3117424987497506376?l=techspalace.blogspot.com&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=7NG1u4vjN_8:tTGHxNv1PKo:V_sGLiPBpWU&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=7NG1u4vjN_8:tTGHxNv1PKo:V_sGLiPBpWU&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=7NG1u4vjN_8:tTGHxNv1PKo:7Q72WNTAKBA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=7Q72WNTAKBA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=7NG1u4vjN_8:tTGHxNv1PKo:gIN9vFwOqvQ&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=7NG1u4vjN_8:tTGHxNv1PKo:gIN9vFwOqvQ&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=7NG1u4vjN_8:tTGHxNv1PKo:dnMXMwOfBR0&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=dnMXMwOfBR0&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=7NG1u4vjN_8:tTGHxNv1PKo:qj6IDK7rITs&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=qj6IDK7rITs&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=7NG1u4vjN_8:tTGHxNv1PKo:yIl2AUoC8zA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=yIl2AUoC8zA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=7NG1u4vjN_8:tTGHxNv1PKo:63t7Ie-LG7Y&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=63t7Ie-LG7Y&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/techspalace/~4/7NG1u4vjN_8&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/feedburner/PsXj/~4/V7D5t4i3SqI&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Mon, 25 Jan 2010 05:44:00 +0000</pubDate>
	<author>noreply@blogger.com (Techs Palace)</author>
</item>
<item>
	<title>888: Install Firefox 3.6 In Ubuntu</title>
	<guid>tag:blogger.com,1999:blog-1241233588755403188.post-7684133388749187160</guid>
	<link>http://feedproxy.google.com/~r/feedburner/PsXj/~3/iYFv4MPg-0c/install-firefox-36-in-ubuntu.html</link>
	<description>&lt;p&gt;&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/MYHeKMmO-bFj2pvMGZVuGB9iJwE/0/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/MYHeKMmO-bFj2pvMGZVuGB9iJwE/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/MYHeKMmO-bFj2pvMGZVuGB9iJwE/1/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/MYHeKMmO-bFj2pvMGZVuGB9iJwE/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;/p&gt;Mozilla released Firefox 3.6 few days ago. It is fast to start and fast to do js things. More in release notes &lt;a href=&quot;http://www.mozilla.com/en-US/firefox/3.6/releasenotes/&quot;&gt;here&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
Installing Firefox 3.6 is same as installing Thunderbird 3 which I have already covered &lt;a href=&quot;http://techspalace.blogspot.com/2010/01/thunderbird-3-in-ubuntu.html&quot;&gt;here&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
I'll just copy pate those things here. So to update your Firefox follow the steps below:&lt;br /&gt;
&lt;br /&gt;
&lt;ol&gt;&lt;li&gt;Open Terminal&lt;/li&gt;
&lt;li&gt;Add Mozilla's sources by:&lt;/li&gt;
&lt;ul&gt;&lt;li&gt;For Karmic:&lt;/li&gt;
&lt;ul&gt;&lt;li&gt;&lt;blockquote&gt;sudo add-apt-repository ppa:ubuntu-mozilla-daily/ppa&lt;/blockquote&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;li&gt;For version older than Karmic:&lt;/li&gt;
&lt;ul&gt;&lt;li&gt;&lt;blockquote&gt;echo 'deb http://ppa.launchpad.net/ubuntu-mozilla-daily/ppa/ubuntu ubuntu_version main' | sudo tee -a &amp;nbsp;/etc/apt/sources.list&lt;br /&gt;
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 247510BE&lt;/blockquote&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/ul&gt;&lt;li&gt;sudo aptitude update&lt;/li&gt;
&lt;li&gt;sudo aptitude install firefox-3.6 firefox-3.6-gnome-support firefox-3.6-branding&lt;br /&gt;
&lt;/li&gt;
&lt;li&gt;sudo aptitude safe-upgrade (just in case you've missed anything)&lt;/li&gt;
&lt;li&gt;sudo rm /etc/apt/sources.list.d/ubuntu-mozilla-daily-ppa-karmic.list (Otherwise your update manager will show new updates each day)&lt;/li&gt;
&lt;li&gt;sudo aptitude update&lt;/li&gt;
&lt;/ol&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; src=&quot;https://blogger.googleusercontent.com/tracker/1241233588755403188-7684133388749187160?l=techspalace.blogspot.com&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=eiy91FNAbDo:3D0moot31Sg:V_sGLiPBpWU&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=eiy91FNAbDo:3D0moot31Sg:V_sGLiPBpWU&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=eiy91FNAbDo:3D0moot31Sg:7Q72WNTAKBA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=7Q72WNTAKBA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=eiy91FNAbDo:3D0moot31Sg:gIN9vFwOqvQ&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=eiy91FNAbDo:3D0moot31Sg:gIN9vFwOqvQ&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=eiy91FNAbDo:3D0moot31Sg:dnMXMwOfBR0&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=dnMXMwOfBR0&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=eiy91FNAbDo:3D0moot31Sg:qj6IDK7rITs&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=qj6IDK7rITs&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=eiy91FNAbDo:3D0moot31Sg:yIl2AUoC8zA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=yIl2AUoC8zA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=eiy91FNAbDo:3D0moot31Sg:63t7Ie-LG7Y&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=63t7Ie-LG7Y&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/techspalace/~4/eiy91FNAbDo&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/feedburner/PsXj/~4/iYFv4MPg-0c&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Mon, 25 Jan 2010 05:19:00 +0000</pubDate>
	<author>noreply@blogger.com (Techs Palace)</author>
</item>
<item>
	<title>Himanshu Chhetri (r11t): Building a simple Google Chrome Extension</title>
	<guid>http://nepcoder.com/2010/01/18/first_chrome_extension</guid>
	<link>http://feedproxy.google.com/~r/Nepcoder/~3/lbD351-tlo0/first_chrome_extension.html</link>
	<description>&lt;h1&gt;Building a simple Google Chrome Extension&lt;/h1&gt;
&lt;p class=&quot;meta&quot;&gt;18 January 2010&lt;/p&gt;
&lt;p&gt;Google Chrome for Linux is my browser of choice for many reasons including speed and overall feeling of being &amp;#8220;snappy&amp;#8221; in comparison to Mozilla Firefox. I was going over the &lt;a href=&quot;http://code.google.com/chrome/extensions/getstarted.html&quot;&gt;documentation&lt;/a&gt; for extension developers and realized it is fairly easy to build simple extensions. However, what makes developing Chrome extensions so much fun is the support for features like &lt;a href=&quot;http://dev.w3.org/html5/webstorage/#the-localstorage-attribute&quot;&gt;HTML5 local storage&lt;/a&gt; which provides persistent data storage of key-value pair data. This makes it possibly to conveniently store and retrieve data for you Chrome extension.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://nepcoder.com/images/ext2.jpg&quot; alt=&quot;&quot; /&gt;&lt;br /&gt;
&lt;img src=&quot;http://nepcoder.com/images/ext1.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;I decided to build a simple extension called &lt;a href=&quot;https://chrome.google.com/extensions/detail/gdoopannbkddnlghhnkfkkafomphfhlc&quot;&gt;H2O that you can download from this link&lt;/a&gt; to help you remember to drink eight glasses of water everyday by displaying an icon along with a counter next to the &lt;span class=&quot;caps&quot;&gt;URL&lt;/span&gt; bar in Chrome. I was only experimenting and trying to build something vaguely useful, however the positive &lt;a href=&quot;https://chrome.google.com/extensions/detail/gdoopannbkddnlghhnkfkkafomphfhlc&quot;&gt;feedback and comments&lt;/a&gt; I have received from the users who bothered to install my extension have prompted me to further develop this extension with more features. I am considering adding features like displaying &amp;#8220;graphs&amp;#8221; of daily/weekly fluid consumptions.&lt;/p&gt;
&lt;p&gt;I have also put up the &lt;a href=&quot;http://github.com/himanshuc/h2o&quot;&gt;source code&lt;/a&gt; for my extension @ Github for those interested in taking a look at it.&lt;/p&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/Nepcoder/~4/lbD351-tlo0&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Mon, 18 Jan 2010 06:00:00 +0000</pubDate>
</item>
<item>
	<title>888: Install Thunderbird 3 In Ubuntu</title>
	<guid>tag:blogger.com,1999:blog-1241233588755403188.post-2230260266811491873</guid>
	<link>http://feedproxy.google.com/~r/feedburner/PsXj/~3/XrvD2rnXAH4/thunderbird-3-in-ubuntu.html</link>
	<description>&lt;p&gt;&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/5ij6X8JV9P0p9WhL6bV1Qrv-WVU/0/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/5ij6X8JV9P0p9WhL6bV1Qrv-WVU/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/5ij6X8JV9P0p9WhL6bV1Qrv-WVU/1/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/5ij6X8JV9P0p9WhL6bV1Qrv-WVU/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;/p&gt;I am never the fan of mail client. They are difficult to use, slow and ugly.&lt;br /&gt;
&lt;br /&gt;
Mozilla recently released 3rd version of their popular email software, Thunderbird. &amp;nbsp;As said earlier, I wasn't much excited. Nevertheless I gave it a try. Thunderbird has made major changes in its UI. They have added new features like tabs, archive, smart folder and so on. More here &lt;a href=&quot;http://www.mozillamessaging.com/en-US/thunderbird/3.0/releasenotes/&quot;&gt;http://www.mozillamessaging.com/en-US/thunderbird/3.0/releasenotes/#&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
After using this for few days I must say they have made definitive improvement on this software. I highly recommend everyone to update to this version. There was some problem with 'lightning' extension but this is already fixed.&lt;br /&gt;
&lt;br /&gt;
To install follow the steps below:&lt;br /&gt;
&lt;ol&gt;&lt;li&gt;Open Terminal&lt;/li&gt;
&lt;li&gt;Add Mozilla's sources by:&lt;/li&gt;
&lt;ul&gt;&lt;li&gt;For Karmic:&lt;/li&gt;
&lt;ul&gt;&lt;li&gt;&lt;blockquote&gt;sudo add-apt-repository ppa:ubuntu-mozilla-daily/ppa&lt;/blockquote&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;li&gt;For version older than Karmic:&lt;/li&gt;
&lt;ul&gt;&lt;li&gt;&lt;blockquote&gt;echo 'deb http://ppa.launchpad.net/ubuntu-mozilla-daily/ppa/ubuntu ubuntu_version main' | sudo tee -a &amp;nbsp;/etc/apt/sources.list&lt;br /&gt;
&lt;/blockquote&gt;&lt;blockquote&gt;sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 247510BE&lt;br /&gt;
&lt;/blockquote&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/ul&gt;&lt;li&gt;sudo aptitude update&lt;/li&gt;
&lt;li&gt;sudo aptitude install thunderbird-3.0 thunderbird-3.0-gnome-support&lt;/li&gt;
&lt;li&gt;sudo aptitude remove thunderbird-2.0 thunderbird-2.0-gnome-support&lt;/li&gt;
&lt;li&gt;sudo ln -s /usr/bin/thunderbird-3.0 /usr/bin/thunderbird&lt;/li&gt;
&lt;/ol&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; src=&quot;https://blogger.googleusercontent.com/tracker/1241233588755403188-2230260266811491873?l=techspalace.blogspot.com&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=y1Le1nYbGe4:uIohPjIE7fk:V_sGLiPBpWU&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=y1Le1nYbGe4:uIohPjIE7fk:V_sGLiPBpWU&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=y1Le1nYbGe4:uIohPjIE7fk:7Q72WNTAKBA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=7Q72WNTAKBA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=y1Le1nYbGe4:uIohPjIE7fk:gIN9vFwOqvQ&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=y1Le1nYbGe4:uIohPjIE7fk:gIN9vFwOqvQ&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=y1Le1nYbGe4:uIohPjIE7fk:dnMXMwOfBR0&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=dnMXMwOfBR0&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=y1Le1nYbGe4:uIohPjIE7fk:qj6IDK7rITs&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=qj6IDK7rITs&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=y1Le1nYbGe4:uIohPjIE7fk:yIl2AUoC8zA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=yIl2AUoC8zA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=y1Le1nYbGe4:uIohPjIE7fk:63t7Ie-LG7Y&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=63t7Ie-LG7Y&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/techspalace/~4/y1Le1nYbGe4&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/feedburner/PsXj/~4/XrvD2rnXAH4&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Fri, 15 Jan 2010 16:37:00 +0000</pubDate>
	<author>noreply@blogger.com (Techs Palace)</author>
</item>
<item>
	<title>888: DockBarX - Windows 7 Like Task Bar For Ubuntu</title>
	<guid>tag:blogger.com,1999:blog-1241233588755403188.post-7543153933329058687</guid>
	<link>http://feedproxy.google.com/~r/feedburner/PsXj/~3/_4PzWFVOuh0/dockbarx-windows-7-like-task-bar-for.html</link>
	<description>&lt;p&gt;&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/JQSHCMNZc9b1_jdv2Pi-CMga9xc/0/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/JQSHCMNZc9b1_jdv2Pi-CMga9xc/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/JQSHCMNZc9b1_jdv2Pi-CMga9xc/1/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/JQSHCMNZc9b1_jdv2Pi-CMga9xc/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;/p&gt;Many People liked the new task bar introduced in Windows 7. &amp;nbsp;If you don't believe me you can see &lt;a href=&quot;http://lifehacker.com/5396142/best-application-dock-windows-7-taskbar&quot;&gt;this&lt;/a&gt; lifehacker's poll on &quot;Best Application Dock&quot;.&lt;br /&gt;
&lt;br /&gt;
There is similar bar in Linux by the name &quot;&lt;a href=&quot;http://gnome-look.org/content/show.php/DockbarX?content=101604&quot;&gt;DockBarX&lt;/a&gt;&quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot;&gt;&lt;a href=&quot;http://1.bp.blogspot.com/_a6LMj16lz7g/S1CVHehs0fI/AAAAAAAAAT4/vB7OHT8ywLs/s1600-h/dockbarx-1.png&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;155&quot; src=&quot;http://1.bp.blogspot.com/_a6LMj16lz7g/S1CVHehs0fI/AAAAAAAAAT4/vB7OHT8ywLs/s320/dockbarx-1.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
I have been reading about it from long time back but I was very lazy to give it a try. Also I never believed it would be very smooth and bug free.&lt;br /&gt;
&lt;br /&gt;
However, I decided to give it a try and believe it or not now I am very big fan of it. It is a powerful program in a sense that you can configure multiple options like grouping, pinning applications, themes, click actions and so on. It has worked flawlessly for me.&lt;br /&gt;
&lt;br /&gt;
If you also want to give it a try install it by:&lt;br /&gt;
&lt;ol&gt;&lt;li&gt;Open terminal&lt;/li&gt;
&lt;li&gt;Add the dockbarx source:&lt;/li&gt;

&lt;ul&gt;&lt;li&gt;If you are using Karmic&lt;/li&gt;
&lt;/ul&gt;&lt;ol&gt;&lt;ul&gt;&lt;li&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;sudo add-apt-repository ppa:dockbar-main/ppa&lt;br /&gt;
&lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/ol&gt;&lt;ul&gt;&lt;li&gt;If you are using older version than Karmic&lt;/li&gt;
&lt;/ul&gt;&lt;ol&gt;&lt;ul&gt;&lt;li&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;echo 'deb http://ppa.launchpad.net/dockbar-main/ppa/ubuntu ubuntu_version main' | sudo tee -a &amp;nbsp;/etc/apt/sources.list&lt;br /&gt;
&lt;/blockquote&gt;&lt;blockquote&gt;sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 38BD81CA&lt;br /&gt;
&lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/ol&gt;
&lt;li&gt;sudo aptitude update&lt;/li&gt;
&lt;li&gt;sudo aptitude install dockbarx&lt;/li&gt;
&lt;li&gt;killall -9 gnome-panel&lt;/li&gt;
&lt;li&gt;Now right click in the empty area of your gnome-panel and click 'Add to Panel'&lt;/li&gt;
&lt;li&gt;Select docbarx from the list&lt;/li&gt;
&lt;li&gt;You may wan to remove your window list by right clicking on the far left and selecting remove&lt;/li&gt;
&lt;/ol&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; src=&quot;https://blogger.googleusercontent.com/tracker/1241233588755403188-7543153933329058687?l=techspalace.blogspot.com&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=AfUiz_k9cbc:TfPizBsBLp8:V_sGLiPBpWU&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=AfUiz_k9cbc:TfPizBsBLp8:V_sGLiPBpWU&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=AfUiz_k9cbc:TfPizBsBLp8:7Q72WNTAKBA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=7Q72WNTAKBA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=AfUiz_k9cbc:TfPizBsBLp8:gIN9vFwOqvQ&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=AfUiz_k9cbc:TfPizBsBLp8:gIN9vFwOqvQ&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=AfUiz_k9cbc:TfPizBsBLp8:dnMXMwOfBR0&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=dnMXMwOfBR0&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=AfUiz_k9cbc:TfPizBsBLp8:qj6IDK7rITs&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=qj6IDK7rITs&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=AfUiz_k9cbc:TfPizBsBLp8:yIl2AUoC8zA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=yIl2AUoC8zA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=AfUiz_k9cbc:TfPizBsBLp8:63t7Ie-LG7Y&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=63t7Ie-LG7Y&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/techspalace/~4/AfUiz_k9cbc&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/feedburner/PsXj/~4/_4PzWFVOuh0&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Fri, 15 Jan 2010 16:30:00 +0000</pubDate>
	<author>noreply@blogger.com (Techs Palace)</author>
</item>
<item>
	<title>Himanshu Chhetri (r11t): My presentation on ZSH basics</title>
	<guid>http://nepcoder.com/2010/01/14/zsh_ppt</guid>
	<link>http://feedproxy.google.com/~r/Nepcoder/~3/iPQuEZIvLE4/zsh_ppt.html</link>
	<description>&lt;h1&gt;My presentation on &lt;span class=&quot;caps&quot;&gt;ZSH&lt;/span&gt; basics&lt;/h1&gt;
&lt;p class=&quot;meta&quot;&gt;14 January 2010&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.nepcoder.com/ppt/zshppt/&quot;&gt;Click here&lt;/a&gt; to view my presentation on the basics of the Zsh shell which I will be presenting next week at the local Linux User Group at my university. You can use arrow keys to navigate the slides which are displayed in the browser created using the magic of &lt;a href=&quot;http://github.com/nakajima/slidedown/&quot;&gt;Slidedown&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Follow &lt;a href=&quot;http://twitter.com/zshtips&quot;&gt;@zshtips&lt;/a&gt; on Twitter if you are further interested in Zsh and various hacks/customizations for it posted by me occasionally.&lt;/p&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/Nepcoder/~4/iPQuEZIvLE4&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Thu, 14 Jan 2010 06:00:00 +0000</pubDate>
</item>
<item>
	<title>888: How To Change Mac Address In Linux</title>
	<guid>tag:blogger.com,1999:blog-1241233588755403188.post-688291764734232900</guid>
	<link>http://feedproxy.google.com/~r/feedburner/PsXj/~3/j-fcrJjzQ_U/how-to-change-mac-address-in-linux.html</link>
	<description>&lt;p&gt;&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/HqyOA3U_dIJgt9l4xZGM12Dpm7g/0/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/HqyOA3U_dIJgt9l4xZGM12Dpm7g/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/HqyOA3U_dIJgt9l4xZGM12Dpm7g/1/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/HqyOA3U_dIJgt9l4xZGM12Dpm7g/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;/p&gt;Q. How can I change the mac address of &amp;nbsp;network card in my Ubuntu box ?&lt;br /&gt;
Ans. Changing mac address is very simple. You only need the command &lt;b&gt;ifconfig&lt;/b&gt;. Follow the steps below:&lt;br /&gt;
&lt;ol&gt;&lt;li&gt;Open terminal&lt;/li&gt;
&lt;li&gt;Find the name of your interface, for example eth0&lt;/li&gt;
&lt;li&gt;sudo ifconfig &lt;b&gt;eth0&lt;/b&gt; down hw ether aaaabbbb &lt;i&gt;where aabbccdd is the required mac address.&lt;/i&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; src=&quot;https://blogger.googleusercontent.com/tracker/1241233588755403188-688291764734232900?l=techspalace.blogspot.com&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=J_K-vj5X8B4:Espp0FV0iH8:V_sGLiPBpWU&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=J_K-vj5X8B4:Espp0FV0iH8:V_sGLiPBpWU&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=J_K-vj5X8B4:Espp0FV0iH8:7Q72WNTAKBA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=7Q72WNTAKBA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=J_K-vj5X8B4:Espp0FV0iH8:gIN9vFwOqvQ&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=J_K-vj5X8B4:Espp0FV0iH8:gIN9vFwOqvQ&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=J_K-vj5X8B4:Espp0FV0iH8:dnMXMwOfBR0&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=dnMXMwOfBR0&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=J_K-vj5X8B4:Espp0FV0iH8:qj6IDK7rITs&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=qj6IDK7rITs&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=J_K-vj5X8B4:Espp0FV0iH8:yIl2AUoC8zA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=yIl2AUoC8zA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=J_K-vj5X8B4:Espp0FV0iH8:63t7Ie-LG7Y&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=63t7Ie-LG7Y&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/techspalace/~4/J_K-vj5X8B4&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/feedburner/PsXj/~4/j-fcrJjzQ_U&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Wed, 30 Dec 2009 15:25:00 +0000</pubDate>
	<author>noreply@blogger.com (Techs Palace)</author>
</item>
<item>
	<title>888: Gnome Typing Break</title>
	<guid>tag:blogger.com,1999:blog-1241233588755403188.post-2030177619374620405</guid>
	<link>http://feedproxy.google.com/~r/feedburner/PsXj/~3/gyhNsboMgs4/gnome-typing-break.html</link>
	<description>&lt;p&gt;&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/fgBohC6wqDnvU4uofgxqHoLIy3E/0/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/fgBohC6wqDnvU4uofgxqHoLIy3E/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/fgBohC6wqDnvU4uofgxqHoLIy3E/1/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/fgBohC6wqDnvU4uofgxqHoLIy3E/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;/p&gt;If you use too much computer you may be risking your health. I use computer around 7 hours in 8 hours' office. Before leaving office around 2 and after office around 5 hours. In total that is 17  hours i.e. around 71% of my day. I am sure I don't follow ergonomic principal. What I have started to do is take three minutes break every one hour. For this I use the 'typing break' option in keyboard preferences. After using this for some time I have concluded the following cons and pros:&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;Pros:&lt;/li&gt;

&lt;ol&gt;&lt;li&gt;Nice system tray that blinks few minutes before the break making us ready for the break&lt;/li&gt;
&lt;li&gt;Option to post pone the break&lt;/li&gt;
&lt;li&gt;Option to change work interval and break interval&lt;/li&gt;
&lt;li&gt;If you sit idle the timer automatically resets. That means you have to work&amp;nbsp;continuously&amp;nbsp;in the work interval to be illegible for the break. You leave your computer for few minutes and bang the break is gone.&lt;/li&gt;
&lt;/ol&gt;
&lt;li&gt;Cons:&lt;/li&gt;

&lt;ol&gt;&lt;li&gt;Screen doesn't lock during the break. So you can't leave your computer in the break for privacy reasons. There already is a bug report in&amp;nbsp;&lt;a href=&quot;https://bugzilla.gnome.org/show_bug.cgi?id=128381&quot;&gt;https://bugzilla.gnome.org/show_bug.cgi?id=128381&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Due to transparent lock screen, other people can study your screen.&lt;/li&gt;
&lt;/ol&gt;
&lt;/ul&gt;&lt;div&gt;Now if you also want this option, goto:&lt;br /&gt;
&lt;/div&gt;&lt;blockquote&gt;System&amp;gt;Preferences&amp;gt;Keyboard&amp;gt;Typing Break&lt;br /&gt;
&lt;/blockquote&gt;&lt;div class=&quot;separator&quot;&gt;&lt;a href=&quot;http://4.bp.blogspot.com/_a6LMj16lz7g/SztpBTnwdlI/AAAAAAAAAT0/vKPb-_ldFTA/s1600-h/gnome-typing-break.png&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;320&quot; src=&quot;http://4.bp.blogspot.com/_a6LMj16lz7g/SztpBTnwdlI/AAAAAAAAAT0/vKPb-_ldFTA/s320/gnome-typing-break.png&quot; width=&quot;307&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;If you find yourself stuck in typing break and don't have the option for postponing the break, you can kill &amp;nbsp;the break by:&lt;br /&gt;
&lt;ol&gt;&lt;li&gt;Go to virtual terminal by pressing ALT+CTRL+F1&lt;/li&gt;
&lt;li&gt;Log in&lt;/li&gt;
&lt;li&gt;killall -9 gnome-typing-monitor&lt;/li&gt;
&lt;/ol&gt;If you are much more health concerned then you probably would like to try &lt;a href=&quot;apt://workrave/&quot;&gt;apt://workrave&lt;/a&gt; . This is a very good software that makes you take break and also helps stretch out. It will guide you through series of exercise to perform during the break.&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; src=&quot;https://blogger.googleusercontent.com/tracker/1241233588755403188-2030177619374620405?l=techspalace.blogspot.com&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=n_401dM4KK0:-Ggp1qCLi7M:V_sGLiPBpWU&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=n_401dM4KK0:-Ggp1qCLi7M:V_sGLiPBpWU&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=n_401dM4KK0:-Ggp1qCLi7M:7Q72WNTAKBA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=7Q72WNTAKBA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=n_401dM4KK0:-Ggp1qCLi7M:gIN9vFwOqvQ&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=n_401dM4KK0:-Ggp1qCLi7M:gIN9vFwOqvQ&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=n_401dM4KK0:-Ggp1qCLi7M:dnMXMwOfBR0&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=dnMXMwOfBR0&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=n_401dM4KK0:-Ggp1qCLi7M:qj6IDK7rITs&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=qj6IDK7rITs&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=n_401dM4KK0:-Ggp1qCLi7M:yIl2AUoC8zA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=yIl2AUoC8zA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=n_401dM4KK0:-Ggp1qCLi7M:63t7Ie-LG7Y&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=63t7Ie-LG7Y&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/techspalace/~4/n_401dM4KK0&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/feedburner/PsXj/~4/gyhNsboMgs4&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Wed, 30 Dec 2009 14:54:00 +0000</pubDate>
	<author>noreply@blogger.com (Techs Palace)</author>
</item>
<item>
	<title>Bibek Paudel: Welcome back to reality !</title>
	<guid>http://bibekpaudel.wordpress.com/?p=405</guid>
	<link>http://bibekpaudel.wordpress.com/2009/12/29/welcome-back-to-reality/</link>
	<description>&lt;br /&gt;&lt;p&gt;I&amp;#8217;m sure you had almost started thinking of yourself as a global citizen as you wished each other &amp;#8220;Merry Christmas&amp;#8221; and partied well over the weekend. Especially to those in Kathmandu and cities. I&amp;#8217;m sure some of you had already made plans for the New Year celebration. Life was sailing all right. You had those usual complaints and ideas on how to improve the system in the country but even without them, things seemed to be working just fine. At least they weren&amp;#8217;t getting on your way. The crippling strikes (bandhas) and road-blockades wouldn&amp;#8217;t deter you from doing your work or enjoying your leisure (Read: &lt;a href=&quot;http://nepalitimes.com.np/blogs/thebrief/2009/12/28/nation-of-strikes/&quot;&gt;Nation of Strikes&lt;/a&gt;). Who cares about Nepalese politics anyway?&lt;/p&gt;
&lt;p&gt;That was until I &lt;a href=&quot;http://nagariknews.com/economy/hydro-power/8691-2009-12-28-13-23-29.html&quot;&gt;read the news today&lt;/a&gt; that next week onwards, we&amp;#8217;ll have eight hours of power cut every day. Another 15 days, and the duration will be ten hours. Soon, it will be sixteen-hour a day.&lt;/p&gt;
&lt;p&gt;Well friends, welcome back to reality ! I think power-cuts should be a part of our national priority and policy-agenda. Nothing, not even strikes, has as strong effect of grounding the &lt;em&gt;unruly&lt;/em&gt; youths of the nation, as the power-cut schedule has. To those guilty of thinking of themselves as competitive and capable-of-anything generation of energetic youth, nothing is as humbling as this schedule. Back to where your belong, fellas!&lt;/p&gt;
&lt;div id=&quot;attachment_408&quot; class=&quot;wp-caption alignright&quot;&gt;&lt;a href=&quot;http://bibekpaudel.files.wordpress.com/2009/12/lantern.jpg&quot;&gt;&lt;img class=&quot;size-full wp-image-408&quot; title=&quot;lantern&quot; src=&quot;http://bibekpaudel.files.wordpress.com/2009/12/lantern.jpg?w=200&amp;#038;h=425&quot; alt=&quot;&quot; width=&quot;200&quot; height=&quot;425&quot; /&gt;&lt;/a&gt;&lt;p class=&quot;wp-caption-text&quot;&gt;Source: The BG Experience&lt;/p&gt;&lt;/div&gt;
&lt;p&gt;It was about a year ago that I wrote a couple of posts on the same topic. I just went through them, and found some points worth repeating:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;I challenge you to contemplate &amp;#8211; &lt;em&gt;really stop and think for a moment &lt;/em&gt;- what your life would be like if you had to live 10 hours of each and every day without electricity.&lt;br /&gt;
- Jules West on &lt;a href=&quot;http://blog.nayanepalnews.com/2008/12/29/load-shedding--dark--cold.aspx&quot;&gt;Kura Kaani&lt;/a&gt; and &lt;a href=&quot;http://juleswest.blogspot.com/2008/12/load-shedding-dark-cold.html&quot;&gt;Jai Nepal&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;It’s gonna be 82 hours/week from tomorrow. 12 hours for 6 days and 10 for the one remaining day. More reason to celebrate the glorious darkness in the Federal Democratic Republic of Nepal.&lt;br /&gt;
- &lt;a href=&quot;http://mothshutup.wordpress.com/&quot;&gt;ShutUp&lt;/a&gt;, commenting on &lt;a href=&quot;http://bibekpaudel.wordpress.com/2008/12/19/more-darkness/&quot;&gt;More Darkness&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Oh BTW, I heard some stats that said the city with the most load-shedding (least electric power) – major city that is – in the world is Kabul, Afghanistan. Kathmandu is #2.&lt;br /&gt;
- &lt;a href=&quot;http://www.sirensongs.blogspot.com/&quot;&gt;sirensongs&lt;/a&gt;, commenting on &lt;a href=&quot;http://bibekpaudel.wordpress.com/2009/02/25/load-shedding-conspiracy/&quot;&gt;The Load Shedding Conspiracy&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Life, so blissed to be so utterly ignorant and so happily incapable of any voice and resistance, of anything at all beyond frustration, dejection and surrender. Of course, in Nepal, all this and more go on as if this is the way things should have always been. (from &lt;em&gt;The Load Shedding Conspiracy&lt;/em&gt;)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;With an predicted &lt;a href=&quot;http://nepalitimes.com.np/blogs/thebrief/2009/12/18/economy-worries/&quot;&gt;economic crisis&lt;/a&gt; (triggered by a liquidity crunch) in six months, and a foreseen political crisis in four months, load-shedding was just the missing ingredient for a wonderful new year gift for the population.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://ankur.com.np&quot;&gt;Ankur&lt;/a&gt; on Load Shedding:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;अँध्यारोमा जन्मेको थ्यौ, अँध्यारोमै मर&lt;/p&gt;
&lt;p&gt;घुस खाको पैसा बाँकि भए, जेनेरेटरमा भर ।&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Meanwhile, I recently read about &lt;a href=&quot;http://himalmag.com/blogs/blog/2009/12/21/asses-declare-independence-i/&quot;&gt;people like us&lt;/a&gt; declaring independence from Nepal and forming a separate country.&lt;/p&gt;
&lt;p&gt;And, oh yes &amp;#8211; &lt;strong&gt;Happy New Year 2010&lt;/strong&gt;.&lt;/p&gt;
  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/bibekpaudel.wordpress.com/405/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/bibekpaudel.wordpress.com/405/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/bibekpaudel.wordpress.com/405/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/bibekpaudel.wordpress.com/405/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/bibekpaudel.wordpress.com/405/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/bibekpaudel.wordpress.com/405/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/bibekpaudel.wordpress.com/405/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/bibekpaudel.wordpress.com/405/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/bibekpaudel.wordpress.com/405/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/bibekpaudel.wordpress.com/405/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=bibekpaudel.wordpress.com&amp;amp;blog=4624062&amp;amp;post=405&amp;amp;subd=bibekpaudel&amp;amp;ref=&amp;amp;feed=1&quot; /&gt;</description>
	<pubDate>Mon, 28 Dec 2009 22:06:28 +0000</pubDate>
</item>
<item>
	<title>Himanshu Chhetri (r11t): My Termtter plugin to post output as a gist.</title>
	<guid>http://nepcoder.com/2009/12/20/gist_termtter_plugin</guid>
	<link>http://feedproxy.google.com/~r/Nepcoder/~3/cIG6GHkMI-s/gist_termtter_plugin.html</link>
	<description>&lt;h1&gt;My Termtter plugin to post output as a gist.&lt;/h1&gt;
&lt;p class=&quot;meta&quot;&gt;20 December 2009&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://github.com/jugyo/termtter&quot;&gt;Termtter&lt;/a&gt; is the best Twitter client I have ever used for the command line.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://termtter.org/files/termtter_1.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;It was created by &lt;a href=&quot;http://twitter.com/jugyo&quot;&gt;@jugyo&lt;/a&gt; and has many useful commands that let you perform common Twitter operations. The best introduction I found for this unique twitter client is the Rubyconf 2009 presentation by &lt;a href=&quot;http://twitter.com/ujm&quot;&gt;@ujm&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;div&gt;View more &lt;a href=&quot;http://www.slideshare.net/&quot;&gt;presentations&lt;/a&gt; from &lt;a href=&quot;http://www.slideshare.net/ujihisa&quot;&gt;ujihisa&lt;/a&gt;.&lt;/div&gt;&lt;/p&gt;
&lt;p&gt;However, the other really neat aspect about Termtter is the support for plugins! Since Termtter it written in Ruby, the plugins are simply code. The official Termtter website has a &lt;a href=&quot;http://termtter.org/plugins&quot;&gt;page&lt;/a&gt; describing the three different types of plugins which are: commands, hooks and filters.&lt;/p&gt;
&lt;p&gt;I decided to create a simple plugin that adds a &amp;#8220;gist&amp;#8221; command in Termtter to run a command and then post the output to &lt;a href=&quot;http://gist.github.com&quot;&gt;Gist&lt;/a&gt; (Github.com&amp;#8217;s pastebin) The plugin uses &lt;a href=&quot;http://twitter.com/defunkt&quot;&gt;@defunkt&amp;#8217;s&lt;/a&gt; &lt;a href=&quot;http://github.com/defunkt/gist&quot;&gt;http://github.com/defunkt/gist&lt;/a&gt; and thus needs to be installed before the plugin works.&lt;/p&gt;
&lt;p&gt;My first attempt at writing a simple plugin for Termtter was a very pleasant experience and only a quick hack:&lt;br /&gt;
&lt;/p&gt;
&lt;p&gt;The plugin in action:&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://feeds.feedburner.com/../../../images/gist-rb-2.jpg&quot; alt=&quot;&quot; /&gt;&lt;br /&gt;
&lt;img src=&quot;http://feeds.feedburner.com/../../../images/gist-rb-1.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/Nepcoder/~4/cIG6GHkMI-s&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Sun, 20 Dec 2009 06:00:00 +0000</pubDate>
</item>
<item>
	<title>Prasanna Gautam (SR71-Blackbird): Eclipse has block selection? Awesome! err.. finally</title>
	<guid>http://www.nextdoorhacker.com/2009/12/eclipse-has-block-selection-awesome-err-finally/</guid>
	<link>http://www.nextdoorhacker.com/2009/12/eclipse-has-block-selection-awesome-err-finally/</link>
	<description>Just noticed this &quot;block selection&quot; feature in eclipse. What this lets you do is select a block of text instead of just lines. Suppose you wanted to copy
1 class Hello:
2               def __init__(self):
3                             ...</description>
	<pubDate>Tue, 15 Dec 2009 10:00:09 +0000</pubDate>
</item>
<item>
	<title>Prasanna Gautam (SR71-Blackbird): Broken by Seether</title>
	<guid>http://www.nextdoorhacker.com/2009/12/broken-by-seether/</guid>
	<link>http://www.nextdoorhacker.com/2009/12/broken-by-seether/</link>
	<description>This is currently my (okay, one of my) favorite song(s).

httpv://www.youtube.com/watch?v=OQb6T-Pm3N8

I think the chorus is great :)

I wanted you to know I love the way you laugh
I wanna hold you high and steal your pain away
I keep your photograph and I know it serves me well
I wanna hold you high and ...</description>
	<pubDate>Thu, 10 Dec 2009 09:00:17 +0000</pubDate>
</item>
<item>
	<title>Prasanna Gautam (SR71-Blackbird): How to use Ant to build Android applications</title>
	<guid>http://www.nextdoorhacker.com/2009/12/how-to-use-ant-to-build-android-applications/</guid>
	<link>http://www.nextdoorhacker.com/2009/12/how-to-use-ant-to-build-android-applications/</link>
	<description>I was trying to add (re-add) the feature to let users generate their very own POSIT versions. It used to be there when I was working on it initially and I'd completed it reasonably last summer. The idea was chucked away as we moved on. But, now we wanted it ...</description>
	<pubDate>Wed, 09 Dec 2009 07:00:07 +0000</pubDate>
</item>
<item>
	<title>888: Google Chrome Browser for Linux in Beta</title>
	<guid>tag:blogger.com,1999:blog-1241233588755403188.post-5797694903616140564</guid>
	<link>http://feedproxy.google.com/~r/feedburner/PsXj/~3/97U2ce7sf50/google-chrome-browswer-for-linux-in.html</link>
	<description>&lt;p&gt;&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/0h3aLzUTdYud5VumdPq4379uL78/0/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/0h3aLzUTdYud5VumdPq4379uL78/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/0h3aLzUTdYud5VumdPq4379uL78/1/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/0h3aLzUTdYud5VumdPq4379uL78/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;/p&gt;Google has finally released the beta version of their chrome browser for Linux and Mac. Previously it was only available from early access channel. Chrome though in beta works very very well and I'm highly satisfied with what I have now. &lt;br /&gt;
&lt;a href=&quot;http://www.google.com/chrome&quot;&gt;http://www.google.com/chrome&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
If you have installed any pre-beta version of Google Chrome, you need to uninstall it before you can install this beta version. To do so, in terminal type:&lt;br /&gt;
&lt;blockquote&gt;sudo aptitude remove google-chrome-unstable&lt;br /&gt;
&lt;/blockquote&gt;&lt;br /&gt;
After that simply double click the downloaded .deb file to install.&lt;br /&gt;
Also Mozilla Thunderbird has released Thunderbird 3 with tab support.&lt;br /&gt;
&lt;a href=&quot;http://www.mozillamessaging.com/en-US/thunderbird/&quot;&gt;http://www.mozillamessaging.com/en-US/thunderbird/&lt;/a&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; src=&quot;https://blogger.googleusercontent.com/tracker/1241233588755403188-5797694903616140564?l=techspalace.blogspot.com&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=01oc9-s60iQ:5wHPN-MA-zg:V_sGLiPBpWU&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=01oc9-s60iQ:5wHPN-MA-zg:V_sGLiPBpWU&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=01oc9-s60iQ:5wHPN-MA-zg:7Q72WNTAKBA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=7Q72WNTAKBA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=01oc9-s60iQ:5wHPN-MA-zg:gIN9vFwOqvQ&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=01oc9-s60iQ:5wHPN-MA-zg:gIN9vFwOqvQ&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=01oc9-s60iQ:5wHPN-MA-zg:dnMXMwOfBR0&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=dnMXMwOfBR0&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=01oc9-s60iQ:5wHPN-MA-zg:qj6IDK7rITs&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=qj6IDK7rITs&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=01oc9-s60iQ:5wHPN-MA-zg:yIl2AUoC8zA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=yIl2AUoC8zA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=01oc9-s60iQ:5wHPN-MA-zg:63t7Ie-LG7Y&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=63t7Ie-LG7Y&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/techspalace/~4/01oc9-s60iQ&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/feedburner/PsXj/~4/97U2ce7sf50&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Wed, 09 Dec 2009 05:01:00 +0000</pubDate>
	<author>noreply@blogger.com (Techs Palace)</author>
</item>
<item>
	<title>888: USB Support In VirtualBox</title>
	<guid>tag:blogger.com,1999:blog-1241233588755403188.post-1781631090071637467</guid>
	<link>http://feedproxy.google.com/~r/feedburner/PsXj/~3/TZi8Xe-YR5M/usb-support-in-virtualbox.html</link>
	<description>&lt;p&gt;&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/2kI-iUQ4KWC6hiuE8ntEfFp6RNI/0/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/2kI-iUQ4KWC6hiuE8ntEfFp6RNI/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/2kI-iUQ4KWC6hiuE8ntEfFp6RNI/1/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/2kI-iUQ4KWC6hiuE8ntEfFp6RNI/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;/p&gt;Too often I encounter people having hard time enabling USB support in any version of virtualbox. One main thing that many people don't know is there are two editions of virtualbox&lt;br /&gt;
&lt;ol&gt;&lt;li&gt;virtualbox&lt;/li&gt;
&lt;li&gt;virtualbox-ose&lt;/li&gt;
&lt;/ol&gt;virtualbox-ose or virtualbox open source edition is what all the linux distro installs if installed from package manager. Unlinke virtualbox, virtualbox-ose lacks many feature one of which is usb support.&lt;br /&gt;
Remote Display Protocol (RDP) Server and USB over RDP are other two missing features.&lt;br /&gt;
Click &lt;a href=&quot;http://www.virtualbox.org/wiki/Editions&quot;&gt;here&lt;/a&gt; for more up to date and detailed list:&lt;br /&gt;
&lt;br /&gt;
You must be clear by now that you need to remove virtualbox-ose and install virtualbox to enable usb support. But remember it is not open source edition.&lt;br /&gt;
&lt;br /&gt;
Now, to enable USB support:&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;Remove virtualbox ose if installed&lt;/li&gt;

&lt;ul&gt;&lt;li&gt;sudo aptitude remove virtualbox-ose&lt;/li&gt;
&lt;/ul&gt;
&lt;li&gt;Install virtualbox&lt;/li&gt;

&lt;ul&gt;&lt;li&gt;You can install by adding virtualbox &lt;a href=&quot;http://www.virtualbox.org/wiki/Linux_Downloads&quot;&gt;PPA&lt;/a&gt;. Advantage is you'll always get the updates.&lt;/li&gt;
&lt;li&gt;Or install it by downloading from &lt;a href=&quot;http://www.virtualbox.org/wiki/Downloads&quot;&gt;here&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;li&gt;You might require to run sudo /etc/init.d/vboxdrv setup if guets OS fails to run.&lt;/li&gt;
&lt;/ul&gt;You don't need to reinsatll or reconfigure the guest os.&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; src=&quot;https://blogger.googleusercontent.com/tracker/1241233588755403188-1781631090071637467?l=techspalace.blogspot.com&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=UAkVHS0JNHQ:Koa5l5ZiaTE:V_sGLiPBpWU&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=UAkVHS0JNHQ:Koa5l5ZiaTE:V_sGLiPBpWU&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=UAkVHS0JNHQ:Koa5l5ZiaTE:7Q72WNTAKBA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=7Q72WNTAKBA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=UAkVHS0JNHQ:Koa5l5ZiaTE:gIN9vFwOqvQ&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=UAkVHS0JNHQ:Koa5l5ZiaTE:gIN9vFwOqvQ&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=UAkVHS0JNHQ:Koa5l5ZiaTE:dnMXMwOfBR0&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=dnMXMwOfBR0&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=UAkVHS0JNHQ:Koa5l5ZiaTE:qj6IDK7rITs&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=qj6IDK7rITs&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=UAkVHS0JNHQ:Koa5l5ZiaTE:yIl2AUoC8zA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=yIl2AUoC8zA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=UAkVHS0JNHQ:Koa5l5ZiaTE:63t7Ie-LG7Y&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=63t7Ie-LG7Y&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/techspalace/~4/UAkVHS0JNHQ&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/feedburner/PsXj/~4/TZi8Xe-YR5M&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Wed, 09 Dec 2009 02:20:00 +0000</pubDate>
	<author>noreply@blogger.com (Techs Palace)</author>
</item>
<item>
	<title>Prasanna Gautam (SR71-Blackbird): Are e-books soulless?</title>
	<guid>http://www.nextdoorhacker.com/2009/11/are-e-books-soulless/</guid>
	<link>http://www.nextdoorhacker.com/2009/11/are-e-books-soulless/</link>
	<description>Before we get into a philosophical discussion, here's what I mean.

httpv://www.youtube.com/watch?v=F_jyXJTlrH0

Produced by the New Zealand Book Council, this ad kinda makes me feel good about cancelling that Kindle order I made a while back :)

Here's the quote from gizmodo article
This stop-motion ad by the New Zealand Book Council makes me ...</description>
	<pubDate>Mon, 30 Nov 2009 10:00:09 +0000</pubDate>
</item>
<item>
	<title>Prasanna Gautam (SR71-Blackbird): Distances between planets</title>
	<guid>http://www.nextdoorhacker.com/2009/11/distances-between-planets/</guid>
	<link>http://www.nextdoorhacker.com/2009/11/distances-between-planets/</link>
	<description>Bill Nye demonstates the distances between planets. This is nice for two reasons:

1. Shows the actual astounding scale of the solar system

2. Shows what modeling really is.

httpv://www.youtube.com/watch?v=97Ob0xR0Ut8

I feel like this should be used in of the Society of Physics Student meetings.</description>
	<pubDate>Mon, 30 Nov 2009 10:00:09 +0000</pubDate>
</item>
<item>
	<title>888: [Solved] No|Choppy Sound In SDL Games (Urban Terror)</title>
	<guid>tag:blogger.com,1999:blog-1241233588755403188.post-6754016093816927856</guid>
	<link>http://feedproxy.google.com/~r/feedburner/PsXj/~3/Fo98OzAFwPY/solved-nochoppy-sound-in-sdl-games.html</link>
	<description>&lt;p&gt;&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/9ezvAMUQ-HEa-lD0mDX6MfdM38g/0/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/9ezvAMUQ-HEa-lD0mDX6MfdM38g/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/9ezvAMUQ-HEa-lD0mDX6MfdM38g/1/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/9ezvAMUQ-HEa-lD0mDX6MfdM38g/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;span&gt;&lt;span&gt;I sometimes play Urban Terror which is a SDL game.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;blockquote&gt;&lt;span&gt;&lt;b&gt;Simple DirectMedia Layer&amp;nbsp;(SDL)&lt;/b&gt;, a cross-platform software library abstracts platforms' graphics, sound, and input APIs, allowing a developer to write a computer game or other multimedia application once and run it on many operating systems.&lt;/span&gt;&lt;br /&gt;
&lt;/blockquote&gt;While playing the game yesterday, the sound would start choppy and stop. Also the game wouldn't quit, instead hang at '&lt;b&gt;Closing SDL audio device...&lt;/b&gt;'&lt;br /&gt;
&lt;br /&gt;
Turns out for some reason I had installed &lt;b&gt;libsdl1.2debian-alsa&lt;/b&gt;&amp;nbsp;which was causing the problem. To uninstall it I installed&amp;nbsp;&lt;b&gt;libsdl1.2debian-oss&lt;/b&gt;&lt;br /&gt;
&lt;blockquote&gt;sudo aptitude install &amp;nbsp;libsdl1.2debian-oss&lt;/blockquote&gt;&lt;br /&gt;
After this the game played all fine. In case you don't know, urban terror is free and multiplayer FPS game and works in Linux, Mac and Windows. Click &lt;a href=&quot;http://www.urbanterror.net/&quot;&gt;here&lt;/a&gt; to know more. If demo doesn't work check &lt;a href=&quot;http://techspalace.blogspot.com/2009/10/solved-couldnt-open-demostutorialdm68.html&quot;&gt;this&lt;/a&gt; out.&lt;br /&gt;
&lt;div class=&quot;separator&quot;&gt;&lt;a href=&quot;http://3.bp.blogspot.com/_a6LMj16lz7g/SsopFq7f5KI/AAAAAAAAASA/r9mhmmLSK40/s1600/urban_terror.jpg&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;http://3.bp.blogspot.com/_a6LMj16lz7g/SsopFq7f5KI/AAAAAAAAASA/r9mhmmLSK40/s320/urban_terror.jpg&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; src=&quot;https://blogger.googleusercontent.com/tracker/1241233588755403188-6754016093816927856?l=techspalace.blogspot.com&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=rN3R14liSZE:z7IJDIXcHQ8:V_sGLiPBpWU&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=rN3R14liSZE:z7IJDIXcHQ8:V_sGLiPBpWU&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=rN3R14liSZE:z7IJDIXcHQ8:7Q72WNTAKBA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=7Q72WNTAKBA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=rN3R14liSZE:z7IJDIXcHQ8:gIN9vFwOqvQ&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=rN3R14liSZE:z7IJDIXcHQ8:gIN9vFwOqvQ&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=rN3R14liSZE:z7IJDIXcHQ8:dnMXMwOfBR0&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=dnMXMwOfBR0&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=rN3R14liSZE:z7IJDIXcHQ8:qj6IDK7rITs&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=qj6IDK7rITs&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=rN3R14liSZE:z7IJDIXcHQ8:yIl2AUoC8zA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=yIl2AUoC8zA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=rN3R14liSZE:z7IJDIXcHQ8:63t7Ie-LG7Y&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=63t7Ie-LG7Y&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/techspalace/~4/rN3R14liSZE&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/feedburner/PsXj/~4/Fo98OzAFwPY&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Sat, 28 Nov 2009 06:20:00 +0000</pubDate>
	<author>noreply@blogger.com (Techs Palace)</author>
</item>
<item>
	<title>Bibek Shrestha: Living in Kathmandu</title>
	<guid>http://bibekshrestha.com.np/17 at http://bibekshrestha.com.np</guid>
	<link>http://bibekshrestha.com.np/blogs/post/2009/11/26/living-kathmandu</link>
	<description>&lt;p&gt;Living in Kathmandu is really weird, one day you could be full of cash and another day you have a hole in your pocket. You really need a money management strategy to have a peace of mind. On a typical day, I see people spend around 250 Rs and that too on daily items like food, transportation, telephone etc. A decent mid day meal costs anywhere from 100 Rs to above. Add a cup of coffee in a good restaurant and that jumps to 150. And an occasional friday night out for some quality time at bars would mean I have the shelve out 500 to 1000 rs.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://bibekshrestha.com.np/blogs/post/2009/11/26/living-kathmandu&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
	<pubDate>Thu, 26 Nov 2009 19:36:32 +0000</pubDate>
</item>
<item>
	<title>888: Gobby - Google Wave Like Collaborative Editor</title>
	<guid>tag:blogger.com,1999:blog-1241233588755403188.post-6386928630512323861</guid>
	<link>http://feedproxy.google.com/~r/feedburner/PsXj/~3/2bPbeUA-7pA/gobby-google-wave-like-collaborative.html</link>
	<description>&lt;p&gt;&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/xp7D1oSBGi8yfpqOoNTnjb9T69U/0/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/xp7D1oSBGi8yfpqOoNTnjb9T69U/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/xp7D1oSBGi8yfpqOoNTnjb9T69U/1/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/xp7D1oSBGi8yfpqOoNTnjb9T69U/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;/p&gt;Gobby is a software for collaboration. It is similar to Google Wave but with its own taste. It supports multiple users and multiple documents along with a chat.&lt;br /&gt;
&lt;br /&gt;
What's best, it runs in Linux, Windows, Mac and Unix.&lt;br /&gt;
&lt;br /&gt;
It transmits changes character by character and highlights according to user's color.&lt;br /&gt;
&lt;br /&gt;
In terms of security, the transmission is encrypted and the session can be password protected.&lt;br /&gt;
&lt;br /&gt;
Chat support, Unicode support and syntax highlighting are its other features.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot;&gt;&lt;a href=&quot;http://2.bp.blogspot.com/_a6LMj16lz7g/Sw549kQSVdI/AAAAAAAAATU/8-zdLshN-yU/s1600/gobby.png&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;http://2.bp.blogspot.com/_a6LMj16lz7g/Sw549kQSVdI/AAAAAAAAATU/8-zdLshN-yU/s320/gobby.png&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;separator&quot;&gt;&lt;a href=&quot;http://4.bp.blogspot.com/_a6LMj16lz7g/Sw549vDoJFI/AAAAAAAAATY/F5FCImv8woc/s1600/gobby_create_session.png&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;http://4.bp.blogspot.com/_a6LMj16lz7g/Sw549vDoJFI/AAAAAAAAATY/F5FCImv8woc/s200/gobby_create_session.png&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
Enough said, better check it out yourself &lt;a href=&quot;http://gobby.0x539.de/trac/&quot;&gt;http://gobby.0x539.de/trac/&lt;/a&gt;&lt;br /&gt;
&amp;nbsp;Click &lt;a href=&quot;apt://gobby&quot;&gt;here&lt;/a&gt; to install in Ubuntu.&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; src=&quot;https://blogger.googleusercontent.com/tracker/1241233588755403188-6386928630512323861?l=techspalace.blogspot.com&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=nP3h1xjd9XE:Xd9ANjwiV-I:V_sGLiPBpWU&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=nP3h1xjd9XE:Xd9ANjwiV-I:V_sGLiPBpWU&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=nP3h1xjd9XE:Xd9ANjwiV-I:7Q72WNTAKBA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=7Q72WNTAKBA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=nP3h1xjd9XE:Xd9ANjwiV-I:gIN9vFwOqvQ&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=nP3h1xjd9XE:Xd9ANjwiV-I:gIN9vFwOqvQ&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=nP3h1xjd9XE:Xd9ANjwiV-I:dnMXMwOfBR0&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=dnMXMwOfBR0&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=nP3h1xjd9XE:Xd9ANjwiV-I:qj6IDK7rITs&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=qj6IDK7rITs&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=nP3h1xjd9XE:Xd9ANjwiV-I:yIl2AUoC8zA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=yIl2AUoC8zA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=nP3h1xjd9XE:Xd9ANjwiV-I:63t7Ie-LG7Y&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=63t7Ie-LG7Y&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/techspalace/~4/nP3h1xjd9XE&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/feedburner/PsXj/~4/2bPbeUA-7pA&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Thu, 26 Nov 2009 12:55:00 +0000</pubDate>
	<author>noreply@blogger.com (Techs Palace)</author>
</item>
<item>
	<title>Bibek Paudel: Solved: Plone installation Strange Error</title>
	<guid>http://bibekpaudel.wordpress.com/2009/11/26/solved-plone-installation-strange-error/</guid>
	<link>http://bibekpaudel.wordpress.com/2009/11/26/solved-plone-installation-strange-error/</link>
	<description>&lt;br /&gt;&lt;p&gt;&lt;strong&gt;Problem:&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;After installing &lt;a href=&quot;http://plone.org&quot;&gt;Plone&lt;/a&gt; 3.3.2 as a standalone server from the Unified Installer in Ubuntu 9.04, adding a new plone-site (from the ZMI) produced strange error. I have been facing this for quite sometime now.&lt;/p&gt;
&lt;p&gt;The &lt;a href=&quot;http://pastie.org/714862&quot;&gt;Error Message&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&lt;code&gt; Site Error
&lt;p&gt;&lt;/p&gt;An error was encountered while publishing this resource.
&lt;p&gt;&lt;/p&gt;Error Type: KeyError&lt;br /&gt;Error Value: '' &lt;/code&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Here&amp;#8217;s the &lt;a href=&quot;http://pastie.org/714580&quot;&gt;error log&lt;/a&gt; taken from the file &lt;em&gt;instance.log&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Solution:&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;In the &lt;em&gt;instance&lt;/em&gt; section of the &lt;em&gt;buildout.cfg&lt;/em&gt; file, add the following (replacing your own timezone if necessary):&lt;/p&gt;
&lt;p&gt;&lt;code&gt;zope-conf-additional =&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;environment&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; TZ Asia/Katmandu&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/environment&amp;gt;&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;Run the buildout again, start the Zope Server and the problem will be gone.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;What happened:&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;For some strange reason, Python couldn&amp;#8217;t pick up the timezone of my machine. We fixed that by explicitely providing one in the buildout.cfg file.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://plone.org/foundation/members/matthewwilkes/&quot;&gt;Matthew Wilkes&lt;/a&gt; told me on IRC, &amp;#8220;when Zope creates a date object it uses the timezone of the local machine, if not otherwise specified. Every object gets a creation date, which is then stored in the portal catalog so it can be searched for. The catalog tries to normalise the timezones so searches don&amp;#8217;t have to take account of the fact that 1pm EST is the same time as 6pm GMT. Zope couldn&amp;#8217;t find my machine&amp;#8217;s timezone for whatever reason, so used the timezone &amp;#8221;, which caused a key-error when the date-time machinery tried to look up what the offset from GMT is.&amp;#8221; He said that they will have to work on making the installation process adress this strange problem.&lt;/p&gt;
&lt;p&gt;Matthew has added a &lt;strong&gt;ticket for this bug&lt;/strong&gt;: &lt;a href=&quot;http://dev.plone.org/plone/ticket/9857&quot;&gt;#9857&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Thanks, also to cbess (I guess he is Christopher Bess) of the #plone IRC channel.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;More Help:&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;How to install Plone with the &lt;a href=&quot;http://plone.org/documentation/tutorial/installing-plone-3-with-the-unified-installer/tutorial-all-pages&quot;&gt;Unified Installer&lt;/a&gt; and &lt;a href=&quot;http://plone.org/documentation/tutorial/buildout/tutorial-all-pages&quot;&gt;managing projects with buildout&lt;/a&gt;. The later link also explains how to install Plone using &lt;a href=&quot;http://plone.org/documentation/how-to/use-paster&quot;&gt;paster&lt;/a&gt;, which I&amp;#8217;m told is the &amp;#8216;advanced&amp;#8217; way to do the thing &lt;img src=&quot;http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;
&lt;p&gt;I&amp;#8217;d prefer installing from my Package Manager. But there also seems to be some problem in Jaunty&amp;#8217;s plone3-site package as attempting to install plone3-site from synaptic gave this error:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&lt;span class=&quot;variable variable_other variable_other_constant variable_other_constant_ruby&quot;&gt;Setting up plone3-site (3.1.7-1) &amp;#8230;&lt;br /&gt;dpkg: error processing plone3-site (&amp;#8211;configure): subprocess post-installation script returned error exit status 10&lt;br /&gt;Errors were encountered while processing: plone3-site&lt;strong&gt;&lt;br /&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;  &lt;a href=&quot;http://posterous.com&quot;&gt;Posted via web&lt;/a&gt;   from &lt;a href=&quot;http://bibek.posterous.com/solved-plone-installation-strange-error&quot;&gt;Scribbles&lt;/a&gt;  &lt;/p&gt;
  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/bibekpaudel.wordpress.com/404/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/bibekpaudel.wordpress.com/404/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/bibekpaudel.wordpress.com/404/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/bibekpaudel.wordpress.com/404/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/bibekpaudel.wordpress.com/404/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/bibekpaudel.wordpress.com/404/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/bibekpaudel.wordpress.com/404/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/bibekpaudel.wordpress.com/404/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/bibekpaudel.wordpress.com/404/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/bibekpaudel.wordpress.com/404/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=bibekpaudel.wordpress.com&amp;amp;blog=4624062&amp;amp;post=404&amp;amp;subd=bibekpaudel&amp;amp;ref=&amp;amp;feed=1&quot; /&gt;</description>
	<pubDate>Thu, 26 Nov 2009 07:40:59 +0000</pubDate>
</item>
<item>
	<title>888: Virtual Barber Shop</title>
	<guid>tag:blogger.com,1999:blog-1241233588755403188.post-1843550433046849888</guid>
	<link>http://feedproxy.google.com/~r/feedburner/PsXj/~3/Xn8iTFM2320/virtual-barber-shop.html</link>
	<description>&lt;p&gt;&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/raS45EBy3qXkomfytKShRsjf5Wc/0/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/raS45EBy3qXkomfytKShRsjf5Wc/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/raS45EBy3qXkomfytKShRsjf5Wc/1/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/raS45EBy3qXkomfytKShRsjf5Wc/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;/p&gt;Guys this is really a cool video(audio actually). Just close your eyes and use headphone as said in the video. There is no prank or scary things. So, don't be afraid to make your headphone little louder than usual. Sit back, relax and listen. This will blow your mind!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
P.S. Check related videos too.&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; src=&quot;https://blogger.googleusercontent.com/tracker/1241233588755403188-1843550433046849888?l=techspalace.blogspot.com&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=qkDaTDMgxjE:XTUhASDXTVA:V_sGLiPBpWU&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=qkDaTDMgxjE:XTUhASDXTVA:V_sGLiPBpWU&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=qkDaTDMgxjE:XTUhASDXTVA:7Q72WNTAKBA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=7Q72WNTAKBA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=qkDaTDMgxjE:XTUhASDXTVA:gIN9vFwOqvQ&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=qkDaTDMgxjE:XTUhASDXTVA:gIN9vFwOqvQ&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=qkDaTDMgxjE:XTUhASDXTVA:dnMXMwOfBR0&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=dnMXMwOfBR0&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=qkDaTDMgxjE:XTUhASDXTVA:qj6IDK7rITs&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=qj6IDK7rITs&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=qkDaTDMgxjE:XTUhASDXTVA:yIl2AUoC8zA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=yIl2AUoC8zA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=qkDaTDMgxjE:XTUhASDXTVA:63t7Ie-LG7Y&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=63t7Ie-LG7Y&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/techspalace/~4/qkDaTDMgxjE&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/feedburner/PsXj/~4/Xn8iTFM2320&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Mon, 23 Nov 2009 13:58:00 +0000</pubDate>
	<author>noreply@blogger.com (Techs Palace)</author>
</item>
<item>
	<title>Himanshu Chhetri (r11t): Notes for Ubuntu 9.10 on Dell Vostro 1500</title>
	<guid>http://nepcoder.com/2009/11/15/ubuntu_910_notes</guid>
	<link>http://feedproxy.google.com/~r/Nepcoder/~3/RZlb_LBHU78/ubuntu_910_notes.html</link>
	<description>&lt;h1&gt;Notes for Ubuntu 9.10 on Dell Vostro 1500&lt;/h1&gt;
&lt;p class=&quot;meta&quot;&gt;15 November 2009&lt;/p&gt;
&lt;p&gt;The following is my steps for setting up the desktop and development environment on my Dell Vostro 1500 laptop running Ubuntu 9.10. However, most of it also applies to other versions of Ubuntu and variations of hardware.&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;Install and set zsh as default shell&lt;br /&gt;
  $ sudo apt-get install zsh; chsh -s /bin/zsh&lt;/li&gt;
	&lt;li&gt;Go over : &lt;a href=&quot;http://blog.thesilentnumber.me/2009/09/top-things-to-do-after-installing.html&quot;&gt;http://blog.thesilentnumber.me/2009/09/top-things-to-do-after-installing.html&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;Install vim and gvim&lt;br /&gt;
  $ sudo apt-get install vim-gnome&lt;/li&gt;
	&lt;li&gt;Install git&lt;br /&gt;
  $ sudo apt-get install git-core&lt;/li&gt;
	&lt;li&gt;Install dot files and configs&lt;br /&gt;
  $ cd /tmp &amp;amp;&amp;amp; git clone git://github.com/himanshuc/mydotfiles.git &lt;br /&gt;
  $ cd mydotfiles &amp;amp;&amp;amp; chmod +x install &amp;amp;&amp;amp; ./install&lt;/li&gt;
	&lt;li&gt;Solve overheating problems for Dell laptops&lt;br /&gt;
  $ sudo apt-get install gkrellm-i8k gkrellm&lt;br /&gt;
  $ sudo modprobe i8k force=1&lt;br /&gt;
  $ sudo echo &amp;#8220;i8k force=1&amp;#8221; &amp;gt;&amp;gt; /etc/modules&lt;/li&gt;
	&lt;li&gt;Ruby Version Manager&lt;br /&gt;
  Use &lt;span class=&quot;caps&quot;&gt;RVM&lt;/span&gt; to install multiple versions of Ruby and the ability to switch easily.&lt;br /&gt;
  $ git clone git://github.com/wayneeseguin/rvm.git &amp;amp;&amp;amp; cd rvm &amp;amp;&amp;amp; ./install&lt;br /&gt;
  &lt;a href=&quot;http://cjohansen.no/en/ruby/ruby_version_manager_ubuntu_and_openssl&quot;&gt;Fixing&lt;/a&gt; &lt;span class=&quot;caps&quot;&gt;RVM&lt;/span&gt; issue&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;http://gist.github.com/233938&quot;&gt;Forcing&lt;/a&gt; Tweetdeck to open links in Chromium&lt;/li&gt;
&lt;/ul&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/Nepcoder/~4/RZlb_LBHU78&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Sun, 15 Nov 2009 06:00:00 +0000</pubDate>
</item>
<item>
	<title>888: Use Ssh Tunnel For Internet Browsing</title>
	<guid>tag:blogger.com,1999:blog-1241233588755403188.post-5041880663963385050</guid>
	<link>http://feedproxy.google.com/~r/feedburner/PsXj/~3/PJLM8oXrmfU/use-ssh-tunnel-for-internet-browsing.html</link>
	<description>&lt;p&gt;&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/NHWPQVpRez_9Bd31CsM_7uFQN8s/0/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/NHWPQVpRez_9Bd31CsM_7uFQN8s/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/NHWPQVpRez_9Bd31CsM_7uFQN8s/1/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/NHWPQVpRez_9Bd31CsM_7uFQN8s/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;/p&gt;You can use your ssh account to browse with following advantages:&lt;br /&gt;
&lt;ol&gt;&lt;li&gt;Anonymise your browsing &lt;span&gt;(not 100% because of DNS)&lt;br /&gt;
&lt;span&gt;Your internet traffic will go to&amp;nbsp; your ssh server where it will request page as if the server is browsing and finally deliver to you.&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;Use bandwidth of remote network&lt;span&gt;&lt;br /&gt;
Many ISPs cap only international bandwidth. Atleast in my place. So I can ssh to remote server which has high bandwidth than mine.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;/li&gt;
&lt;li&gt;and may be few others that I can't remember atm.&lt;br /&gt;
&lt;span&gt;Can you help me ?&lt;/span&gt; &lt;/li&gt;
&lt;/ol&gt;Now to do high five browsing from ssh tunnel: &lt;br /&gt;
&lt;ol&gt;&lt;li&gt;Open you terminal and type:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;ssh -C2TnN -D 8080 username@host&lt;br /&gt;
&lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;/li&gt;
&lt;li&gt;Now Open you browser and setup the proxy as&lt;/li&gt;

&lt;ul&gt;&lt;li&gt;Manual Proxy Configuration&lt;/li&gt;
&lt;li&gt;SOCKS host: 127.0.0.1&lt;/li&gt;
&lt;li&gt;Port: 8080&lt;/li&gt;
&lt;li&gt;SOCKS v5&lt;/li&gt;
&lt;li&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot;&gt;&lt;a href=&quot;http://2.bp.blogspot.com/_a6LMj16lz7g/Sv4nA32KILI/AAAAAAAAASo/TzaaccwlyD0/s1600-h/firefox_proxy_socks5_ssh_tunnel.png&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;http://2.bp.blogspot.com/_a6LMj16lz7g/Sv4nA32KILI/AAAAAAAAASo/TzaaccwlyD0/s320/firefox_proxy_socks5_ssh_tunnel.png&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;li&gt;Now all your internet traffic will go through your ssh tunnel.&lt;/li&gt;
&lt;li&gt;You can also use &lt;a href=&quot;http://multiproxyswitch.blogspot.com/&quot;&gt;Multi Proxy&lt;/a&gt; firefox addon to easily switch proxies.&lt;br /&gt;
&lt;/li&gt;
&lt;/ol&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; src=&quot;https://blogger.googleusercontent.com/tracker/1241233588755403188-5041880663963385050?l=techspalace.blogspot.com&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=vyR-tRHrUPc:yCbdtIGtc2Y:V_sGLiPBpWU&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=vyR-tRHrUPc:yCbdtIGtc2Y:V_sGLiPBpWU&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=vyR-tRHrUPc:yCbdtIGtc2Y:7Q72WNTAKBA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=7Q72WNTAKBA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=vyR-tRHrUPc:yCbdtIGtc2Y:gIN9vFwOqvQ&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=vyR-tRHrUPc:yCbdtIGtc2Y:gIN9vFwOqvQ&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=vyR-tRHrUPc:yCbdtIGtc2Y:dnMXMwOfBR0&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=dnMXMwOfBR0&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=vyR-tRHrUPc:yCbdtIGtc2Y:qj6IDK7rITs&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=qj6IDK7rITs&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=vyR-tRHrUPc:yCbdtIGtc2Y:yIl2AUoC8zA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=yIl2AUoC8zA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=vyR-tRHrUPc:yCbdtIGtc2Y:63t7Ie-LG7Y&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=63t7Ie-LG7Y&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/techspalace/~4/vyR-tRHrUPc&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/feedburner/PsXj/~4/PJLM8oXrmfU&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Sat, 14 Nov 2009 03:55:00 +0000</pubDate>
	<author>noreply@blogger.com (Techs Palace)</author>
</item>
<item>
	<title>888: Giving Out Google Wave Invitations</title>
	<guid>tag:blogger.com,1999:blog-1241233588755403188.post-1875081372825556415</guid>
	<link>http://feedproxy.google.com/~r/feedburner/PsXj/~3/kiCC4FwFwIg/giving-out-google-wave-invitations.html</link>
	<description>&lt;p&gt;&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/j-kTK4aWODACpLOFQXUGa20FUDc/0/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/j-kTK4aWODACpLOFQXUGa20FUDc/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/j-kTK4aWODACpLOFQXUGa20FUDc/1/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/j-kTK4aWODACpLOFQXUGa20FUDc/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;/p&gt;One of our generous reader is offering seven Google Wave invitations. So please put your email address as comment. You can use&lt;a href=&quot;http://scr.im/&quot;&gt; scr.im&lt;/a&gt; to protect your email address from spammers.&lt;br /&gt;
&lt;br /&gt;
To get the invitation you don't need to be my regular reader nor you need to be my RSS subscriber. Its not necessary that you have posted comment in this blog. It doesn't matter if you hate me or have kicked me. Invitations will be sent on first come first serve basis.&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; src=&quot;https://blogger.googleusercontent.com/tracker/1241233588755403188-1875081372825556415?l=techspalace.blogspot.com&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=L2ES9QOsTzk:LaPaNmbEDWA:V_sGLiPBpWU&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=L2ES9QOsTzk:LaPaNmbEDWA:V_sGLiPBpWU&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=L2ES9QOsTzk:LaPaNmbEDWA:7Q72WNTAKBA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=7Q72WNTAKBA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=L2ES9QOsTzk:LaPaNmbEDWA:gIN9vFwOqvQ&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=L2ES9QOsTzk:LaPaNmbEDWA:gIN9vFwOqvQ&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=L2ES9QOsTzk:LaPaNmbEDWA:dnMXMwOfBR0&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=dnMXMwOfBR0&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=L2ES9QOsTzk:LaPaNmbEDWA:qj6IDK7rITs&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=qj6IDK7rITs&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=L2ES9QOsTzk:LaPaNmbEDWA:yIl2AUoC8zA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=yIl2AUoC8zA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=L2ES9QOsTzk:LaPaNmbEDWA:63t7Ie-LG7Y&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=63t7Ie-LG7Y&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/techspalace/~4/L2ES9QOsTzk&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/feedburner/PsXj/~4/kiCC4FwFwIg&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Sat, 14 Nov 2009 03:03:00 +0000</pubDate>
	<author>noreply@blogger.com (Techs Palace)</author>
</item>
<item>
	<title>Himanshu Chhetri (r11t): Most frequently used tools and shortcuts</title>
	<guid>http://nepcoder.com/2009/11/13/common_tools_shortcuts</guid>
	<link>http://feedproxy.google.com/~r/Nepcoder/~3/QA9cZjNxTPE/common_tools_shortcuts.html</link>
	<description>&lt;h1&gt;Most frequently used tools and shortcuts&lt;/h1&gt;
&lt;p class=&quot;meta&quot;&gt;13 November 2009&lt;/p&gt;
&lt;p&gt;I originally posted this while replying to a discussion about my most frequently used tools and shortcuts in a Linux environment. This isn&amp;#8217;t a list of everything that I use but has stuff I find myself using on an almost daily basis these days.&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;Most frequently used zsh/bash Shortcut : Ctrl + r&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
	&lt;li&gt;Most frequently used Gnome Shortcut : Ctrl + Alt + Arrow Keys to switch workspaces&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
	&lt;li&gt;Quicksilver like launcher for Linux with numerous plugins : &lt;a href=&quot;http://do.davebsd.com/&quot;&gt;Gnome-Do&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
	&lt;li&gt;Version Control : git&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
	&lt;li&gt;Text Editor : vim&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
	&lt;li&gt;Managing multiple remote ssh sessions : screen&lt;/li&gt;
&lt;/ul&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/Nepcoder/~4/QA9cZjNxTPE&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Fri, 13 Nov 2009 06:00:00 +0000</pubDate>
</item>
<item>
	<title>Himanshu Chhetri (r11t): Displaying system tray icon in GTK using Ruby</title>
	<guid>http://nepcoder.com/2009/11/12/ruby_gtk_system_tray</guid>
	<link>http://feedproxy.google.com/~r/Nepcoder/~3/IF4aOEjd9Ac/ruby_gtk_system_tray.html</link>
	<description>&lt;h1&gt;Displaying system tray icon in &lt;span class=&quot;caps&quot;&gt;GTK&lt;/span&gt; using Ruby&lt;/h1&gt;
&lt;p class=&quot;meta&quot;&gt;12 November 2009&lt;/p&gt;
&lt;p&gt;I was experimenting with Ruby&amp;#8217;s &lt;a href=&quot;http://sourceforge.net/projects/ruby-gnome2/files/&quot;&gt;&lt;span class=&quot;caps&quot;&gt;GTK&lt;/span&gt; bindings&lt;/a&gt; and did not find any example code for displaying a system tray icon. This could be handy for building something like an email notifier for the Gnome desktop. Below is a simple example which displays a blinking robot icon indefinitely :&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://nepcoder.com/images/tray.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;img src=&quot;http://feeds.feedburner.com/~r/Nepcoder/~4/IF4aOEjd9Ac&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Thu, 12 Nov 2009 06:00:00 +0000</pubDate>
</item>
<item>
	<title>Himanshu Chhetri (r11t): This blog is now powered by Jekyll</title>
	<guid>http://nepcoder.com/2009/11/12/jekyll_blog</guid>
	<link>http://feedproxy.google.com/~r/Nepcoder/~3/GBFwplERaps/jekyll_blog.html</link>
	<description>&lt;h1&gt;This blog is now powered by Jekyll&lt;/h1&gt;
&lt;p class=&quot;meta&quot;&gt;12 November 2009&lt;/p&gt;
&lt;p&gt;There are many different tools, platforms and mindsets for blogging. I was inspired by Tom Werner&amp;#8217;s blog post titled &lt;a href=&quot;http://tom.preston-werner.com/2008/11/17/blogging-like-a-hacker.html&quot;&gt;Blogging Like a Hacker&lt;/a&gt; to use his Ruby powered creation &lt;a href=&quot;http://github.com/mojombo/jekyll&quot;&gt;Jekyll&lt;/a&gt; for this blog over Wordpress which I was using earlier. Jekyll lets me use the lightweight &lt;a href=&quot;http://en.wikipedia.org/wiki/Textile_(markup_language)&quot;&gt;Textile&lt;/a&gt; markup to write blog posts in a text editor such as &lt;strong&gt;vim&lt;/strong&gt;. Then I simply run &lt;strong&gt;jekyll&lt;/strong&gt; in a local directory which crunches all the templates and markup to generate plain old vanilla &lt;span class=&quot;caps&quot;&gt;HTML&lt;/span&gt;. As I am also using &lt;strong&gt;git&lt;/strong&gt; for version controlling the blog, I can use git&amp;#8217;s post hook feature to deploy the blog remotely to my web host. Another alternative approach to deployment is by using &lt;strong&gt;rsync&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;When I tweeted about the reincarnation of this blog I received a question from &lt;a href=&quot;http://twitter.com/socialectnepal&quot;&gt;@socialectnepal&lt;/a&gt; regarding my reasoning behind this switch and my reply below summarises my decision :&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://nepcoder.com/images/twitter.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/Nepcoder/~4/GBFwplERaps&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Thu, 12 Nov 2009 06:00:00 +0000</pubDate>
</item>
<item>
	<title>888: Ask Mark Shuttleworth</title>
	<guid>tag:blogger.com,1999:blog-1241233588755403188.post-3999773854534659424</guid>
	<link>http://feedproxy.google.com/~r/feedburner/PsXj/~3/-ASbUxud-y8/ask-mark-shuttleworth.html</link>
	<description>&amp;lt;p&amp;gt;&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/4J3nisMxLmlJDnCVxu2ycpbvok4/0/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/4J3nisMxLmlJDnCVxu2ycpbvok4/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;br/&amp;gt;
&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/4J3nisMxLmlJDnCVxu2ycpbvok4/1/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/4J3nisMxLmlJDnCVxu2ycpbvok4/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;div class=&quot;feedflare&quot;&amp;gt;
&amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=zjuYOvf-ZjI:Pi1hgMrLve8:V_sGLiPBpWU&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=zjuYOvf-ZjI:Pi1hgMrLve8:V_sGLiPBpWU&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=zjuYOvf-ZjI:Pi1hgMrLve8:7Q72WNTAKBA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=7Q72WNTAKBA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=zjuYOvf-ZjI:Pi1hgMrLve8:gIN9vFwOqvQ&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=zjuYOvf-ZjI:Pi1hgMrLve8:gIN9vFwOqvQ&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=zjuYOvf-ZjI:Pi1hgMrLve8:dnMXMwOfBR0&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=dnMXMwOfBR0&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=zjuYOvf-ZjI:Pi1hgMrLve8:qj6IDK7rITs&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=qj6IDK7rITs&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=zjuYOvf-ZjI:Pi1hgMrLve8:yIl2AUoC8zA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=yIl2AUoC8zA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=zjuYOvf-ZjI:Pi1hgMrLve8:63t7Ie-LG7Y&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=63t7Ie-LG7Y&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;
&amp;lt;/div&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/techspalace/~4/zjuYOvf-ZjI&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/feedburner/PsXj/~4/-ASbUxud-y8&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;</description>
	<pubDate>Sun, 08 Nov 2009 13:37:00 +0000</pubDate>
	<author>noreply@blogger.com (Techs Palace)</author>
</item>
<item>
	<title>888: Simplest Http Server</title>
	<guid>tag:blogger.com,1999:blog-1241233588755403188.post-8430941859133046930</guid>
	<link>http://feedproxy.google.com/~r/feedburner/PsXj/~3/dIC3zqFkNwc/simplest-http-server.html</link>
	<description>&amp;lt;p&amp;gt;&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/uHmt9UcVDzrd7GLTufqGI7hr2xs/0/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/uHmt9UcVDzrd7GLTufqGI7hr2xs/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;br/&amp;gt;
&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/uHmt9UcVDzrd7GLTufqGI7hr2xs/1/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/uHmt9UcVDzrd7GLTufqGI7hr2xs/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;div class=&quot;feedflare&quot;&amp;gt;
&amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=ZtKRMNwsTts:RtlG-XJOumk:V_sGLiPBpWU&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=ZtKRMNwsTts:RtlG-XJOumk:V_sGLiPBpWU&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=ZtKRMNwsTts:RtlG-XJOumk:7Q72WNTAKBA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=7Q72WNTAKBA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=ZtKRMNwsTts:RtlG-XJOumk:gIN9vFwOqvQ&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=ZtKRMNwsTts:RtlG-XJOumk:gIN9vFwOqvQ&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=ZtKRMNwsTts:RtlG-XJOumk:dnMXMwOfBR0&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=dnMXMwOfBR0&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=ZtKRMNwsTts:RtlG-XJOumk:qj6IDK7rITs&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=qj6IDK7rITs&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=ZtKRMNwsTts:RtlG-XJOumk:yIl2AUoC8zA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=yIl2AUoC8zA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=ZtKRMNwsTts:RtlG-XJOumk:63t7Ie-LG7Y&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=63t7Ie-LG7Y&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;
&amp;lt;/div&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/techspalace/~4/ZtKRMNwsTts&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/feedburner/PsXj/~4/dIC3zqFkNwc&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;</description>
	<pubDate>Sun, 08 Nov 2009 06:02:00 +0000</pubDate>
	<author>noreply@blogger.com (Techs Palace)</author>
</item>
<item>
	<title>888: [How To] Install Ubuntu in Can Coke</title>
	<guid>tag:blogger.com,1999:blog-1241233588755403188.post-2536728961499276328</guid>
	<link>http://feedproxy.google.com/~r/feedburner/PsXj/~3/_a1BRRQUVzo/how-to-install-ubuntu-in-coke-can.html</link>
	<description>&amp;lt;p&amp;gt;&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/TnvK97SWDCyQiTjWiMfbYARbJPA/0/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/TnvK97SWDCyQiTjWiMfbYARbJPA/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;br/&amp;gt;
&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/TnvK97SWDCyQiTjWiMfbYARbJPA/1/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/TnvK97SWDCyQiTjWiMfbYARbJPA/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;div class=&quot;feedflare&quot;&amp;gt;
&amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=EbiJtZ0heqg:sgEmJwtbBKQ:V_sGLiPBpWU&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=EbiJtZ0heqg:sgEmJwtbBKQ:V_sGLiPBpWU&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=EbiJtZ0heqg:sgEmJwtbBKQ:7Q72WNTAKBA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=7Q72WNTAKBA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=EbiJtZ0heqg:sgEmJwtbBKQ:gIN9vFwOqvQ&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=EbiJtZ0heqg:sgEmJwtbBKQ:gIN9vFwOqvQ&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=EbiJtZ0heqg:sgEmJwtbBKQ:dnMXMwOfBR0&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=dnMXMwOfBR0&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=EbiJtZ0heqg:sgEmJwtbBKQ:qj6IDK7rITs&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=qj6IDK7rITs&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=EbiJtZ0heqg:sgEmJwtbBKQ:yIl2AUoC8zA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=yIl2AUoC8zA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=EbiJtZ0heqg:sgEmJwtbBKQ:63t7Ie-LG7Y&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=63t7Ie-LG7Y&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;
&amp;lt;/div&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/techspalace/~4/EbiJtZ0heqg&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/feedburner/PsXj/~4/_a1BRRQUVzo&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;</description>
	<pubDate>Sun, 08 Nov 2009 03:44:00 +0000</pubDate>
	<author>noreply@blogger.com (Techs Palace)</author>
</item>
<item>
	<title>888: Minimize Xchat To Tray In Karmic</title>
	<guid>tag:blogger.com,1999:blog-1241233588755403188.post-7400691900794160117</guid>
	<link>http://feedproxy.google.com/~r/feedburner/PsXj/~3/IqoO-ntQetM/minimize-xchat-to-tray-in-karmic.html</link>
	<description>&amp;lt;p&amp;gt;&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/5u6zLMd1LP1ympqHsi-nDpD1cSI/0/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/5u6zLMd1LP1ympqHsi-nDpD1cSI/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;br/&amp;gt;
&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/5u6zLMd1LP1ympqHsi-nDpD1cSI/1/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/5u6zLMd1LP1ympqHsi-nDpD1cSI/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;div class=&quot;feedflare&quot;&amp;gt;
&amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=ooNm2EM8nnY:O4ndAUwfTeM:V_sGLiPBpWU&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=ooNm2EM8nnY:O4ndAUwfTeM:V_sGLiPBpWU&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=ooNm2EM8nnY:O4ndAUwfTeM:7Q72WNTAKBA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=7Q72WNTAKBA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=ooNm2EM8nnY:O4ndAUwfTeM:gIN9vFwOqvQ&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=ooNm2EM8nnY:O4ndAUwfTeM:gIN9vFwOqvQ&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=ooNm2EM8nnY:O4ndAUwfTeM:dnMXMwOfBR0&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=dnMXMwOfBR0&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=ooNm2EM8nnY:O4ndAUwfTeM:qj6IDK7rITs&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=qj6IDK7rITs&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=ooNm2EM8nnY:O4ndAUwfTeM:yIl2AUoC8zA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=yIl2AUoC8zA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=ooNm2EM8nnY:O4ndAUwfTeM:63t7Ie-LG7Y&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=63t7Ie-LG7Y&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;
&amp;lt;/div&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/techspalace/~4/ooNm2EM8nnY&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/feedburner/PsXj/~4/IqoO-ntQetM&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;</description>
	<pubDate>Tue, 03 Nov 2009 12:20:00 +0000</pubDate>
	<author>noreply@blogger.com (Techs Palace)</author>
</item>
<item>
	<title>888: Multi Touch with Ubuntu</title>
	<guid>tag:blogger.com,1999:blog-1241233588755403188.post-4444106524679660335</guid>
	<link>http://feedproxy.google.com/~r/feedburner/PsXj/~3/0RXTXkesXYs/multi-touch-with-ubuntu.html</link>
	<description>&amp;lt;p&amp;gt;&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/RXC3cafvaKRBYSYilkAW_kmmRD8/0/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/RXC3cafvaKRBYSYilkAW_kmmRD8/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;br/&amp;gt;
&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/RXC3cafvaKRBYSYilkAW_kmmRD8/1/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/RXC3cafvaKRBYSYilkAW_kmmRD8/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;div class=&quot;feedflare&quot;&amp;gt;
&amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=X3WqZ_QJjAc:29_8jga0w1I:V_sGLiPBpWU&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=X3WqZ_QJjAc:29_8jga0w1I:V_sGLiPBpWU&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=X3WqZ_QJjAc:29_8jga0w1I:7Q72WNTAKBA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=7Q72WNTAKBA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=X3WqZ_QJjAc:29_8jga0w1I:gIN9vFwOqvQ&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=X3WqZ_QJjAc:29_8jga0w1I:gIN9vFwOqvQ&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=X3WqZ_QJjAc:29_8jga0w1I:dnMXMwOfBR0&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=dnMXMwOfBR0&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=X3WqZ_QJjAc:29_8jga0w1I:qj6IDK7rITs&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=qj6IDK7rITs&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=X3WqZ_QJjAc:29_8jga0w1I:yIl2AUoC8zA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=yIl2AUoC8zA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=X3WqZ_QJjAc:29_8jga0w1I:63t7Ie-LG7Y&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=63t7Ie-LG7Y&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;
&amp;lt;/div&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/techspalace/~4/X3WqZ_QJjAc&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/feedburner/PsXj/~4/0RXTXkesXYs&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;</description>
	<pubDate>Tue, 03 Nov 2009 12:15:00 +0000</pubDate>
	<author>noreply@blogger.com (Techs Palace)</author>
</item>
<item>
	<title>888: Ubuntu 9.10 (Karmic Koala) Released</title>
	<guid>tag:blogger.com,1999:blog-1241233588755403188.post-7142996373974578462</guid>
	<link>http://feedproxy.google.com/~r/feedburner/PsXj/~3/aFpm0egya-s/ubuntu-910-karmic-koala-released.html</link>
	<description>&amp;lt;p&amp;gt;&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/xwtW4FZDR_A715mpM7cpwOmIgAI/0/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/xwtW4FZDR_A715mpM7cpwOmIgAI/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;br/&amp;gt;
&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/xwtW4FZDR_A715mpM7cpwOmIgAI/1/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/xwtW4FZDR_A715mpM7cpwOmIgAI/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;div class=&quot;feedflare&quot;&amp;gt;
&amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=83nmyr83E7s:DjmwB_jNVtU:V_sGLiPBpWU&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=83nmyr83E7s:DjmwB_jNVtU:V_sGLiPBpWU&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=83nmyr83E7s:DjmwB_jNVtU:7Q72WNTAKBA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=7Q72WNTAKBA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=83nmyr83E7s:DjmwB_jNVtU:gIN9vFwOqvQ&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=83nmyr83E7s:DjmwB_jNVtU:gIN9vFwOqvQ&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=83nmyr83E7s:DjmwB_jNVtU:dnMXMwOfBR0&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=dnMXMwOfBR0&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=83nmyr83E7s:DjmwB_jNVtU:qj6IDK7rITs&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=qj6IDK7rITs&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=83nmyr83E7s:DjmwB_jNVtU:yIl2AUoC8zA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=yIl2AUoC8zA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=83nmyr83E7s:DjmwB_jNVtU:63t7Ie-LG7Y&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=63t7Ie-LG7Y&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;
&amp;lt;/div&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/techspalace/~4/83nmyr83E7s&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/feedburner/PsXj/~4/aFpm0egya-s&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;</description>
	<pubDate>Thu, 29 Oct 2009 08:55:00 +0000</pubDate>
	<author>noreply@blogger.com (Techs Palace)</author>
</item>
<item>
	<title>Himanshu Chhetri (r11t): Yet another simple app built using Sinatra + deployed on Heroku</title>
	<guid>http://nepcoder.com/2009/10/19/yet_another_simple_app_built_using_sinatra_deployed_on_heroku</guid>
	<link>http://feedproxy.google.com/~r/Nepcoder/~3/5NJTeCCs6R0/yet_another_simple_app_built_using_sinatra_deployed_on_heroku.html</link>
	<description>&lt;h1&gt;Yet another simple app built using Sinatra + deployed on Heroku&lt;/h1&gt;
&lt;p class=&quot;meta&quot;&gt;19 October 2009&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://weather.heroku.com&quot;&gt;&lt;img src=&quot;http://www.nepcoder.com/oldblog/blog/wp-content/uploads/2009/10/weather.png&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I have been fooling around with building mini web apps with Ruby lately. The latest toy being a web app to check the weather by entering the zip code utilizing Yahoo&amp;#8217;s weather service. As usual the project resides on Github and deployed on the lovely Heroku.&lt;/p&gt;
&lt;p&gt;Source code &lt;a href=&quot;http://github.com/himanshuc/weather&quot;&gt;repository&lt;/a&gt;&lt;/p&gt;
&lt;img src=&quot;http://feeds.feedburner.com/~r/Nepcoder/~4/5NJTeCCs6R0&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Mon, 19 Oct 2009 05:00:00 +0000</pubDate>
</item>
<item>
	<title>888: Thunderbird Minimize To Tray</title>
	<guid>tag:blogger.com,1999:blog-1241233588755403188.post-4657292902267181667</guid>
	<link>http://feedproxy.google.com/~r/feedburner/PsXj/~3/X8F5_uLVZyA/thunderbird-minimize-to-tray.html</link>
	<description>&amp;lt;p&amp;gt;&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/16ekTzPlBOUgJ-_2iwJ3Hng8vxU/0/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/16ekTzPlBOUgJ-_2iwJ3Hng8vxU/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;br/&amp;gt;
&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/16ekTzPlBOUgJ-_2iwJ3Hng8vxU/1/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/16ekTzPlBOUgJ-_2iwJ3Hng8vxU/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;div class=&quot;feedflare&quot;&amp;gt;
&amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=zMS5i79jmXU:zKxYMVbAIEg:V_sGLiPBpWU&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=zMS5i79jmXU:zKxYMVbAIEg:V_sGLiPBpWU&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=zMS5i79jmXU:zKxYMVbAIEg:7Q72WNTAKBA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=7Q72WNTAKBA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=zMS5i79jmXU:zKxYMVbAIEg:gIN9vFwOqvQ&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=zMS5i79jmXU:zKxYMVbAIEg:gIN9vFwOqvQ&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=zMS5i79jmXU:zKxYMVbAIEg:dnMXMwOfBR0&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=dnMXMwOfBR0&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=zMS5i79jmXU:zKxYMVbAIEg:qj6IDK7rITs&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=qj6IDK7rITs&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=zMS5i79jmXU:zKxYMVbAIEg:yIl2AUoC8zA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=yIl2AUoC8zA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=zMS5i79jmXU:zKxYMVbAIEg:63t7Ie-LG7Y&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=63t7Ie-LG7Y&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;
&amp;lt;/div&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/techspalace/~4/zMS5i79jmXU&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/feedburner/PsXj/~4/X8F5_uLVZyA&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;</description>
	<pubDate>Sun, 18 Oct 2009 16:02:00 +0000</pubDate>
	<author>noreply@blogger.com (Techs Palace)</author>
</item>
<item>
	<title>888: Shipit Karmic Koala</title>
	<guid>tag:blogger.com,1999:blog-1241233588755403188.post-8343132710730429993</guid>
	<link>http://feedproxy.google.com/~r/feedburner/PsXj/~3/SsxGu1cLFWo/shipit-karmic-koala.html</link>
	<description>&amp;lt;p&amp;gt;&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/4RRTbiWp3UPgZZzkYx0uAh5Gr8U/0/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/4RRTbiWp3UPgZZzkYx0uAh5Gr8U/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;br/&amp;gt;
&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/4RRTbiWp3UPgZZzkYx0uAh5Gr8U/1/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/4RRTbiWp3UPgZZzkYx0uAh5Gr8U/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;div class=&quot;feedflare&quot;&amp;gt;
&amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=TxKEYI1cTXI:VW69hwDZH-M:V_sGLiPBpWU&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=TxKEYI1cTXI:VW69hwDZH-M:V_sGLiPBpWU&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=TxKEYI1cTXI:VW69hwDZH-M:7Q72WNTAKBA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=7Q72WNTAKBA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=TxKEYI1cTXI:VW69hwDZH-M:gIN9vFwOqvQ&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=TxKEYI1cTXI:VW69hwDZH-M:gIN9vFwOqvQ&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=TxKEYI1cTXI:VW69hwDZH-M:dnMXMwOfBR0&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=dnMXMwOfBR0&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=TxKEYI1cTXI:VW69hwDZH-M:qj6IDK7rITs&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=qj6IDK7rITs&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=TxKEYI1cTXI:VW69hwDZH-M:yIl2AUoC8zA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=yIl2AUoC8zA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=TxKEYI1cTXI:VW69hwDZH-M:63t7Ie-LG7Y&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=63t7Ie-LG7Y&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;
&amp;lt;/div&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/techspalace/~4/TxKEYI1cTXI&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/feedburner/PsXj/~4/SsxGu1cLFWo&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;</description>
	<pubDate>Sat, 17 Oct 2009 07:28:00 +0000</pubDate>
	<author>noreply@blogger.com (Techs Palace)</author>
</item>
<item>
	<title>888: How To Open VirtualBox Guest OS Directly</title>
	<guid>tag:blogger.com,1999:blog-1241233588755403188.post-1209323068649147780</guid>
	<link>http://feedproxy.google.com/~r/feedburner/PsXj/~3/sSdpHtPzNdU/how-to-open-virtualbox-guest-os.html</link>
	<description>&amp;lt;p&amp;gt;&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/BvGkPbwi09n33PJd7Ul5KAINhNU/0/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/BvGkPbwi09n33PJd7Ul5KAINhNU/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;br/&amp;gt;
&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/BvGkPbwi09n33PJd7Ul5KAINhNU/1/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/BvGkPbwi09n33PJd7Ul5KAINhNU/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;div class=&quot;feedflare&quot;&amp;gt;
&amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=gi_6OFkLW-4:bbTj5SzyJZI:V_sGLiPBpWU&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=gi_6OFkLW-4:bbTj5SzyJZI:V_sGLiPBpWU&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=gi_6OFkLW-4:bbTj5SzyJZI:7Q72WNTAKBA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=7Q72WNTAKBA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=gi_6OFkLW-4:bbTj5SzyJZI:gIN9vFwOqvQ&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=gi_6OFkLW-4:bbTj5SzyJZI:gIN9vFwOqvQ&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=gi_6OFkLW-4:bbTj5SzyJZI:dnMXMwOfBR0&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=dnMXMwOfBR0&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=gi_6OFkLW-4:bbTj5SzyJZI:qj6IDK7rITs&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=qj6IDK7rITs&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=gi_6OFkLW-4:bbTj5SzyJZI:yIl2AUoC8zA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=yIl2AUoC8zA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=gi_6OFkLW-4:bbTj5SzyJZI:63t7Ie-LG7Y&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=63t7Ie-LG7Y&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;
&amp;lt;/div&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/techspalace/~4/gi_6OFkLW-4&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/feedburner/PsXj/~4/sSdpHtPzNdU&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;</description>
	<pubDate>Thu, 15 Oct 2009 12:39:00 +0000</pubDate>
	<author>noreply@blogger.com (Techs Palace)</author>
</item>
<item>
	<title>888: Beautiful Karmic Koala Desktop</title>
	<guid>tag:blogger.com,1999:blog-1241233588755403188.post-7773384380130046993</guid>
	<link>http://feedproxy.google.com/~r/feedburner/PsXj/~3/YjIZlCBNGuo/beautiful-karmic-koala-desktop.html</link>
	<description>&amp;lt;p&amp;gt;&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/jFw1ktka1Hq1eBpzrlfq9MoL12o/0/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/jFw1ktka1Hq1eBpzrlfq9MoL12o/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;br/&amp;gt;
&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/jFw1ktka1Hq1eBpzrlfq9MoL12o/1/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/jFw1ktka1Hq1eBpzrlfq9MoL12o/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;div class=&quot;feedflare&quot;&amp;gt;
&amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=pteOxvBtZhs:PHEqsiJCroI:V_sGLiPBpWU&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=pteOxvBtZhs:PHEqsiJCroI:V_sGLiPBpWU&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=pteOxvBtZhs:PHEqsiJCroI:7Q72WNTAKBA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=7Q72WNTAKBA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=pteOxvBtZhs:PHEqsiJCroI:gIN9vFwOqvQ&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=pteOxvBtZhs:PHEqsiJCroI:gIN9vFwOqvQ&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=pteOxvBtZhs:PHEqsiJCroI:dnMXMwOfBR0&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=dnMXMwOfBR0&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=pteOxvBtZhs:PHEqsiJCroI:qj6IDK7rITs&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=qj6IDK7rITs&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=pteOxvBtZhs:PHEqsiJCroI:yIl2AUoC8zA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=yIl2AUoC8zA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=pteOxvBtZhs:PHEqsiJCroI:63t7Ie-LG7Y&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=63t7Ie-LG7Y&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;
&amp;lt;/div&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/techspalace/~4/pteOxvBtZhs&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/feedburner/PsXj/~4/YjIZlCBNGuo&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;</description>
	<pubDate>Wed, 07 Oct 2009 03:32:00 +0000</pubDate>
	<author>noreply@blogger.com (Techs Palace)</author>
</item>
<item>
	<title>888: Beautiful Horizontal Conky</title>
	<guid>tag:blogger.com,1999:blog-1241233588755403188.post-8349557280117069006</guid>
	<link>http://feedproxy.google.com/~r/feedburner/PsXj/~3/4hrZfzfN6Xs/beautiful-horizontal-conky.html</link>
	<description>&amp;lt;p&amp;gt;&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/imwZ6DSt6sPmkl4EqpwAg0tcrMg/0/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/imwZ6DSt6sPmkl4EqpwAg0tcrMg/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;br/&amp;gt;
&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/imwZ6DSt6sPmkl4EqpwAg0tcrMg/1/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/imwZ6DSt6sPmkl4EqpwAg0tcrMg/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;div class=&quot;feedflare&quot;&amp;gt;
&amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=QpPAwy0vd1o:CqNM6h50apk:V_sGLiPBpWU&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=QpPAwy0vd1o:CqNM6h50apk:V_sGLiPBpWU&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=QpPAwy0vd1o:CqNM6h50apk:7Q72WNTAKBA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=7Q72WNTAKBA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=QpPAwy0vd1o:CqNM6h50apk:gIN9vFwOqvQ&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=QpPAwy0vd1o:CqNM6h50apk:gIN9vFwOqvQ&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=QpPAwy0vd1o:CqNM6h50apk:dnMXMwOfBR0&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=dnMXMwOfBR0&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=QpPAwy0vd1o:CqNM6h50apk:qj6IDK7rITs&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=qj6IDK7rITs&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=QpPAwy0vd1o:CqNM6h50apk:yIl2AUoC8zA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=yIl2AUoC8zA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=QpPAwy0vd1o:CqNM6h50apk:63t7Ie-LG7Y&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=63t7Ie-LG7Y&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;
&amp;lt;/div&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/techspalace/~4/QpPAwy0vd1o&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/feedburner/PsXj/~4/4hrZfzfN6Xs&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;</description>
	<pubDate>Wed, 07 Oct 2009 00:55:00 +0000</pubDate>
	<author>noreply@blogger.com (Techs Palace)</author>
</item>
<item>
	<title>888: [Solved] couldn't open demos/TUTORIAL.dm_68</title>
	<guid>tag:blogger.com,1999:blog-1241233588755403188.post-8206087776221054966</guid>
	<link>http://feedproxy.google.com/~r/feedburner/PsXj/~3/Hm1E07Y0p0Y/solved-couldnt-open-demostutorialdm68.html</link>
	<description>&amp;lt;p&amp;gt;&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/ZNN0ULBTSDAVD_jOEpnifu7g4-o/0/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/ZNN0ULBTSDAVD_jOEpnifu7g4-o/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;br/&amp;gt;
&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/ZNN0ULBTSDAVD_jOEpnifu7g4-o/1/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/ZNN0ULBTSDAVD_jOEpnifu7g4-o/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;div class=&quot;feedflare&quot;&amp;gt;
&amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=o3p6k7JOLHU:5AnJb97ubzE:V_sGLiPBpWU&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=o3p6k7JOLHU:5AnJb97ubzE:V_sGLiPBpWU&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=o3p6k7JOLHU:5AnJb97ubzE:7Q72WNTAKBA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=7Q72WNTAKBA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=o3p6k7JOLHU:5AnJb97ubzE:gIN9vFwOqvQ&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=o3p6k7JOLHU:5AnJb97ubzE:gIN9vFwOqvQ&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=o3p6k7JOLHU:5AnJb97ubzE:dnMXMwOfBR0&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=dnMXMwOfBR0&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=o3p6k7JOLHU:5AnJb97ubzE:qj6IDK7rITs&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=qj6IDK7rITs&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=o3p6k7JOLHU:5AnJb97ubzE:yIl2AUoC8zA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=yIl2AUoC8zA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=o3p6k7JOLHU:5AnJb97ubzE:63t7Ie-LG7Y&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=63t7Ie-LG7Y&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;
&amp;lt;/div&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/techspalace/~4/o3p6k7JOLHU&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/feedburner/PsXj/~4/Hm1E07Y0p0Y&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;</description>
	<pubDate>Mon, 05 Oct 2009 17:19:00 +0000</pubDate>
	<author>noreply@blogger.com (Techs Palace)</author>
</item>
<item>
	<title>Prasanna Gautam (SR71-Blackbird): My ssh/.config file</title>
	<guid>http://www.nextdoorhacker.com/2009/10/my-ssh-config-file/</guid>
	<link>http://www.nextdoorhacker.com/2009/10/my-ssh-config-file/</link>
	<description>So, I have been having to look this up almost every time I need to update ssh stuff on new machines that I'm just going to put it here now.

Host gprasanna
 User xxx
 HostName gprasanna.com.np

Host mycomputer.cs.trincoll.edu
 User test
 Port 30045

Host ubuntunp
 User xxx
 HostName ubuntu.org.np

Host *.cs.trincoll.edu
 ForwardX11 yes

Host *
 Compression ...</description>
	<pubDate>Sat, 03 Oct 2009 15:00:06 +0000</pubDate>
</item>
<item>
	<title>888: Internet Monitoring With SARG and Squid On Windows</title>
	<guid>tag:blogger.com,1999:blog-1241233588755403188.post-961370184403084429</guid>
	<link>http://feedproxy.google.com/~r/feedburner/PsXj/~3/r3B67WTUC10/internet-monitoring-with-sarg-and-squid.html</link>
	<description>&amp;lt;p&amp;gt;&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/capSN05Ple4lnkuhIw1oeB2vnK4/0/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/capSN05Ple4lnkuhIw1oeB2vnK4/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;br/&amp;gt;
&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/capSN05Ple4lnkuhIw1oeB2vnK4/1/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/capSN05Ple4lnkuhIw1oeB2vnK4/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;div class=&quot;feedflare&quot;&amp;gt;
&amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=VoxQ622amrs:1kwHpWBz_do:V_sGLiPBpWU&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=VoxQ622amrs:1kwHpWBz_do:V_sGLiPBpWU&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=VoxQ622amrs:1kwHpWBz_do:7Q72WNTAKBA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=7Q72WNTAKBA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=VoxQ622amrs:1kwHpWBz_do:gIN9vFwOqvQ&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=VoxQ622amrs:1kwHpWBz_do:gIN9vFwOqvQ&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=VoxQ622amrs:1kwHpWBz_do:dnMXMwOfBR0&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=dnMXMwOfBR0&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=VoxQ622amrs:1kwHpWBz_do:qj6IDK7rITs&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=qj6IDK7rITs&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=VoxQ622amrs:1kwHpWBz_do:yIl2AUoC8zA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=yIl2AUoC8zA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=VoxQ622amrs:1kwHpWBz_do:63t7Ie-LG7Y&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=63t7Ie-LG7Y&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;
&amp;lt;/div&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/techspalace/~4/VoxQ622amrs&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/feedburner/PsXj/~4/r3B67WTUC10&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;</description>
	<pubDate>Mon, 14 Sep 2009 02:00:00 +0000</pubDate>
	<author>noreply@blogger.com (Techs Palace)</author>
</item>
<item>
	<title>888: Squid On Windows</title>
	<guid>tag:blogger.com,1999:blog-1241233588755403188.post-2611139228074265139</guid>
	<link>http://feedproxy.google.com/~r/feedburner/PsXj/~3/qMSBL6BZwVk/squid-on-windows.html</link>
	<description>&amp;lt;p&amp;gt;&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/Dh2AqFI1fmEqUTH3Q9xdec9loI4/0/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/Dh2AqFI1fmEqUTH3Q9xdec9loI4/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;br/&amp;gt;
&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/Dh2AqFI1fmEqUTH3Q9xdec9loI4/1/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/Dh2AqFI1fmEqUTH3Q9xdec9loI4/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;div class=&quot;feedflare&quot;&amp;gt;
&amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=PXx3eXNidQA:EtPPRouJQBs:V_sGLiPBpWU&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=PXx3eXNidQA:EtPPRouJQBs:V_sGLiPBpWU&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=PXx3eXNidQA:EtPPRouJQBs:7Q72WNTAKBA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=7Q72WNTAKBA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=PXx3eXNidQA:EtPPRouJQBs:gIN9vFwOqvQ&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=PXx3eXNidQA:EtPPRouJQBs:gIN9vFwOqvQ&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=PXx3eXNidQA:EtPPRouJQBs:dnMXMwOfBR0&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=dnMXMwOfBR0&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=PXx3eXNidQA:EtPPRouJQBs:qj6IDK7rITs&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=qj6IDK7rITs&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=PXx3eXNidQA:EtPPRouJQBs:yIl2AUoC8zA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=yIl2AUoC8zA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=PXx3eXNidQA:EtPPRouJQBs:63t7Ie-LG7Y&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=63t7Ie-LG7Y&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;
&amp;lt;/div&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/techspalace/~4/PXx3eXNidQA&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/feedburner/PsXj/~4/qMSBL6BZwVk&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;</description>
	<pubDate>Mon, 14 Sep 2009 01:41:00 +0000</pubDate>
	<author>noreply@blogger.com (Techs Palace)</author>
</item>
<item>
	<title>888: Google Chrome Update Keeps Appearing Even After Removing From Application Sources</title>
	<guid>tag:blogger.com,1999:blog-1241233588755403188.post-2255665333067935790</guid>
	<link>http://feedproxy.google.com/~r/feedburner/PsXj/~3/YhnnRHAm5no/google-chrome-update-keeps-appearing.html</link>
	<description>&amp;lt;p&amp;gt;&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/FSHZ06iqhN7Ok3WtOnTG3DD0QVc/0/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/FSHZ06iqhN7Ok3WtOnTG3DD0QVc/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;br/&amp;gt;
&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/FSHZ06iqhN7Ok3WtOnTG3DD0QVc/1/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/FSHZ06iqhN7Ok3WtOnTG3DD0QVc/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;div class=&quot;feedflare&quot;&amp;gt;
&amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=GxC_8CmpdPY:9qT_GOtBUuk:V_sGLiPBpWU&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=GxC_8CmpdPY:9qT_GOtBUuk:V_sGLiPBpWU&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=GxC_8CmpdPY:9qT_GOtBUuk:7Q72WNTAKBA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=7Q72WNTAKBA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=GxC_8CmpdPY:9qT_GOtBUuk:gIN9vFwOqvQ&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=GxC_8CmpdPY:9qT_GOtBUuk:gIN9vFwOqvQ&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=GxC_8CmpdPY:9qT_GOtBUuk:dnMXMwOfBR0&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=dnMXMwOfBR0&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=GxC_8CmpdPY:9qT_GOtBUuk:qj6IDK7rITs&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=qj6IDK7rITs&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=GxC_8CmpdPY:9qT_GOtBUuk:yIl2AUoC8zA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=yIl2AUoC8zA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=GxC_8CmpdPY:9qT_GOtBUuk:63t7Ie-LG7Y&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=63t7Ie-LG7Y&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;
&amp;lt;/div&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/techspalace/~4/GxC_8CmpdPY&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/feedburner/PsXj/~4/YhnnRHAm5no&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;</description>
	<pubDate>Mon, 14 Sep 2009 01:12:00 +0000</pubDate>
	<author>noreply@blogger.com (Techs Palace)</author>
</item>
<item>
	<title>Ankur Sharma (anks): Data Visualization Guideline</title>
	<guid>http://ankur.com.np/36 at http://ankur.com.np</guid>
	<link>http://ankur.com.np/datavisualize</link>
	<description>&lt;p&gt;I created this data visualization guideline for a company which needs regular data visualization for printing and presentation purpose, their requirement specially demands different charts and graphs. This visualization guideline is not a complete solution but contextual one rather, I am very thankful towards the company for letting me post this guideline publicly.&lt;br /&gt;
I hope this guideline will be of some help to starters.&lt;br /&gt;
Please &lt;a href=&quot;http://www.archive.org/download/DataVisualizationGuideline/DataVisualizationGuideline.pdf&quot; alt=&quot;Download Data Visualization Guideline&quot;&gt;Download here&lt;/a&gt;&lt;/p&gt;</description>
	<pubDate>Sat, 12 Sep 2009 17:11:33 +0000</pubDate>
</item>
<item>
	<title>888: Install Firefox 3.5 on OLPC XO</title>
	<guid>tag:blogger.com,1999:blog-1241233588755403188.post-7603869594110634316</guid>
	<link>http://feedproxy.google.com/~r/feedburner/PsXj/~3/7pPz73EUaQw/install-firefox-35-on-olpc-xo.html</link>
	<description>&amp;lt;p&amp;gt;&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/RY-4brm9Of91EiaVJqTQkH6CkYE/0/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/RY-4brm9Of91EiaVJqTQkH6CkYE/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;br/&amp;gt;
&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/RY-4brm9Of91EiaVJqTQkH6CkYE/1/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/RY-4brm9Of91EiaVJqTQkH6CkYE/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;div class=&quot;feedflare&quot;&amp;gt;
&amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=o_QcSeM3blE:N7qErRNgClM:V_sGLiPBpWU&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=o_QcSeM3blE:N7qErRNgClM:V_sGLiPBpWU&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=o_QcSeM3blE:N7qErRNgClM:7Q72WNTAKBA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=7Q72WNTAKBA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=o_QcSeM3blE:N7qErRNgClM:gIN9vFwOqvQ&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=o_QcSeM3blE:N7qErRNgClM:gIN9vFwOqvQ&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=o_QcSeM3blE:N7qErRNgClM:dnMXMwOfBR0&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=dnMXMwOfBR0&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=o_QcSeM3blE:N7qErRNgClM:qj6IDK7rITs&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=qj6IDK7rITs&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=o_QcSeM3blE:N7qErRNgClM:yIl2AUoC8zA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=yIl2AUoC8zA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=o_QcSeM3blE:N7qErRNgClM:63t7Ie-LG7Y&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=63t7Ie-LG7Y&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;
&amp;lt;/div&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/techspalace/~4/o_QcSeM3blE&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/feedburner/PsXj/~4/7pPz73EUaQw&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;</description>
	<pubDate>Fri, 11 Sep 2009 04:27:00 +0000</pubDate>
	<author>noreply@blogger.com (TechsPalace)</author>
</item>
<item>
	<title>Prasanna Gautam (SR71-Blackbird): A better shell for cygwin</title>
	<guid>http://www.nextdoorhacker.com/2009/07/a-better-shell-for-cygwin/</guid>
	<link>http://www.nextdoorhacker.com/2009/07/a-better-shell-for-cygwin/</link>
	<description>So, I’ve been using cygwin for a while now and I am not impressed at all by the default shell for the following reasons:

	1. It’s clumsy. I can’t resize properly.
	2. Doesn’t take NUL character apparently
	3. Backspace is acting weird so far.
	4. cmd.exe looks ugly!

However, putty is pretty amazing in terms ...</description>
	<pubDate>Sat, 05 Sep 2009 05:56:49 +0000</pubDate>
</item>
<item>
	<title>888: Fixing small bugs in Ubuntu</title>
	<guid>tag:blogger.com,1999:blog-1241233588755403188.post-7255362753663108772</guid>
	<link>http://feedproxy.google.com/~r/feedburner/PsXj/~3/Kj2v7dXpF6o/fixing-small-bugs-in-ubuntu.html</link>
	<description>&amp;lt;p&amp;gt;&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/xHmVvTIRM7AnANs3fXVAlXjK9T4/0/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/xHmVvTIRM7AnANs3fXVAlXjK9T4/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;br/&amp;gt;
&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/xHmVvTIRM7AnANs3fXVAlXjK9T4/1/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/xHmVvTIRM7AnANs3fXVAlXjK9T4/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;div class=&quot;feedflare&quot;&amp;gt;
&amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=4Y5ggWjbnoI:GqDGZUriP2Q:V_sGLiPBpWU&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=4Y5ggWjbnoI:GqDGZUriP2Q:V_sGLiPBpWU&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=4Y5ggWjbnoI:GqDGZUriP2Q:7Q72WNTAKBA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=7Q72WNTAKBA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=4Y5ggWjbnoI:GqDGZUriP2Q:gIN9vFwOqvQ&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=4Y5ggWjbnoI:GqDGZUriP2Q:gIN9vFwOqvQ&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=4Y5ggWjbnoI:GqDGZUriP2Q:dnMXMwOfBR0&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=dnMXMwOfBR0&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=4Y5ggWjbnoI:GqDGZUriP2Q:qj6IDK7rITs&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=qj6IDK7rITs&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=4Y5ggWjbnoI:GqDGZUriP2Q:yIl2AUoC8zA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=yIl2AUoC8zA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=4Y5ggWjbnoI:GqDGZUriP2Q:63t7Ie-LG7Y&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=63t7Ie-LG7Y&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;
&amp;lt;/div&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/techspalace/~4/4Y5ggWjbnoI&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/feedburner/PsXj/~4/Kj2v7dXpF6o&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;</description>
	<pubDate>Wed, 02 Sep 2009 02:03:00 +0000</pubDate>
	<author>noreply@blogger.com (TechsPalace)</author>
</item>
<item>
	<title>888: Ubuntu Developers Week, don't miss</title>
	<guid>tag:blogger.com,1999:blog-1241233588755403188.post-7625930696686569971</guid>
	<link>http://feedproxy.google.com/~r/feedburner/PsXj/~3/7S7OvPpWcGc/ubuntu-developers-week-dont-miss.html</link>
	<description>&amp;lt;p&amp;gt;&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/_gZdtRCogtpYBiWGYpz4qca_At0/0/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/_gZdtRCogtpYBiWGYpz4qca_At0/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;br/&amp;gt;
&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/_gZdtRCogtpYBiWGYpz4qca_At0/1/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/_gZdtRCogtpYBiWGYpz4qca_At0/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;div class=&quot;feedflare&quot;&amp;gt;
&amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=qcm3qpbFksA:SKSlRdiAzkM:V_sGLiPBpWU&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=qcm3qpbFksA:SKSlRdiAzkM:V_sGLiPBpWU&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=qcm3qpbFksA:SKSlRdiAzkM:7Q72WNTAKBA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=7Q72WNTAKBA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=qcm3qpbFksA:SKSlRdiAzkM:gIN9vFwOqvQ&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=qcm3qpbFksA:SKSlRdiAzkM:gIN9vFwOqvQ&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=qcm3qpbFksA:SKSlRdiAzkM:dnMXMwOfBR0&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=dnMXMwOfBR0&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=qcm3qpbFksA:SKSlRdiAzkM:qj6IDK7rITs&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=qj6IDK7rITs&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=qcm3qpbFksA:SKSlRdiAzkM:yIl2AUoC8zA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=yIl2AUoC8zA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=qcm3qpbFksA:SKSlRdiAzkM:63t7Ie-LG7Y&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=63t7Ie-LG7Y&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;
&amp;lt;/div&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/techspalace/~4/qcm3qpbFksA&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/feedburner/PsXj/~4/7S7OvPpWcGc&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;</description>
	<pubDate>Wed, 02 Sep 2009 01:48:00 +0000</pubDate>
	<author>noreply@blogger.com (TechsPalace)</author>
</item>
<item>
	<title>888: Use localepurge to remove unnecessary locales</title>
	<guid>tag:blogger.com,1999:blog-1241233588755403188.post-3328856802750010795</guid>
	<link>http://feedproxy.google.com/~r/feedburner/PsXj/~3/_9ywEw9PDH4/use-localepurge-to-remove-unnecessary.html</link>
	<description>&amp;lt;p&amp;gt;&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/lz0nL_ptder3XKD2VfXHYqpxEcE/0/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/lz0nL_ptder3XKD2VfXHYqpxEcE/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;br/&amp;gt;
&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/lz0nL_ptder3XKD2VfXHYqpxEcE/1/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/lz0nL_ptder3XKD2VfXHYqpxEcE/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;div class=&quot;feedflare&quot;&amp;gt;
&amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=9QIR-SjCTYI:N0PtLoMv-z8:V_sGLiPBpWU&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=9QIR-SjCTYI:N0PtLoMv-z8:V_sGLiPBpWU&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=9QIR-SjCTYI:N0PtLoMv-z8:7Q72WNTAKBA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=7Q72WNTAKBA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=9QIR-SjCTYI:N0PtLoMv-z8:gIN9vFwOqvQ&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=9QIR-SjCTYI:N0PtLoMv-z8:gIN9vFwOqvQ&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=9QIR-SjCTYI:N0PtLoMv-z8:dnMXMwOfBR0&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=dnMXMwOfBR0&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=9QIR-SjCTYI:N0PtLoMv-z8:qj6IDK7rITs&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=qj6IDK7rITs&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=9QIR-SjCTYI:N0PtLoMv-z8:yIl2AUoC8zA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=yIl2AUoC8zA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=9QIR-SjCTYI:N0PtLoMv-z8:63t7Ie-LG7Y&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=63t7Ie-LG7Y&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;
&amp;lt;/div&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/techspalace/~4/9QIR-SjCTYI&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/feedburner/PsXj/~4/_9ywEw9PDH4&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;</description>
	<pubDate>Tue, 01 Sep 2009 14:36:00 +0000</pubDate>
	<author>noreply@blogger.com (TechsPalace)</author>
</item>
<item>
	<title>Himanshu Chhetri (r11t): Simple Ruby web app (Hpricot + Sinatra + Heroku) to check domain name availability</title>
	<guid>http://nepcoder.com/2009/08/30/simple_ruby_web_app_hpricot_sinatra_heroku_to_check_domain_name_availability</guid>
	<link>http://feedproxy.google.com/~r/Nepcoder/~3/X7jk3og4vdk/simple_ruby_web_app_hpricot_sinatra_heroku_to_check_domain_name_availability.html</link>
	<description>&lt;h1&gt;Simple Ruby web app (Hpricot + Sinatra + Heroku) to check domain name availability&lt;/h1&gt;
&lt;p class=&quot;meta&quot;&gt;30 August 2009&lt;/p&gt;
&lt;p&gt;I built a &lt;a href=&quot;http://domchkr.heroku.com/ to&quot;&gt;simple web app&lt;/a&gt; check domain name availability built using the awesome things I have been experimenting with lately : Ruby, &lt;a href=&quot;http://www.sinatrarb.com&quot;&gt;Sinatra&lt;/a&gt;, &lt;a href=&quot;http://wiki.github.com/whymirror/hpricot&quot;&gt;Hpricot&lt;/a&gt; and deployed on &lt;a href=&quot;http://heroku.com&quot;&gt;Heroku&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;It all started with a quick and dirty Ruby script to check for domain name availability:&lt;br /&gt;
&lt;/p&gt;
&lt;p&gt;Converting it into a web app was very easy using Sinatra and deployment to the Ruby hosting service / platform at Heroku is conveniently done via Git. The web app resides on Heroku at : &lt;a href=&quot;http://domchkr.heroku.com&quot;&gt;http://domchkr.heroku.com&lt;/a&gt; The source code repository is &lt;a href=&quot;http://github.com/himanshuc/domchkr/tree&quot;&gt;available&lt;/a&gt; at Github.&lt;/p&gt;
&lt;img src=&quot;http://feeds.feedburner.com/~r/Nepcoder/~4/X7jk3og4vdk&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Sun, 30 Aug 2009 05:00:00 +0000</pubDate>
</item>
<item>
	<title>888: ManiaDrive - Car Game for Linux</title>
	<guid>tag:blogger.com,1999:blog-1241233588755403188.post-7216252635062820623</guid>
	<link>http://feedproxy.google.com/~r/feedburner/PsXj/~3/GiGZRWRd_pc/maniadrive-car-game-for-linux.html</link>
	<description>&amp;lt;p&amp;gt;&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/gZCdwpI2aRiRJ4akdz69-GdmJ8Q/0/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/gZCdwpI2aRiRJ4akdz69-GdmJ8Q/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;br/&amp;gt;
&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/gZCdwpI2aRiRJ4akdz69-GdmJ8Q/1/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/gZCdwpI2aRiRJ4akdz69-GdmJ8Q/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;div class=&quot;feedflare&quot;&amp;gt;
&amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=xE3gd2RBuBs:iJi5Y9Bt37o:V_sGLiPBpWU&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=xE3gd2RBuBs:iJi5Y9Bt37o:V_sGLiPBpWU&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=xE3gd2RBuBs:iJi5Y9Bt37o:7Q72WNTAKBA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=7Q72WNTAKBA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=xE3gd2RBuBs:iJi5Y9Bt37o:gIN9vFwOqvQ&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=xE3gd2RBuBs:iJi5Y9Bt37o:gIN9vFwOqvQ&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=xE3gd2RBuBs:iJi5Y9Bt37o:dnMXMwOfBR0&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=dnMXMwOfBR0&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=xE3gd2RBuBs:iJi5Y9Bt37o:qj6IDK7rITs&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=qj6IDK7rITs&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=xE3gd2RBuBs:iJi5Y9Bt37o:yIl2AUoC8zA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=yIl2AUoC8zA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=xE3gd2RBuBs:iJi5Y9Bt37o:63t7Ie-LG7Y&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=63t7Ie-LG7Y&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;
&amp;lt;/div&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/techspalace/~4/xE3gd2RBuBs&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/feedburner/PsXj/~4/GiGZRWRd_pc&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;</description>
	<pubDate>Sun, 23 Aug 2009 15:16:00 +0000</pubDate>
	<author>noreply@blogger.com (TechsPalace)</author>
</item>
<item>
	<title>Himanshu Chhetri (r11t): Hello world!</title>
	<guid>http://nepcoder.com/2009/08/18/hello_world</guid>
	<link>http://feedproxy.google.com/~r/Nepcoder/~3/bnuDTNX9iKE/hello_world.html</link>
	<description>&lt;h1&gt;Hello world!&lt;/h1&gt;
&lt;p class=&quot;meta&quot;&gt;18 August 2009&lt;/p&gt;
&lt;p&gt;Welcome to my blog which will serve as a means of sharing my thoughts mostly on technical subjects that I am interested in. Stay tuned for regular posts!&lt;/p&gt;
&lt;img src=&quot;http://feeds.feedburner.com/~r/Nepcoder/~4/bnuDTNX9iKE&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Tue, 18 Aug 2009 05:00:00 +0000</pubDate>
</item>
<item>
	<title>Bibek Paudel: Has the SRK detention story been overblown?</title>
	<guid>http://bibekpaudel.wordpress.com/2009/08/16/has-the-srk-detention-story-been-overblown/</guid>
	<link>http://bibekpaudel.wordpress.com/2009/08/16/has-the-srk-detention-story-been-overblown/</link>
	<description>&lt;br /&gt;&lt;p&gt;Recently, bollywood superstar ShahRukh Khan (SRK) &lt;a href=&quot;http://thelede.blogs.nytimes.com/2009/08/15/questioning-a-bollywood-vip-named-khan/&quot;&gt;was detained&lt;/a&gt; for a little over 1 hour (according to the US authorities, 2 hours according to Indian news sources) in an American airport when he was travelling to perform in a show. It has been attributed to his Muslim name and is said that the Indian government had to apply diplomatic measures to release him. A lot of furor has been created since and heated comments from SRK and his supporters have been coming.&lt;/p&gt;
&lt;p&gt;Profiling people based on their names, religion, country of origin, race etc is totally wrong. Worse is the unlawful detention, extra-judicial powers to law authorities, surveillance and the increasing attack on freedoms and civil liberties. This escalated after 9/11 and has been continuing unabated since. Many other countries have joined the league and freedom of people all over the world is being restricted day by day.&lt;/p&gt;
&lt;p&gt;SRK isn&amp;#8217;t an isolated case. On 15th August, &lt;a href=&quot;http://www.nypost.com/seven/08152009/news/regionalnews/dylans_a_complete_unknown_184665.htm&quot;&gt;a similar fate&lt;/a&gt; met Bob Dylan. Though SRK mighet be more popular than Hollywood actors, Dylan&amp;#8217;s personality and role in the rights-movement some decases ago and in the protest of Vietnam war are stuffs legends are made of. A few years ago, a famous singer Cat Stevens who is a Islam-convert was &lt;a href=&quot;http://www.usatoday.com/news/nation/2004-09-21-jet-diverted_x.htm&quot;&gt;deported after being denied entry&lt;/a&gt; to the US, also because of his Muslim name. Unlike SRK, he&amp;#8217;s one of &amp;#8220;them&amp;#8221;, the western world. Studies by civil liberty groups claim that more than 5% of the American population itself is kept on a possible terrorist-suspect list and are subjected to harrassment at airports. A foreign minister of Hugo Chavez was &amp;#8220;&lt;a href=&quot;http://www.alternet.org/rights/62407/&quot;&gt;threatened and shoved&lt;/a&gt;&amp;#8221; by airport officials, even after informing them of his identity. Even Nelson Mandela was (there have been reports that his name has since been removed) on a &lt;a href=&quot;http://www.aclu.org/privacy/spying/watchlistcounter.html&quot;&gt;terrorist watch list&lt;/a&gt; prepared by the FBI which contiues to grow longer and longer every day. Similarly, names of many American leaders and people are also there. Forget America, former Indian president Abdul Kalam was also frisked in April at an Indian airport.&amp;nbsp;  &amp;#8220;But I admired the calmness with which Abdul Kalam dealt with the issue himself and displayed so much humility. I expect Shah Rukh to do the same as I am sure he will. Only he can defuse the situation,&amp;#8221; &lt;a href=&quot;http://timesofindia.indiatimes.com/entertainment/bollywood/news-interviews/Obama-invite-SRK-for-beer-Shekhar/articleshow/4900821.cms&quot;&gt; Times of India&lt;/a&gt; quotes &lt;a href=&quot;http://bibekpaudel.wordpress.com/2009/08/16/has-the-srk-detention-story-been-overblown/&amp;quot;But I admired the calmness with which Abdul Kalam dealt with the issue himself and displayed so much humility. I expect Shah Rukh to do the same as I am sure he will. Only he can defuse the situation,&amp;quot; &quot;&gt;Shekhar Kapur&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;IndiaTimes blog has an entry that requests &lt;a href=&quot;http://blogs.timesofindia.indiatimes.com/onefortheroad/entry/don-t-make-a-big&quot;&gt;not to make a big deal&lt;/a&gt; over the SRK case. In my experience, South Asia in itself is a very racist place with the North-Indians in India and the residents of Kathmandu being the most frequent offenders I&amp;#8217;ve seen. Sometime ago, a &lt;a href=&quot;http://www.blogtantra.com/2007/09/26/rj-nitin-from-red-fm-935-discriminated-prashant-tamang-and-nepali-community/&quot;&gt;racist slur&lt;/a&gt; was made on an Indian Idol from North-Eastern India belonging to a Nepali-speaking community by a Mumbai FM RJ. In my observation, such behaviour is common, especially in the Indian capital, to North-Eastern Indians, Bhutanis and Nepalese of mongolian origin. Dinesh Wagle echoes my observations in a &lt;a href=&quot;http://www.ekantipur.com/columns.php?&amp;amp;nid=208748&quot;&gt;recent article&lt;/a&gt;. Kathmandu-residents are very intolerant of anybody from outside the valley and especially the Terai.&lt;/p&gt;
&lt;p&gt;In my opinion, racism in any form, any where is deplorable. Such activities remind of colonial days. It is a good thing that India has risen to the capacity of defending its citizens even at the world&amp;#8217;s sole superpower &amp;#8211; maybe this reckons of days when it will stop being the sole-superpower. However, the basic flaw is in the state of civil liberties worldwide. Unless this realisation dawns, getting emotional over SRK issue may be benefitial to his upcoming movie that is said to be based on similar issues, but it will make no significant change on the way things are. They were never different. Just because SRK is SRK, expecting them to change is only stupid. The issue has been overblown.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;The last two lines of the third paragraph were added on 17th Aug, 2234 (local time)&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;  &lt;a href=&quot;http://posterous.com&quot;&gt;Posted via web&lt;/a&gt;   from &lt;a href=&quot;http://bibek.posterous.com/has-the-srk-detention-story-been-overblown&quot;&gt;Instincts&lt;/a&gt;  &lt;/p&gt;
  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/bibekpaudel.wordpress.com/399/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/bibekpaudel.wordpress.com/399/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/bibekpaudel.wordpress.com/399/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/bibekpaudel.wordpress.com/399/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/bibekpaudel.wordpress.com/399/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/bibekpaudel.wordpress.com/399/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/bibekpaudel.wordpress.com/399/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/bibekpaudel.wordpress.com/399/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/bibekpaudel.wordpress.com/399/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/bibekpaudel.wordpress.com/399/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=bibekpaudel.wordpress.com&amp;amp;blog=4624062&amp;amp;post=399&amp;amp;subd=bibekpaudel&amp;amp;ref=&amp;amp;feed=1&quot; /&gt;</description>
	<pubDate>Mon, 17 Aug 2009 16:50:10 +0000</pubDate>
</item>
<item>
	<title>Bibek Shrestha: Converting .wav files to .mp3 files in Ubuntu 9.04</title>
	<guid>http://bibekshrestha.com.np/15 at http://bibekshrestha.com.np</guid>
	<link>http://bibekshrestha.com.np/blogs/post/2009/08/16/converting-wav-files-mp3-files-ubuntu-904</link>
	<description>&lt;p&gt;The process is a two step process:&lt;/p&gt;
&lt;p&gt;First,&lt;br /&gt;
Install the required packages&lt;br /&gt;
$ sudo apt-get install libavcodec-unstripped-52&lt;/p&gt;
&lt;p&gt;Second,&lt;br /&gt;
Use proper command line tools for the conversion&lt;br /&gt;
$ ffmpeg -i source.wav -acodec libmp3lame -ab 64k destination.mp3&lt;/p&gt;
&lt;p&gt;Now although it looks simple, I wasted two hours trying out different tools lame, mencoder, etc and wrong options with ffmpeg. Unnecessary bheja fry!&lt;/p&gt;
&lt;p&gt;Cheers&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://bibekshrestha.com.np/blogs/post/2009/08/16/converting-wav-files-mp3-files-ubuntu-904&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
	<pubDate>Sun, 16 Aug 2009 10:31:22 +0000</pubDate>
</item>
<item>
	<title>Bibek Paudel: Is a day job necessary for a startup owner?</title>
	<guid>http://bibekpaudel.wordpress.com/?p=400</guid>
	<link>http://bibekpaudel.wordpress.com/2009/08/16/is-a-day-job-necessary-for-a-startup-owner/</link>
	<description>&lt;br /&gt;&lt;p&gt;Whether or not to keep a day job while venturing out on a startup is a key question for many entrepreneurs. Startup owners, in my opinion, should find/keep a day-job until investors are found or the startup starts becoming expectedly profitable. Some good reads on the web:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt; &lt;a href=&quot;http://edulation.org/10-reasons-to-keep-your-day-job/&quot;&gt;10 Reasons to Keep Your Day Job&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;&lt;a title=&quot;Permanent Link to 20 Things Not to Do Before Starting A Business&quot; href=&quot;http://www.business-opportunities.biz/2007/04/11/20-things-not-to-do-before-starting-a-business/&quot;&gt; 20 Things Not to Do Before Starting A Busines &lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.entrepreneur.com/magazine/entrepreneursstartupsmagazine/2009/march/200604.html&quot;&gt;Entrepreneur &amp;#8211; You don&amp;#8217;t have to quit your day job&lt;/a&gt;&lt;/li&gt;
&lt;li&gt; &lt;a href=&quot;http://bestwebtutor.com/wordpress/?p=99?97431800&quot;&gt;Pearls or Wisdom &amp;#8211; You Dont Have to Quit Your Day Job&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.dangrossman.info/2007/01/25/entrepreneurs-go-to-college-and-get-a-job/&quot;&gt;Dan Grossman &amp;#8211; Go to college and get a job&lt;/a&gt;&lt;/li&gt;
&lt;li&gt; &lt;a title=&quot;Business Start-up Success&quot; rel=&quot;bookmark&quot; href=&quot;http://articlet.com/article2561.html&quot;&gt;Business Start-up Success&lt;/a&gt; &amp;#8211; launch your business on a part-time basis then go full-time when profits will sustain &lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://tracksuitceo.wordpress.com/2007/06/13/entrepreneurs-dont-quit-your-day-job/&quot;&gt;TrackSuit CEO &amp;#8211; Entrepreneurs:  Don&amp;rsquo;t Quit Your Day&amp;nbsp;Job&lt;/a&gt;&lt;/li&gt;
&lt;li&gt; &lt;a href=&quot;http://www.bankrate.com/brm/news/biz/soho/20021120a.asp&quot;&gt;To make your startup a success, keep                            your day job&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.moneyaside.com/don%E2%80%99t-ditch-your-day-job-at-business-startup&quot;&gt;MoneyAside &amp;#8211; Don&amp;rsquo;t Ditch your Day Job at Business Startup&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Tony Wright &amp;#8211; &lt;a title=&quot;Permanent Link to Half-assed Startup - How to Start your Company and Keep Your Day Job&quot; rel=&quot;bookmark&quot; href=&quot;http://www.tonywright.com/2008/half-assed-startup-how-to-start-your-company-and-keep-your-day-job/&quot;&gt;Half-assed Startup &amp;#8211; How to Start your Company and Keep Your Day Job&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Venture Hacks -&lt;a title=&quot;Permanent Link to Half-Assed Startup: Start your company and keep your day job&quot; rel=&quot;bookmark&quot; href=&quot;http://venturehacks.com/articles/half-assed&quot;&gt;Half-Assed Startup: Start your company and keep your day job&lt;/a&gt;&lt;/li&gt;
&lt;li&gt; &lt;a href=&quot;http://www.killerblog.com/ron-conway-thinks-you-should-keep-your-day-job/&quot;&gt;Ron Conway Thinks You Should Keep Your Day Job&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;&lt;span&gt;Stack Overflow &amp;#8211; &lt;/span&gt;&lt;span&gt;&lt;a class=&quot;question-hyperlink&quot; href=&quot;http://stackoverflow.com/questions/375263/when-should-you-leave-your-day-job-to-open-a-start-up&quot;&gt;When should you leave your day job to open a start-up?&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;&lt;a href=&quot;http://www.paulgraham.com/die.html&quot;&gt;Paul Graham &amp;#8211; How not to Die&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;&lt;a href=&quot;http://blog.guykawasaki.com/2006/03/nine_questions_.html&quot;&gt;Guy Kawasaki -Nine Questions to Ask a Startup&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;&lt;a href=&quot;http://www.successgalore.com/business-articles/5-why-do-most-new-start-up-businesses-go-bust-&quot;&gt;Why do most new start-up businesses go bust ?&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;BootStrapMe -&lt;a title=&quot;Don't keep your day job?&quot; href=&quot;http://www.bootstrapme.com/50226711/dont_keep_your_day_job.php&quot;&gt;Don&amp;#8217;t keep your day job?&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;GapingVoid &amp;#8211; &lt;a href=&quot;http://www.gapingvoid.com/Moveable_Type/archives/000932.html&quot;&gt;Ignore Everybody (keep your day job)&lt;/a&gt; , &lt;a href=&quot;http://www.gapingvoid.com/Moveable_Type/archives/000889.html&quot;&gt;The Sex and Cash Theory (keep your day job)&lt;/a&gt;&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/bibekpaudel.wordpress.com/400/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/bibekpaudel.wordpress.com/400/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/bibekpaudel.wordpress.com/400/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/bibekpaudel.wordpress.com/400/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/bibekpaudel.wordpress.com/400/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/bibekpaudel.wordpress.com/400/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/bibekpaudel.wordpress.com/400/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/bibekpaudel.wordpress.com/400/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/bibekpaudel.wordpress.com/400/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/bibekpaudel.wordpress.com/400/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=bibekpaudel.wordpress.com&amp;amp;blog=4624062&amp;amp;post=400&amp;amp;subd=bibekpaudel&amp;amp;ref=&amp;amp;feed=1&quot; /&gt;</description>
	<pubDate>Sun, 16 Aug 2009 07:12:33 +0000</pubDate>
</item>
<item>
	<title>Bibek Shrestha: RTFTR came second in OSCN Competition</title>
	<guid>http://bibekshrestha.com.np/14 at http://bibekshrestha.com.np</guid>
	<link>http://bibekshrestha.com.np/blogs/post/2009/08/09/rtftr-came-second-oscn-competition</link>
	<description>&lt;p&gt;After a year of work put into the project and lots of ups and downs during the development, &lt;a href=&quot;http://rtftr.sourceforge.net&quot;&gt;RTFTR&lt;/a&gt; has finally won second prize in the &lt;a href=&quot;http://collaborate.d2labs.org&quot;&gt;&quot;Open Source Competition Nepal&quot;&lt;/a&gt; organized jointly by D2HawkEye services and &lt;a href=&quot;http://www.ioe.edu.np&quot;&gt;Pulchowk Engineering Campus&lt;/a&gt;. &lt;/p&gt;
&lt;p&gt;The environment during the event was quite entertaining and exciting. Everyone in the d2provided TShirts were already hacking into their softwares for the final day demo. &lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://bibekshrestha.com.np/blogs/post/2009/08/09/rtftr-came-second-oscn-competition&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
	<pubDate>Sun, 09 Aug 2009 19:29:38 +0000</pubDate>
</item>
<item>
	<title>Bibek Shrestha: The patient people</title>
	<guid>http://bibekshrestha.com.np/13 at http://bibekshrestha.com.np</guid>
	<link>http://bibekshrestha.com.np/blogs/post/2009/08/06/patient-people</link>
	<description>&lt;p&gt;Some people have too much patience. I went to the doctor today. Having lost my Record Book with all past histories I was feeling guilty because we grown ups are supposed to be more careful about our stuffs. I went to the hospital, waited outside doctors room. Wasn't sure if the doctor will see me. The nurses couldn't put me in queue since I had no RecordBook.&lt;/p&gt;
&lt;p&gt;The doctor came out of his room hurriedly, he must have thought no more patients. Saw me, Oh ur still left.. humm come in and took me inside, got me a new Record Book, couple of questions regarding my history and everything is good.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://bibekshrestha.com.np/blogs/post/2009/08/06/patient-people&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
	<pubDate>Thu, 06 Aug 2009 14:49:01 +0000</pubDate>
</item>
<item>
	<title>888: Hide Menubar and StatusBar in Virtual Box</title>
	<guid>tag:blogger.com,1999:blog-1241233588755403188.post-889650401934076526</guid>
	<link>http://feedproxy.google.com/~r/feedburner/PsXj/~3/CRyN7AVLpZE/hide-menubar-and-statusbar-in-virtual.html</link>
	<description>&amp;lt;p&amp;gt;&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/5I5DajaaRIiI_B-nPit-wJKiBRc/0/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/5I5DajaaRIiI_B-nPit-wJKiBRc/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;br/&amp;gt;
&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/5I5DajaaRIiI_B-nPit-wJKiBRc/1/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/5I5DajaaRIiI_B-nPit-wJKiBRc/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;div class=&quot;feedflare&quot;&amp;gt;
&amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=_OqGU5Fw9Pc:MmSZXfSK9Po:V_sGLiPBpWU&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=_OqGU5Fw9Pc:MmSZXfSK9Po:V_sGLiPBpWU&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=_OqGU5Fw9Pc:MmSZXfSK9Po:7Q72WNTAKBA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=7Q72WNTAKBA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=_OqGU5Fw9Pc:MmSZXfSK9Po:gIN9vFwOqvQ&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=_OqGU5Fw9Pc:MmSZXfSK9Po:gIN9vFwOqvQ&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=_OqGU5Fw9Pc:MmSZXfSK9Po:dnMXMwOfBR0&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=dnMXMwOfBR0&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=_OqGU5Fw9Pc:MmSZXfSK9Po:qj6IDK7rITs&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=qj6IDK7rITs&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=_OqGU5Fw9Pc:MmSZXfSK9Po:yIl2AUoC8zA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=yIl2AUoC8zA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=_OqGU5Fw9Pc:MmSZXfSK9Po:63t7Ie-LG7Y&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=63t7Ie-LG7Y&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;
&amp;lt;/div&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/techspalace/~4/_OqGU5Fw9Pc&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/feedburner/PsXj/~4/CRyN7AVLpZE&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;</description>
	<pubDate>Mon, 27 Jul 2009 16:40:00 +0000</pubDate>
	<author>noreply@blogger.com (TechsPalace)</author>
</item>
<item>
	<title>888: scp with resume</title>
	<guid>tag:blogger.com,1999:blog-1241233588755403188.post-2119347835385049947</guid>
	<link>http://feedproxy.google.com/~r/feedburner/PsXj/~3/FGZ0YdtWTho/scp-with-resume.html</link>
	<description>&amp;lt;p&amp;gt;&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/aXX_29aB6Yb6QTkaPRqB6srqS6g/0/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/aXX_29aB6Yb6QTkaPRqB6srqS6g/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;br/&amp;gt;
&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/aXX_29aB6Yb6QTkaPRqB6srqS6g/1/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/aXX_29aB6Yb6QTkaPRqB6srqS6g/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;div class=&quot;feedflare&quot;&amp;gt;
&amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=rLtIhMQfJ9g:kDQu0f7uydY:V_sGLiPBpWU&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=rLtIhMQfJ9g:kDQu0f7uydY:V_sGLiPBpWU&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=rLtIhMQfJ9g:kDQu0f7uydY:7Q72WNTAKBA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=7Q72WNTAKBA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=rLtIhMQfJ9g:kDQu0f7uydY:gIN9vFwOqvQ&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=rLtIhMQfJ9g:kDQu0f7uydY:gIN9vFwOqvQ&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=rLtIhMQfJ9g:kDQu0f7uydY:dnMXMwOfBR0&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=dnMXMwOfBR0&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=rLtIhMQfJ9g:kDQu0f7uydY:qj6IDK7rITs&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=qj6IDK7rITs&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=rLtIhMQfJ9g:kDQu0f7uydY:yIl2AUoC8zA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=yIl2AUoC8zA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=rLtIhMQfJ9g:kDQu0f7uydY:63t7Ie-LG7Y&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=63t7Ie-LG7Y&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;
&amp;lt;/div&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/techspalace/~4/rLtIhMQfJ9g&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/feedburner/PsXj/~4/FGZ0YdtWTho&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;</description>
	<pubDate>Sun, 26 Jul 2009 16:03:00 +0000</pubDate>
	<author>noreply@blogger.com (TechsPalace)</author>
</item>
<item>
	<title>888: Nudge in Pidgin</title>
	<guid>tag:blogger.com,1999:blog-1241233588755403188.post-4403711694130039620</guid>
	<link>http://feedproxy.google.com/~r/feedburner/PsXj/~3/7gtpyGH2Td8/nudge-in-pidgin.html</link>
	<description>&amp;lt;p&amp;gt;&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/BH2R4fTzHSYdK5ANrWa8bxpp2QY/0/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/BH2R4fTzHSYdK5ANrWa8bxpp2QY/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;br/&amp;gt;
&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/BH2R4fTzHSYdK5ANrWa8bxpp2QY/1/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/BH2R4fTzHSYdK5ANrWa8bxpp2QY/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;div class=&quot;feedflare&quot;&amp;gt;
&amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=KkFUjukEQ9c:D-pFSIu4jes:V_sGLiPBpWU&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=KkFUjukEQ9c:D-pFSIu4jes:V_sGLiPBpWU&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=KkFUjukEQ9c:D-pFSIu4jes:7Q72WNTAKBA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=7Q72WNTAKBA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=KkFUjukEQ9c:D-pFSIu4jes:gIN9vFwOqvQ&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=KkFUjukEQ9c:D-pFSIu4jes:gIN9vFwOqvQ&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=KkFUjukEQ9c:D-pFSIu4jes:dnMXMwOfBR0&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=dnMXMwOfBR0&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=KkFUjukEQ9c:D-pFSIu4jes:qj6IDK7rITs&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=qj6IDK7rITs&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=KkFUjukEQ9c:D-pFSIu4jes:yIl2AUoC8zA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=yIl2AUoC8zA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=KkFUjukEQ9c:D-pFSIu4jes:63t7Ie-LG7Y&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=63t7Ie-LG7Y&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;
&amp;lt;/div&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/techspalace/~4/KkFUjukEQ9c&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/feedburner/PsXj/~4/7gtpyGH2Td8&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;</description>
	<pubDate>Sat, 25 Jul 2009 17:37:00 +0000</pubDate>
	<author>noreply@blogger.com (TechsPalace)</author>
</item>
<item>
	<title>888: Pidgin and Google Apps Email Account</title>
	<guid>tag:blogger.com,1999:blog-1241233588755403188.post-4122935294420510041</guid>
	<link>http://feedproxy.google.com/~r/feedburner/PsXj/~3/PN0W_6WpSAw/pidgin-and-google-apps-email-account.html</link>
	<description>&amp;lt;p&amp;gt;&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/kX8CrtBcFefKx-nOUozHIuu9UF0/0/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/kX8CrtBcFefKx-nOUozHIuu9UF0/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;br/&amp;gt;
&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/kX8CrtBcFefKx-nOUozHIuu9UF0/1/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/kX8CrtBcFefKx-nOUozHIuu9UF0/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;div class=&quot;feedflare&quot;&amp;gt;
&amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=ncMrtBm41HQ:0eJJyquCuCA:V_sGLiPBpWU&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=ncMrtBm41HQ:0eJJyquCuCA:V_sGLiPBpWU&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=ncMrtBm41HQ:0eJJyquCuCA:7Q72WNTAKBA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=7Q72WNTAKBA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=ncMrtBm41HQ:0eJJyquCuCA:gIN9vFwOqvQ&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=ncMrtBm41HQ:0eJJyquCuCA:gIN9vFwOqvQ&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=ncMrtBm41HQ:0eJJyquCuCA:dnMXMwOfBR0&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=dnMXMwOfBR0&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=ncMrtBm41HQ:0eJJyquCuCA:qj6IDK7rITs&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=qj6IDK7rITs&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=ncMrtBm41HQ:0eJJyquCuCA:yIl2AUoC8zA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=yIl2AUoC8zA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=ncMrtBm41HQ:0eJJyquCuCA:63t7Ie-LG7Y&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=63t7Ie-LG7Y&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;
&amp;lt;/div&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/techspalace/~4/ncMrtBm41HQ&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/feedburner/PsXj/~4/PN0W_6WpSAw&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;</description>
	<pubDate>Fri, 24 Jul 2009 16:48:00 +0000</pubDate>
	<author>noreply@blogger.com (TechsPalace)</author>
</item>
<item>
	<title>888: Pulseaudio Perfect Setup</title>
	<guid>tag:blogger.com,1999:blog-1241233588755403188.post-7254050947965520111</guid>
	<link>http://feedproxy.google.com/~r/feedburner/PsXj/~3/xhZmW8Tb55w/pulseaudio-perfect-setup.html</link>
	<description>&amp;lt;p&amp;gt;&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/PuANS_0f7Obu0Co4RurBFFdKbDM/0/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/PuANS_0f7Obu0Co4RurBFFdKbDM/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;br/&amp;gt;
&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/PuANS_0f7Obu0Co4RurBFFdKbDM/1/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/PuANS_0f7Obu0Co4RurBFFdKbDM/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;div class=&quot;feedflare&quot;&amp;gt;
&amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=lnTeAuGFulM:mI7p1zw6ueo:V_sGLiPBpWU&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=lnTeAuGFulM:mI7p1zw6ueo:V_sGLiPBpWU&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=lnTeAuGFulM:mI7p1zw6ueo:7Q72WNTAKBA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=7Q72WNTAKBA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=lnTeAuGFulM:mI7p1zw6ueo:gIN9vFwOqvQ&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=lnTeAuGFulM:mI7p1zw6ueo:gIN9vFwOqvQ&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=lnTeAuGFulM:mI7p1zw6ueo:dnMXMwOfBR0&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=dnMXMwOfBR0&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=lnTeAuGFulM:mI7p1zw6ueo:qj6IDK7rITs&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=qj6IDK7rITs&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=lnTeAuGFulM:mI7p1zw6ueo:yIl2AUoC8zA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=yIl2AUoC8zA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=lnTeAuGFulM:mI7p1zw6ueo:63t7Ie-LG7Y&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=63t7Ie-LG7Y&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;
&amp;lt;/div&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/techspalace/~4/lnTeAuGFulM&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/feedburner/PsXj/~4/xhZmW8Tb55w&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;</description>
	<pubDate>Thu, 23 Jul 2009 03:08:00 +0000</pubDate>
	<author>noreply@blogger.com (TechsPalace)</author>
</item>
<item>
	<title>888: vimtutor</title>
	<guid>tag:blogger.com,1999:blog-1241233588755403188.post-5375801345585273611</guid>
	<link>http://feedproxy.google.com/~r/feedburner/PsXj/~3/e5ORueVd8RI/vimtutor.html</link>
	<description>&amp;lt;p&amp;gt;&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/jqjFnn5rHpyIwjmjMmURcLTIqx4/0/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/jqjFnn5rHpyIwjmjMmURcLTIqx4/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;br/&amp;gt;
&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/jqjFnn5rHpyIwjmjMmURcLTIqx4/1/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/jqjFnn5rHpyIwjmjMmURcLTIqx4/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;div class=&quot;feedflare&quot;&amp;gt;
&amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=yow7fbrgbNk:b1dTrUAm8Yw:V_sGLiPBpWU&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=yow7fbrgbNk:b1dTrUAm8Yw:V_sGLiPBpWU&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=yow7fbrgbNk:b1dTrUAm8Yw:7Q72WNTAKBA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=7Q72WNTAKBA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=yow7fbrgbNk:b1dTrUAm8Yw:gIN9vFwOqvQ&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=yow7fbrgbNk:b1dTrUAm8Yw:gIN9vFwOqvQ&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=yow7fbrgbNk:b1dTrUAm8Yw:dnMXMwOfBR0&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=dnMXMwOfBR0&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=yow7fbrgbNk:b1dTrUAm8Yw:qj6IDK7rITs&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=qj6IDK7rITs&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=yow7fbrgbNk:b1dTrUAm8Yw:yIl2AUoC8zA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=yIl2AUoC8zA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=yow7fbrgbNk:b1dTrUAm8Yw:63t7Ie-LG7Y&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=63t7Ie-LG7Y&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;
&amp;lt;/div&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/techspalace/~4/yow7fbrgbNk&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/feedburner/PsXj/~4/e5ORueVd8RI&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;</description>
	<pubDate>Fri, 10 Jul 2009 15:21:00 +0000</pubDate>
	<author>noreply@blogger.com (TechsPalace)</author>
</item>
<item>
	<title>888: Animated Gif In Ubuntu</title>
	<guid>tag:blogger.com,1999:blog-1241233588755403188.post-732420288291047778</guid>
	<link>http://feedproxy.google.com/~r/feedburner/PsXj/~3/BCIj_8AGz8A/animated-gif-in-ubuntu.html</link>
	<description>&amp;lt;p&amp;gt;&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/v3WsrJiyhicvVvQNYGWqw1IPQ8Y/0/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/v3WsrJiyhicvVvQNYGWqw1IPQ8Y/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;br/&amp;gt;
&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/v3WsrJiyhicvVvQNYGWqw1IPQ8Y/1/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/v3WsrJiyhicvVvQNYGWqw1IPQ8Y/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;div class=&quot;feedflare&quot;&amp;gt;
&amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=RjUgh2Pjdxo:WBEyJE_CXoc:V_sGLiPBpWU&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=RjUgh2Pjdxo:WBEyJE_CXoc:V_sGLiPBpWU&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=RjUgh2Pjdxo:WBEyJE_CXoc:7Q72WNTAKBA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=7Q72WNTAKBA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=RjUgh2Pjdxo:WBEyJE_CXoc:gIN9vFwOqvQ&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=RjUgh2Pjdxo:WBEyJE_CXoc:gIN9vFwOqvQ&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=RjUgh2Pjdxo:WBEyJE_CXoc:dnMXMwOfBR0&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=dnMXMwOfBR0&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=RjUgh2Pjdxo:WBEyJE_CXoc:qj6IDK7rITs&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=qj6IDK7rITs&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=RjUgh2Pjdxo:WBEyJE_CXoc:yIl2AUoC8zA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=yIl2AUoC8zA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=RjUgh2Pjdxo:WBEyJE_CXoc:63t7Ie-LG7Y&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=63t7Ie-LG7Y&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;
&amp;lt;/div&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/techspalace/~4/RjUgh2Pjdxo&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/feedburner/PsXj/~4/BCIj_8AGz8A&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;</description>
	<pubDate>Mon, 29 Jun 2009 13:25:00 +0000</pubDate>
	<author>noreply@blogger.com (TechsPalace)</author>
</item>
<item>
	<title>888: Google Wave Check It Out</title>
	<guid>tag:blogger.com,1999:blog-1241233588755403188.post-1725856161529934158</guid>
	<link>http://feedproxy.google.com/~r/feedburner/PsXj/~3/C3Lf96dMZPY/google-wave-check-it-out.html</link>
	<description>&amp;lt;p&amp;gt;&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/LEZiwK0KAjk4JSvAQsEfoI9gDuU/0/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/LEZiwK0KAjk4JSvAQsEfoI9gDuU/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;br/&amp;gt;
&amp;lt;a href=&quot;http://feedads.g.doubleclick.net/~a/LEZiwK0KAjk4JSvAQsEfoI9gDuU/1/da&quot;&amp;gt;&amp;lt;img src=&quot;http://feedads.g.doubleclick.net/~a/LEZiwK0KAjk4JSvAQsEfoI9gDuU/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;div class=&quot;feedflare&quot;&amp;gt;
&amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=6Q9jrVFljmY:Lb7M1o6b8MM:V_sGLiPBpWU&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=6Q9jrVFljmY:Lb7M1o6b8MM:V_sGLiPBpWU&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=6Q9jrVFljmY:Lb7M1o6b8MM:7Q72WNTAKBA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=7Q72WNTAKBA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=6Q9jrVFljmY:Lb7M1o6b8MM:gIN9vFwOqvQ&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=6Q9jrVFljmY:Lb7M1o6b8MM:gIN9vFwOqvQ&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=6Q9jrVFljmY:Lb7M1o6b8MM:dnMXMwOfBR0&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=dnMXMwOfBR0&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=6Q9jrVFljmY:Lb7M1o6b8MM:qj6IDK7rITs&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=qj6IDK7rITs&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=6Q9jrVFljmY:Lb7M1o6b8MM:yIl2AUoC8zA&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=yIl2AUoC8zA&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=6Q9jrVFljmY:Lb7M1o6b8MM:63t7Ie-LG7Y&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=63t7Ie-LG7Y&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/img&amp;gt;&amp;lt;/a&amp;gt;
&amp;lt;/div&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/techspalace/~4/6Q9jrVFljmY&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/~r/feedburner/PsXj/~4/C3Lf96dMZPY&quot; height=&quot;1&quot; width=&quot;1&quot;/&amp;gt;</description>
	<pubDate>Fri, 26 Jun 2009 14:39:00 +0000</pubDate>
	<author>noreply@blogger.com (TechsPalace)</author>
</item>
<item>
	<title>888: Bash Quick-Reference, Great Shortcuts</title>
	<guid>tag:blogger.com,1999:blog-1241233588755403188.post-5878608512588390552</guid>
	<link>http://feedproxy.google.com/~r/feedburner/PsXj/~3/LCsshwrlrtM/bash-quick-reference-great-shortcuts.html</link>
	<description>&lt;p&gt;&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/7k0Pwf0E4bH6ps_Wr6E6xJhxXz4/0/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/7k0Pwf0E4bH6ps_Wr6E6xJhxXz4/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/7k0Pwf0E4bH6ps_Wr6E6xJhxXz4/1/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/7k0Pwf0E4bH6ps_Wr6E6xJhxXz4/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;/p&gt;C-n means control-n&lt;br /&gt;M-x means escape-x (few keyboards have a 'meta' key)&lt;br /&gt;&lt;br /&gt;&lt;span&gt;Finding a line in history:&lt;/span&gt;&lt;br /&gt;C—p Move to previous line in history&lt;br /&gt;C-n Mcve to next line in history&lt;br /&gt;C-r Reverse search&lt;br /&gt;&lt;br /&gt;&lt;span&gt;Moving in the current line:&lt;/span&gt;&lt;br /&gt;C-a Move to start of the current line&lt;br /&gt;C-e Move to end of the current line&lt;br /&gt;C-f Move forward (right) one character&lt;br /&gt;C-b Move backward (left) one character&lt;br /&gt;M-f Move forward one word&lt;br /&gt;M-b Move back one word&lt;br /&gt;&lt;br /&gt;&lt;span&gt;Editing the current line:&lt;/span&gt;&lt;br /&gt;del Delete the character under the cursor&lt;br /&gt;bs Delete the character to the left of the cursor&lt;br /&gt;C—k Kill the characters to the right of the cursor&lt;br /&gt;C-u Kill the characters to the left of the cursor&lt;br /&gt;M—d Delete the word to the right of the cursor&lt;br /&gt;M—bs Delete the word to the left of the cursor&lt;br /&gt;M-u Convert the next word to upper case&lt;br /&gt;M-l Convert the next word to lower case&lt;br /&gt;M—c Capitalize the first character of the next word&lt;br /&gt;C-vx Insert x literally, even if x is special&lt;br /&gt;&lt;br /&gt;&lt;span&gt;Kill ring and previous line:&lt;/span&gt;&lt;br /&gt;C-y Yank (paste) the last deleted characters&lt;br /&gt;M-y Immediately following Yank, remove yanked text and replace with previous deleted text&lt;br /&gt;M-. Paste the last word of the previous line&lt;br /&gt;C—o Execute the current line, then present the next line in the history&lt;br /&gt;&lt;div&gt;&lt;br /&gt;Redhat&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; src=&quot;https://blogger.googleusercontent.com/tracker/1241233588755403188-5878608512588390552?l=techspalace.blogspot.com&quot; /&gt;&lt;/div&gt;&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=8B7o8M3wKWI:dEmOoJqbAaA:V_sGLiPBpWU&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=8B7o8M3wKWI:dEmOoJqbAaA:V_sGLiPBpWU&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=8B7o8M3wKWI:dEmOoJqbAaA:7Q72WNTAKBA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=7Q72WNTAKBA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=8B7o8M3wKWI:dEmOoJqbAaA:gIN9vFwOqvQ&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=8B7o8M3wKWI:dEmOoJqbAaA:gIN9vFwOqvQ&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=8B7o8M3wKWI:dEmOoJqbAaA:dnMXMwOfBR0&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=dnMXMwOfBR0&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=8B7o8M3wKWI:dEmOoJqbAaA:qj6IDK7rITs&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=qj6IDK7rITs&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=8B7o8M3wKWI:dEmOoJqbAaA:yIl2AUoC8zA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=yIl2AUoC8zA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=8B7o8M3wKWI:dEmOoJqbAaA:63t7Ie-LG7Y&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=63t7Ie-LG7Y&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/techspalace/~4/8B7o8M3wKWI&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/feedburner/PsXj/~4/LCsshwrlrtM&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Fri, 26 Jun 2009 13:45:00 +0000</pubDate>
	<author>noreply@blogger.com (TechsPalace)</author>
</item>
<item>
	<title>888: Hide Channels From Whois In Freenode</title>
	<guid>tag:blogger.com,1999:blog-1241233588755403188.post-1005136290455746944</guid>
	<link>http://feedproxy.google.com/~r/feedburner/PsXj/~3/ksY7FiO_A7w/hide-channels-from-whois-in-freenode.html</link>
	<description>&lt;p&gt;&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/i8zDw0DbTZWOnH90vDSnUPFvzDc/0/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/i8zDw0DbTZWOnH90vDSnUPFvzDc/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/i8zDw0DbTZWOnH90vDSnUPFvzDc/1/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/i8zDw0DbTZWOnH90vDSnUPFvzDc/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;/p&gt;If you are a geek you must be hanging on lots of irc channels. I like to hide my details as much as possible. So I prefer to hide the other channels I've joined. To do so, the command you type is&lt;br /&gt;&lt;blockquote&gt;/quote mode user_name +i&lt;/blockquote&gt;Also you can get &lt;a href=&quot;http://freenode.net/faq.shtml#cloaks&quot;&gt;cloak&lt;/a&gt; to hide your IP.&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; src=&quot;https://blogger.googleusercontent.com/tracker/1241233588755403188-1005136290455746944?l=techspalace.blogspot.com&quot; /&gt;&lt;/div&gt;&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=uUcqMOp0u8c:OFWsjoAnw8k:V_sGLiPBpWU&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=uUcqMOp0u8c:OFWsjoAnw8k:V_sGLiPBpWU&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=uUcqMOp0u8c:OFWsjoAnw8k:7Q72WNTAKBA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=7Q72WNTAKBA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=uUcqMOp0u8c:OFWsjoAnw8k:gIN9vFwOqvQ&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=uUcqMOp0u8c:OFWsjoAnw8k:gIN9vFwOqvQ&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=uUcqMOp0u8c:OFWsjoAnw8k:dnMXMwOfBR0&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=dnMXMwOfBR0&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=uUcqMOp0u8c:OFWsjoAnw8k:qj6IDK7rITs&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=qj6IDK7rITs&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=uUcqMOp0u8c:OFWsjoAnw8k:yIl2AUoC8zA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=yIl2AUoC8zA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=uUcqMOp0u8c:OFWsjoAnw8k:63t7Ie-LG7Y&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=63t7Ie-LG7Y&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/techspalace/~4/uUcqMOp0u8c&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/feedburner/PsXj/~4/ksY7FiO_A7w&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Wed, 24 Jun 2009 14:55:00 +0000</pubDate>
	<author>noreply@blogger.com (TechsPalace)</author>
</item>
<item>
	<title>888: Run GNU Screen Directly</title>
	<guid>tag:blogger.com,1999:blog-1241233588755403188.post-3486148795305030235</guid>
	<link>http://feedproxy.google.com/~r/feedburner/PsXj/~3/9EQKXf0XC7o/run-gnu-screen-directly.html</link>
	<description>&lt;p&gt;&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/SicSA7tVLl7oSy-bUgwQrOEHyas/0/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/SicSA7tVLl7oSy-bUgwQrOEHyas/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/SicSA7tVLl7oSy-bUgwQrOEHyas/1/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/SicSA7tVLl7oSy-bUgwQrOEHyas/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;/p&gt;Whenever I have to start &lt;a href=&quot;http://www.gnu.org/software/screen/&quot;&gt;screen&lt;/a&gt;, I have to start a terminal and run screen manually. Now to run the screen automatically without first opening a terminal you can use the following command&lt;br /&gt;&lt;blockquote&gt;gnome-terminal -e screen&lt;/blockquote&gt;This opens screen in gnome-terminal directly.&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; src=&quot;https://blogger.googleusercontent.com/tracker/1241233588755403188-3486148795305030235?l=techspalace.blogspot.com&quot; /&gt;&lt;/div&gt;&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=0-eek0z_d9U:BYoioT5q7Q8:V_sGLiPBpWU&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=0-eek0z_d9U:BYoioT5q7Q8:V_sGLiPBpWU&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=0-eek0z_d9U:BYoioT5q7Q8:7Q72WNTAKBA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=7Q72WNTAKBA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=0-eek0z_d9U:BYoioT5q7Q8:gIN9vFwOqvQ&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=0-eek0z_d9U:BYoioT5q7Q8:gIN9vFwOqvQ&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=0-eek0z_d9U:BYoioT5q7Q8:dnMXMwOfBR0&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=dnMXMwOfBR0&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=0-eek0z_d9U:BYoioT5q7Q8:qj6IDK7rITs&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=qj6IDK7rITs&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=0-eek0z_d9U:BYoioT5q7Q8:yIl2AUoC8zA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=yIl2AUoC8zA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=0-eek0z_d9U:BYoioT5q7Q8:63t7Ie-LG7Y&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=63t7Ie-LG7Y&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/techspalace/~4/0-eek0z_d9U&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/feedburner/PsXj/~4/9EQKXf0XC7o&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Wed, 24 Jun 2009 14:41:00 +0000</pubDate>
	<author>noreply@blogger.com (TechsPalace)</author>
</item>
<item>
	<title>888: Simple And Powerful Command To Take Screenshots</title>
	<guid>tag:blogger.com,1999:blog-1241233588755403188.post-3943411448089698166</guid>
	<link>http://feedproxy.google.com/~r/feedburner/PsXj/~3/BDsOIrzu0mc/simple-and-powerful-command-to-take.html</link>
	<description>&lt;p&gt;&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/QcOfgBEpPZlYi8sSknzgetm6-SU/0/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/QcOfgBEpPZlYi8sSknzgetm6-SU/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/QcOfgBEpPZlYi8sSknzgetm6-SU/1/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/QcOfgBEpPZlYi8sSknzgetm6-SU/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;/p&gt;I often take screen shots. So I need a simple applications that loads fast, is easy to take screen shots, is powerful and saves file directly to the location I want. And the best thing I found is the command &lt;span&gt;import .&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;For example to take a screen shot I can simply press &lt;span&gt;ALT+F2&lt;/span&gt; and type&lt;br /&gt;&lt;blockquote&gt;import -frame /tmp/my_screenshot.png&lt;/blockquote&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; src=&quot;https://blogger.googleusercontent.com/tracker/1241233588755403188-3943411448089698166?l=techspalace.blogspot.com&quot; /&gt;&lt;/div&gt;&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=FuZSEaiFv9Y:GWS-ynUWVR8:V_sGLiPBpWU&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=FuZSEaiFv9Y:GWS-ynUWVR8:V_sGLiPBpWU&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=FuZSEaiFv9Y:GWS-ynUWVR8:7Q72WNTAKBA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=7Q72WNTAKBA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=FuZSEaiFv9Y:GWS-ynUWVR8:gIN9vFwOqvQ&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=FuZSEaiFv9Y:GWS-ynUWVR8:gIN9vFwOqvQ&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=FuZSEaiFv9Y:GWS-ynUWVR8:dnMXMwOfBR0&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=dnMXMwOfBR0&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=FuZSEaiFv9Y:GWS-ynUWVR8:qj6IDK7rITs&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=qj6IDK7rITs&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=FuZSEaiFv9Y:GWS-ynUWVR8:yIl2AUoC8zA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=yIl2AUoC8zA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=FuZSEaiFv9Y:GWS-ynUWVR8:63t7Ie-LG7Y&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=63t7Ie-LG7Y&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/techspalace/~4/FuZSEaiFv9Y&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/feedburner/PsXj/~4/BDsOIrzu0mc&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Sun, 21 Jun 2009 14:54:00 +0000</pubDate>
	<author>noreply@blogger.com (TechsPalace)</author>
</item>
<item>
	<title>888: Gateway Brightness problem solved</title>
	<guid>tag:blogger.com,1999:blog-1241233588755403188.post-1679377499786214001</guid>
	<link>http://feedproxy.google.com/~r/feedburner/PsXj/~3/B_4w8Yz0e1E/gateway-brightness-problem-solved.html</link>
	<description>&lt;p&gt;&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/NYP4E8heuPGTAz6aApoBKWsrV4w/0/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/NYP4E8heuPGTAz6aApoBKWsrV4w/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/NYP4E8heuPGTAz6aApoBKWsrV4w/1/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/NYP4E8heuPGTAz6aApoBKWsrV4w/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;/p&gt;I encountered a problem with Gateway laptop. The brightness level can't be changed neither from keyboard shortcut nor from gnome-power-manager.&lt;br /&gt;&lt;br /&gt;If you encounter the same problem, open terminal and type&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;blockquote&gt;&lt;span&gt;xrandr --output LVDS --set BACKLIGHT_CONTROL native&lt;/span&gt;&lt;/blockquote&gt;or&lt;br /&gt;&lt;blockquote&gt;&lt;span&gt;xrandr --output LVDS --set BACKLIGHT_CONTROL legacy&lt;/span&gt;&lt;/blockquote&gt;To make this fix permanent add the above line in your startup(From Menu, System, Preferences, Startup Applications).&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://3.bp.blogspot.com/_a6LMj16lz7g/Sj5FVQjdCwI/AAAAAAAAAQs/OlShEVsdwig/s1600-h/brightness_fixed_for_gateway_laptop_ubuntu_linux.png&quot;&gt;&lt;img src=&quot;http://3.bp.blogspot.com/_a6LMj16lz7g/Sj5FVQjdCwI/AAAAAAAAAQs/OlShEVsdwig/s320/brightness_fixed_for_gateway_laptop_ubuntu_linux.png&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5349789638885968642&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; src=&quot;https://blogger.googleusercontent.com/tracker/1241233588755403188-1679377499786214001?l=techspalace.blogspot.com&quot; /&gt;&lt;/div&gt;&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=e3qhCzKaBZQ:xJs09-SgqPU:V_sGLiPBpWU&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=e3qhCzKaBZQ:xJs09-SgqPU:V_sGLiPBpWU&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=e3qhCzKaBZQ:xJs09-SgqPU:7Q72WNTAKBA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=7Q72WNTAKBA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=e3qhCzKaBZQ:xJs09-SgqPU:gIN9vFwOqvQ&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?i=e3qhCzKaBZQ:xJs09-SgqPU:gIN9vFwOqvQ&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=e3qhCzKaBZQ:xJs09-SgqPU:dnMXMwOfBR0&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=dnMXMwOfBR0&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=e3qhCzKaBZQ:xJs09-SgqPU:qj6IDK7rITs&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=qj6IDK7rITs&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=e3qhCzKaBZQ:xJs09-SgqPU:yIl2AUoC8zA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=yIl2AUoC8zA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/techspalace?a=e3qhCzKaBZQ:xJs09-SgqPU:63t7Ie-LG7Y&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/techspalace?d=63t7Ie-LG7Y&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/techspalace/~4/e3qhCzKaBZQ&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/feedburner/PsXj/~4/B_4w8Yz0e1E&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Sun, 21 Jun 2009 14:12:00 +0000</pubDate>
	<author>noreply@blogger.com (TechsPalace)</author>
</item>
<item>
	<title>Bibek Shrestha: Choosing a senior year project.</title>
	<guid>http://bibekshrestha.com.np/12 at http://bibekshrestha.com.np</guid>
	<link>http://bibekshrestha.com.np/blogs/post/2009/06/17/choosing-senior-year-project</link>
	<description>&lt;p&gt;I've listed myself at Technorati. &lt;a href=&quot;http://technorati.com/claim/8n2fffdscd&quot; rel=&quot;me&quot;&gt;Technorati Profile&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;The senior-most year at our college, IOE (&lt;a href=&quot;http://www.ioe.edu.np&quot; title=&quot;http://www.ioe.edu.np&quot;&gt;http://www.ioe.edu.np&lt;/a&gt;) has a course that requires everyone to complete a Project. We call it Major Project, reason being the junior year has similar but small scale project thats called Minor Project. A lot of students I've seen are really confused as to what topic to choose to do their projects in. &lt;/p&gt;
&lt;p&gt;Now that I've completed my undergraduate and am working as a full time employee, let me share my experiences.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://bibekshrestha.com.np/blogs/post/2009/06/17/choosing-senior-year-project&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
	<pubDate>Wed, 17 Jun 2009 14:51:24 +0000</pubDate>
</item>

</channel>
</rss>
