<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
>

<channel>
	<title>A Glimpse of GNU/Linux</title>
	<atom:link href="http://www.maxinbjohn.info/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.maxinbjohn.info</link>
	<description>cat /dev/urandom</description>
	<lastBuildDate>Tue, 08 Jan 2013 16:45:02 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<!-- podcast_generator="podPress/8.8" -->
		<copyright>&#xA9; </copyright>
		<managingEditor>maxin@maxinbjohn.info ()</managingEditor>
		<webMaster>maxin@maxinbjohn.info()</webMaster>
		<category></category>
		<itunes:keywords></itunes:keywords>
		<itunes:subtitle></itunes:subtitle>
		<itunes:summary>Life, Fun and Free Software</itunes:summary>
		<itunes:author></itunes:author>
		<itunes:category text="Society &amp; Culture"/>
		<itunes:owner>
			<itunes:name></itunes:name>
			<itunes:email>maxin@maxinbjohn.info</itunes:email>
		</itunes:owner>
		<itunes:block>No</itunes:block>
		<itunes:explicit>no</itunes:explicit>
		<itunes:image href="http://www.maxinbjohn.info/wp-content/plugins/podpress/images/powered_by_podpress_large.jpg" />
		<image>
			<url>http://www.maxinbjohn.info/wp-content/plugins/podpress/images/powered_by_podpress.jpg</url>
			<title>A Glimpse of GNU/Linux</title>
			<link>http://www.maxinbjohn.info</link>
			<width>144</width>
			<height>144</height>
		</image>
		<item>
		<title>A Web based User Interface for TellStick</title>
		<link>http://www.maxinbjohn.info/2013/01/08/a-web-based-user-interface-for-tellstick/</link>
		<comments>http://www.maxinbjohn.info/2013/01/08/a-web-based-user-interface-for-tellstick/#comments</comments>
		<pubDate>Tue, 08 Jan 2013 16:45:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.maxinbjohn.info/?p=3207440</guid>
		<description><![CDATA[&#160; &#160; &#160; &#160;]]></description>
				<content:encoded><![CDATA[<div class="wp-caption alignnone" style="width: 1290px"><img alt="" src="https://github.com/maxinbjohn/tellstickwebui/blob/master/snapshot.png?raw=true" width="1280" height="800" /><p class="wp-caption-text">tellstick web UI</p></div>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.maxinbjohn.info/2013/01/08/a-web-based-user-interface-for-tellstick/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux capabilities and latencytop</title>
		<link>http://www.maxinbjohn.info/2013/01/07/linux-capabilities-and-latencytop/</link>
		<comments>http://www.maxinbjohn.info/2013/01/07/linux-capabilities-and-latencytop/#comments</comments>
		<pubDate>Mon, 07 Jan 2013 15:39:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.maxinbjohn.info/?p=3207435</guid>
		<description><![CDATA[(learning from the failed attempt to mainline a patch to Yocto project) When executing latencytop as normal user, most probably you will get this error message: $ latencytop mount: only&#8230; ]]></description>
				<content:encoded><![CDATA[<p>(learning from the failed attempt to mainline a patch to Yocto project)</p>
<p>When executing latencytop as normal user, most probably you will get this error message:<br />
$ latencytop<br />
mount: only root can do that<br />
Please enable the CONFIG_LATENCYTOP configuration in your kernel.<br />
Exiting&#8230;</p>
<p>Easy and obvious solution is &#8220;sudo&#8221; &#8230; and you are good to go<br />
$ sudo latencytop</p>
<p>However, if you don&#8217;t want to type &#8220;sudo&#8221; everytime you want to use latencytop as a normal user, then the Linux Capability comes handy.<br />
# man 7 capability</p>
<p>To use this, first install the required utilities. In Ubuntu, it is called:<br />
libcap2-bin &#8211; basic utility programs for using capabilities<br />
# apt-get install libcap2-bin<br />
# sudo setcap cap_dac_override+ep /usr/sbin/latencytop</p>
<p>&#8221;<br />
Here, CAP_DAC_OVERRIDE means:  Bypass file read, write, and execute permission checks. (DAC is an abbreviation of &#8220;discretionary access control&#8221;.)<br />
e = Effective<br />
p =  Permitted<br />
&#8221;</p>
<p>$ latencytop<br />
Bingo .. you can use latencytop as normal user. No need to worry about sudo anymore. </p>
<p>Userful Links on Linux Capabilities :</p>
<p>http://linux.die.net/man/7/capabilities</p>
<p>http://www.linuxjournal.com/article/5737?page=0,0</p>
<p>http://www.linuxjournal.com/magazine/making-root-unprivileged</p>
<p>http://www.sevagas.com/?POSIX-file-capabilities-the-dark</p>
<p>http://www.friedhoff.org/posixfilecaps.html</p>
]]></content:encoded>
			<wfw:commentRss>http://www.maxinbjohn.info/2013/01/07/linux-capabilities-and-latencytop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick and Dirty Power Adapter hack</title>
		<link>http://www.maxinbjohn.info/2013/01/05/quick-and-dirty-power-adapter-hack/</link>
		<comments>http://www.maxinbjohn.info/2013/01/05/quick-and-dirty-power-adapter-hack/#comments</comments>
		<pubDate>Sun, 06 Jan 2013 01:43:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.maxinbjohn.info/?p=3207433</guid>
		<description><![CDATA[&#8220;Adapting to the new power socket&#8221; is one of the common problems that we face when we travel to a new country. Here, a &#8220;worked-around&#8221; for the laptop socket incompatibility&#8230; ]]></description>
				<content:encoded><![CDATA[<p>&#8220;Adapting to the new power socket&#8221; is one of the common problems that we face when we travel to a new country.</p>
<div class="wp-caption alignnone" style="width: 753px"><img alt="" src="https://lh6.googleusercontent.com/-L34UM_Ahzoo/TLRZMT1-RoI/AAAAAAAADPs/gvPH6yPyPhI/s743/DSCF0925.JPG" width="743" height="557" /><p class="wp-caption-text">Power Adapter hack</p></div>
<p>Here, a &#8220;worked-around&#8221; for the laptop socket incompatibility with some pieces of wire that I got from the common &#8220;bread&#8221; cover. Open contacts are dangerous.. Still, if you know what you are doing, just go ahead..</p>
]]></content:encoded>
			<wfw:commentRss>http://www.maxinbjohn.info/2013/01/05/quick-and-dirty-power-adapter-hack/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Home Automation in Linux</title>
		<link>http://www.maxinbjohn.info/2013/01/05/home-automation-in-linux/</link>
		<comments>http://www.maxinbjohn.info/2013/01/05/home-automation-in-linux/#comments</comments>
		<pubDate>Sun, 06 Jan 2013 00:31:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.maxinbjohn.info/?p=3207418</guid>
		<description><![CDATA[While walking through the Class Ohlson shop in Kista, I was looking for a USB DVB-T receiver to start tinker with OsmocomBB. Felt a bit sad to know that none&#8230; ]]></description>
				<content:encoded><![CDATA[<p>While walking through the Class Ohlson shop in Kista, I was looking for a USB DVB-T receiver to start tinker with OsmocomBB. Felt a bit sad to know that none of the USB DVB-T receivers available were based on RTL2832U .Since it was a requirement for the rtl-sdr, decided not to buy it.</p>
<p>On the way back, I saw a bunch of Remote controlled Mains socket sets. At a price range of less than 200 Swedish Krona, it was definitely approachable. After some search, picked a set of NEXA PE3 Mains adapters with a remote control for 179 SEK. A complete home automation system in Linux was one of my dreams for a long time.So, decided to go ahead and buy it.</p>
<p>Still, with this set, I will have to open up the remote and connect it to Arduino or some other board to control it from Linux. Since I wanted a system made out of &#8220;Off the shelf&#8221; components, decided to buy the Tellstick USB device which was available in the same section for 599 SEK.</p>
<p><a href="http://www.maxinbjohn.info/2013/01/05/home-automation-in-linux/20130105_181553/" rel="attachment wp-att-3207425"><img class="alignnone size-medium wp-image-3207425" alt="20130105_181553" src="http://www.maxinbjohn.info/wp-content/uploads/2013/01/20130105_181553.jpg" /></a></p>
<p>After reaching my room, connected the Reading Light, Main Light and the very old TV (with no remote) to the 3 Mains adapters and started pressing the remote&#8217;s button. To my surprise, nothing worked. So, switched on the laptop and started looking at the NEXA&#8217;s documentation:</p>
<p>http://www.nexa.se/res/pdf/PE3-manual_no-Mars-08.pdf</p>
<p>From the documentation, it was clear that, the Nexa Mains Sockets and the remote control needs a &#8220;Pairing&#8221; operation. Since each Mains Sockets are individually programmable, we can connect any button with any Sockets (no duplication).</p>
<p>USER GUIDE Model: PE3-1500<br />
SETTING THE CODE: learning function<br />
* Prior to normal operation, you must program the transmitter to the receiver.<br />
* Connection light receiver, contact the outlet<br />
* Indicator light on the receiver blinks slowly for 5 seconds.<br />
* Within 5 seconds after the light on the receiver flashes recorded transmitter near the receiver. Press the ON button on the specific channel (channel 1, 2, 3)<br />
* Recipient light stops flashing. The LED flashes twice to confirm that it has learned the code.</p>
<p>After the &#8220;pairing&#8221;, the remote began to function properly. It is alway better to connect the devices after this pairing process.</p>
<p><strong>Controlling NEXA PE3 remote switches using a Tellstick USB device in OpenSuse:</strong></p>
<p>One good thing about the NEXA PE3 was each Socket can be controlled with a maximum of 3 different sources. ie, I can use the existing remote control and my laptop with Tellstick to control the same Socket. One down-side is that the status of the Sockets reported by the program will not be very reliable as it uses a 433.92 MHz uni-directional signal to control the sockets.</p>
<p>The installation process starts here:<br />
Installation: http://developer.telldus.com/wiki/TellStickInstallationSource</p>
<p># zypper install libftdi1 libftdi1-devel libconfuse0 libconfuse-devel<br />
(I already had cmake in my OpenSuse 12.2)</p>
<p>Downloaded the latest Telldus-core :<br />
# wget http://download.telldus.se/TellStick/Software/telldus-core/telldus-core-2.1.1.tar.gz<br />
# tar zxvf telldus-core-2.1.1.tar.gz<br />
# cd telldus-core-2.1.1<br />
# cmake .</p>
<p>Modify the &#8216;cmake_install.cmake&#8217; to use &#8220;/usr&#8221; instead of &#8216;/usr/local&#8217;<br />
- SET(CMAKE_INSTALL_PREFIX &#8220;/usr/local&#8221;)<br />
+ SET(CMAKE_INSTALL_PREFIX &#8220;/usr&#8221;)</p>
<p># make<br />
# sudo make install</p>
<p>From the NEXA documentation, we can see that the socket is &#8220;selflearning-switch&#8221;. So, my configuration for NEXA PE3 for is like this:<br />
<script src="https://gist.github.com/4464256.js"></script></p>
<p>After connecting the TellStick to Laptop&#8217;s USB, start the Telldus daemon:<br />
( We can make it start automatically by writing an init script wrapper)<br />
# telldusd &#8211;nodaemon</p>
<p>Now, take each Power Sockets and &#8220;pair&#8221; it with TellStick using this command:<br />
# tdtool &#8211;learn 1<br />
(for the Main Light in this socket)<br />
# tdtool &#8211;learn 2<br />
(for the TV)<br />
# tdtool &#8211;learn 3<br />
(for reading light)</p>
<p>After connecting the devices, list all of them using the command:<br />
# tdtool &#8211;list<br />
Number of devices: 3<br />
1 Main Light OFF<br />
2 TV OFF<br />
3 Reading Light OFF</p>
<p>Now, the fun begins&#8230; Control each device using the command:</p>
<p># tdtool &#8211;on 1<br />
# tdtool &#8211;off 1</p>
<p>(switches the Main light on and off)</p>
<p>If you are interested in GUI program to control devices, Telldus provides a QT based program:</p>
<p>http://download.telldus.se/TellStick/Software/telldus-gui/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.maxinbjohn.info/2013/01/05/home-automation-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Anatomy of Cheating : Finland</title>
		<link>http://www.maxinbjohn.info/2013/01/03/the-anatomy-of-cheating-finland/</link>
		<comments>http://www.maxinbjohn.info/2013/01/03/the-anatomy-of-cheating-finland/#comments</comments>
		<pubDate>Thu, 03 Jan 2013 14:10:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.maxinbjohn.info/?p=3207415</guid>
		<description><![CDATA[It may sound offensive.. however, Finland is also not free from people who are &#8220;willing&#8221; to cheat you. As far as I can tell, you can blindly believe 99% percentage&#8230; ]]></description>
				<content:encoded><![CDATA[<p>It may sound offensive.. however, Finland is also not free from people who are &#8220;willing&#8221; to cheat you. As far as I can tell, you can blindly believe 99% percentage of the Finns. They are warm, pleasant and above all &#8211; silent. </p>
<p>Warning : This is &#8220;not&#8221; a work of fiction. Names, characters, places and incidents either are &#8220;not&#8221; products of the author’s imagination or &#8220;not&#8221; used fictitiously. Any resemblance to actual events or locales or persons, living or dead, is entirely real.</p>
<p>One fine summer day, my friend was walking towards the Central Railway Station in Helsinki. One Finnish teenager requested him for some help &#8212; &#8220;See, my mobile phone stopped working. Can you please give me your mobile for a minute ? I just want to call my relatives&#8221;   </p>
<p>That friend never had a bad experience from the local people and he immediately handed over his mobile to that teenager. He politely took the phone, made a call and returned the phone almost immediately. He didn&#8217;t understood what the teenager did till he got the phone bill which was marginally higher than the regular one. From the bill, he came to know that the teenager has misused his phone to order Pizzas and the bill was charged to his mobile phone bill.</p>
<p>After some research, he found this link:</p>
<p>http://www.uphill.fi/?id=news&#038;uutis_id=00013</p>
<p>&#8221;<br />
The service is available to all customers, who have not blocked calls to special payment services. The service is charged on the caller’s phone bill regardless of the user’s operator.</p>
<p>In practice, the customer calls a restaurant-specific, special payment phone number (a 0600 number), after which the restaurant immediately receives a notification of payment. The order has been made and paid! Also home delivery orders can be paid using a mobile phone. After receiving an order, a restaurant employee calls the customer to confirm the order, ask for the delivery address, and the desired pizza toppings. The advantage of mobile payment is speeding up service. The call itself is made easy for the customer, as the customer’s order reaches the restaurant directly after calling the given mobile payment number, and the pizza is paid for before delivery.<br />
&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.maxinbjohn.info/2013/01/03/the-anatomy-of-cheating-finland/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>To disable the USB mouse or keyboard in Linux</title>
		<link>http://www.maxinbjohn.info/2013/01/02/to-disable-the-usb-mouse-or-keyboard-in-the-linux-pc/</link>
		<comments>http://www.maxinbjohn.info/2013/01/02/to-disable-the-usb-mouse-or-keyboard-in-the-linux-pc/#comments</comments>
		<pubDate>Wed, 02 Jan 2013 23:43:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.maxinbjohn.info/?p=3207413</guid>
		<description><![CDATA[This was the result of an IRC discussion in #kernel channel]]></description>
				<content:encoded><![CDATA[<p>This was the result of an IRC discussion in #kernel channel</p>
<script src="https://gist.github.com/4435820.js"></script>
]]></content:encoded>
			<wfw:commentRss>http://www.maxinbjohn.info/2013/01/02/to-disable-the-usb-mouse-or-keyboard-in-the-linux-pc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Solar Energy.. Is that practical ?</title>
		<link>http://www.maxinbjohn.info/2012/11/20/solar-energy-is-that-practical/</link>
		<comments>http://www.maxinbjohn.info/2012/11/20/solar-energy-is-that-practical/#comments</comments>
		<pubDate>Tue, 20 Nov 2012 21:30:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.maxinbjohn.info/?p=3207404</guid>
		<description><![CDATA[&#8220;What to buy this time?&#8221; &#8211; One of the toughest decisions to make after booking tickets to Kerala. 1 month ago, in Helsinki, my mind was asking the same question&#8230; ]]></description>
				<content:encoded><![CDATA[<p>&#8220;What to buy this time?&#8221; &#8211; One of the toughest decisions to make after booking tickets to Kerala. 1 month ago, in Helsinki, my mind was asking the same question while wandering in the biggest electronic shop in that city &#8211; Verkkokauppa. </p>
<p>My parents wont be interested in fancy smart-phones. They generally like the simple &#8220;for the purpose&#8221; devices like Nokia 1100. Mother wasn&#8217;t that happy with what I gifted her last time &#8211; a Robotic vacuum cleaner from Samsung. &#8220;It won&#8217;t clean the corners&#8221;, she complains. </p>
<p>So, what should be the &#8220;gift of the trip&#8221; this time.. I was thinking about it and moved to the second floor. Solar lamps section at the end of the second floor amused me.. My naturally sarcastic mind said &#8211;</p>
<p>Hmm.. what will these guys in Helsinki do to charge these Solar lamps during this shorter and darker winter days ? These lights must be pretty much a waste of money for them&#8230; </p>
<p>Oh, wait, the rational mind said.. what if I try these Solar lights at my house.. Kerala is a sharp contrast to Helsinki. Generally sunny, warm with longer day time &#8211; ideal for Solar lights. So, without much thinking, I bought 4 pairs of Solar Garden lights and a Solar security light for 48 Euro (Rs. 3000 &#8211; It is the subsidized price, I believe)</p>
<p>After reaching Home, I happily installed the Solar Garden lights in the &#8220;upcoming&#8221; garden and Solar security light just in front of the gate. The LEDs in the Solar Garden lights were automatically switched on when the circuit in it detected darkness around 6.45 PM. The LED lights kept on working upto 10.00 PM. The Solar Security light had a bigger Solar cell and it lasted the whole night as it automatically got switched on and off whenever it detects movement in the nearby area. </p>
<p>During the return trip, I was happy about the decision as the lights were working almost 4 hours (with 800 mAh AA battery) continuously after an average sunny-day&#8217;s charging. It lasted for 8 hours when I installed a 1200 mAh AA battery in one of the Solar garden lights. </p>
<p>Parents were happy about it as this was the first time I bought something that didn&#8217;t result an increase  in the Electricity bill <img src='http://www.maxinbjohn.info/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.maxinbjohn.info/2012/11/20/solar-energy-is-that-practical/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>My view on Nuclear Energy</title>
		<link>http://www.maxinbjohn.info/2012/09/11/my-view-on-nuclear-energy/</link>
		<comments>http://www.maxinbjohn.info/2012/09/11/my-view-on-nuclear-energy/#comments</comments>
		<pubDate>Tue, 11 Sep 2012 08:22:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.maxinbjohn.info/?p=3207393</guid>
		<description><![CDATA[In one of those busy lunch times in Nokia House, I happen to look at an interesting notice. It was about an exhibition by the Nokia Product Security team. The&#8230; ]]></description>
				<content:encoded><![CDATA[<p>In one of those busy lunch times in Nokia House, I happen to look at an interesting notice. It was about an exhibition by the Nokia Product Security team. The line which caught my interest was &#8220;Come and see how we handle the Fukushima Daiichi nuclear disaster&#8221;.</p>
<p>This aroused my curiosity. I was aware that Nokia exited the Japanese market even before this incident. Then what we should do to handle that nuclear disaster in Japan? After the lunch, I visited the exhibition and asked the same question to a guy standing there. </p>
<p>&#8220;Well&#8221;,he started, clearing his throat. Though we don&#8217;t market any of our products in Japan, some of the vendors of electronics parts are from Japan. Because of the nuclear disaster, most of the electronic parts from that region of the Japan &#8220;may&#8221; be contaminated by the nuclear radiation. This may cause troubles to our customers who comes in contact with those phones with those parts which are contaminated by the nuclear radiation. In order to avoid that scenario, we request the vendors from Japan to check for Radiation problems from their site and we double-check it once the parts arrives from that location and ensure that our customers are safe from the related problems.</p>
<p>I thanked that guy and moved to my place. To be frank, I wasn&#8217;t aware of this kind of scenario. A disaster which can badly affect virtually every humans and all types of industries in that region. It might affect the guys who are living in another continent if the Corporations aren&#8217;t aware of what they are doing. I must admit, in this case, I respect Nokia for their care to their customers.</p>
<p>Coming back to the subject, I respect Japanese Government&#8217;s decision to &#8216;switching off&#8217; final nuclear reactor. Similarly, protests are going on against Kudankulam Atomic Power Project, Tamil Nadu in India. I wish them success and ending this with the words of Nikola Tesla:</p>
<p>&#8220;The idea of atomic energy is illusionary but it has taken so powerful a hold on the minds, that although I have preached against it for twenty-five years, there are still some who believe it to be realizable &#8221; &#8211; in a peaceful way.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.maxinbjohn.info/2012/09/11/my-view-on-nuclear-energy/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Playing with Maplin USB Robotic Arm</title>
		<link>http://www.maxinbjohn.info/2012/08/27/playing-with-maplin-usb-robotic-arm/</link>
		<comments>http://www.maxinbjohn.info/2012/08/27/playing-with-maplin-usb-robotic-arm/#comments</comments>
		<pubDate>Mon, 27 Aug 2012 20:19:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.maxinbjohn.info/?p=3207382</guid>
		<description><![CDATA[It is quite easy to get bored in Helsinki, specially when your friends are busy and nothing much to do at home (Not even cooking !). There are a couple&#8230; ]]></description>
				<content:encoded><![CDATA[<p>It is quite easy to get bored in Helsinki, specially when your friends are busy and nothing much to do at home (Not even cooking !). There are a couple of interesting places to visit in Helsinki when you get bored.</p>
<p>1. Helmet : Helsinki Metro Library : <a href="http://www.helmet.fi/en-US">http://www.helmet.fi/en-US</a><br />
2. Tennis Palace (name of a Movie Theater, basically to watch movies)</p>
<p>4. Small and beautiful Beaches</p>
<p>5. verkkokauppa : The Biggest Electronics store in Europe (they claim so.. ) : <a href="http://www.verkkokauppa.com/">http://www.verkkokauppa.com/</a></p>
<p>6. Cycling through the beautiful islands in Helsinki and Espoo.</p>
<p>7. Hietaniemi Cemetery (Walking through the Lake side is a refreshing experience)  <a href="http://en.wikipedia.org/wiki/Hietaniemi_cemetery">http://en.wikipedia.org/wiki/Hietaniemi_cemetery</a></p>
<p>Last weekend, decided to visit Verkkokauppa to buy some basic cables to setup my personal &#8220;Lab at Home&#8221;. There I found some interesting things like Mini Weather Station and  Maplin USB Robotic Arm. To follow my desire to play with some USB stuff, I bought the USB Robotic Arm. The Software CD that shipped with the H/W was only for Windows and  all I wanted was to make it work with Linux.  After  google search, I landed in this page which had some great information related to the Reverse Engineering details of Robotic Arm&#8217;s Protocol :</p>
<pre><a href="http://notbrainsurgery.livejournal.com/38622.html">http://notbrainsurgery.livejournal.com/38622.html</a></pre>
<p>After some hours of writing &#8211; testing &#8211; rebooting cycle, the driver for the USB Robotic arm was ready and I pushed that to Github:<br />
<a href="https://github.com/maxinbjohn/robotic_arm_driver">https://github.com/maxinbjohn/robotic_arm_driver</a></p>
<p>That followed  a simple Python program to control the USB Robotic Arm using the driver:</p>
<p><a href="https://github.com/maxinbjohn/robotic_arm_driver/blob/master/examples/python/motor.py">https://github.com/maxinbjohn/robotic_arm_driver/blob/master/examples/python/motor.py</a></p>
<p>Finally uploaded the video of controlling  Maplin USB ARM from Linux.</p>
<p>Youtube link:  <a href="http://www.youtube.com/watch?v=UjQgqJIH82Q">http://www.youtube.com/watch?v=UjQgqJIH82Q</a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.maxinbjohn.info/2012/08/27/playing-with-maplin-usb-robotic-arm/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Funny e-mails in professional life .. Part 2</title>
		<link>http://www.maxinbjohn.info/2012/07/10/funny-e-mails-in-professional-life-part-2/</link>
		<comments>http://www.maxinbjohn.info/2012/07/10/funny-e-mails-in-professional-life-part-2/#comments</comments>
		<pubDate>Tue, 10 Jul 2012 12:59:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.maxinbjohn.info/?p=3207376</guid>
		<description><![CDATA[Background information:  Just like any other person, I like to correct the bugs in mails, specially some incorrect information related to my country, India. Once I happened to see a&#8230; ]]></description>
				<content:encoded><![CDATA[<p>Background information:  Just like any other person, I like to correct the bugs in mails, specially some incorrect information related to my country, India. Once I happened to see a bug in a mail circulated by a top management guy:</p>
<p>Subject: Re: &#8212; Ecosystem &#8212;&#8211;</p>
<blockquote>
<pre>&gt;The Indian market is fascinating and complex.  While it's easy to think 
&gt;of the country as a single market, it is in fact 22 separate states,</pre>
</blockquote>
<pre>Here, I would like to point out that, "India is a federation composed of
28 states and 7 union territories".

<a href="http://en.wikipedia.org/wiki/India">http://en.wikipedia.org/wiki/India</a>

India is really "complex" - I know it, because I am from India <img src='http://www.maxinbjohn.info/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> 

Best Regards,
Maxin B. John

-----

The reply from that guy was so funny that I laughed and virtually fell from my chair.. It was just 9 words :

 Subject: Re: Re: --- Ecosystem -----</pre>
<pre>Thanks...I got the info from the Gurgaon team <img src='http://www.maxinbjohn.info/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </pre>
<pre></pre>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.maxinbjohn.info/2012/07/10/funny-e-mails-in-professional-life-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
