<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Mithro rants about stuff</title>
	<atom:link href="http://blog.mithis.net/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.mithis.net</link>
	<description></description>
	<lastBuildDate>Fri, 13 Jan 2012 18:21:23 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>Comment on A typewriter that types colors! by Minolta typewriter &#124; Myspacelayoutworld</title>
		<link>http://blog.mithis.net/archives/jibberjabber/1066-a-typewriter-that-types-colors/comment-page-1#comment-7432</link>
		<dc:creator>Minolta typewriter &#124; Myspacelayoutworld</dc:creator>
		<pubDate>Fri, 13 Jan 2012 18:21:23 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mithis.net/archives/jibberjabber/1066-a-typewriter-that-types-colors#comment-7432</guid>
		<description>[...] Mithro rants about stuff : A typewriter that types colors!Dec 5, 2011 &#8230; 19-Jul-2005 17:34, KONICA MINOLTA DiMAGE E500, 2.8, 5.4mm, 0.201 &#8230; Tyree Callahan &#124; This is the Chromatic Typewriter, my entry to the&#8230; &#8230;   By admin in Uncategorized&#160;             You can follow any responses to this entry through the RSS 2.0 feed. Both comments and pings are currently closed. [...]</description>
		<content:encoded><![CDATA[<p>[...] Mithro rants about stuff : A typewriter that types colors!Dec 5, 2011 &#8230; 19-Jul-2005 17:34, KONICA MINOLTA DiMAGE E500, 2.8, 5.4mm, 0.201 &#8230; Tyree Callahan | This is the Chromatic Typewriter, my entry to the&#8230; &#8230;   By admin in Uncategorized&nbsp;             You can follow any responses to this entry through the RSS 2.0 feed. Both comments and pings are currently closed. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Network Manager &#8211; Autostart VPN by Mahavir</title>
		<link>http://blog.mithis.net/archives/ideas/51-nm-autovpn/comment-page-1#comment-7284</link>
		<dc:creator>Mahavir</dc:creator>
		<pubDate>Tue, 06 Dec 2011 21:16:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mithis.net/archives/ideas/51-nm-autovpn#comment-7284</guid>
		<description>For stock installation of Ubuntu 10.04 (Lucid Lynx) users, Network Manager version 0.8.0, so nmcli is not available and since there may be others like me who like to stick to the LTS, here is a solution.

Visit http://cgit.freedesktop.org/NetworkManager/NetworkManager/tree/examples/python?h=NM_0_8 and download list-connections.py.  Mark it as executable and run it to find the UUID of your VPN connection.

Also, download vpn.py from the same link. This script is written to connect to VPN over wifi only. So, if you want to connect to VPN over your wireless network then simply execute the script.

However, for wired a minor modification in vpn.py is required .  Below is the patch for the same.

*** vpn.py	2011-12-07 02:38:06.205855632 +0530
--- vpn1.py	2011-12-07 02:39:49.861855276 +0530
***************
*** 86,92 ****
      return None
  
  
! def get_wifi_device_path():
      bus = dbus.SystemBus()
      proxy = bus.get_object(&#039;org.freedesktop.NetworkManager&#039;, &#039;/org/freedesktop/NetworkManager&#039;)
      iface = dbus.Interface(proxy, dbus_interface=&#039;org.freedesktop.NetworkManager&#039;)
--- 86,92 ----
      return None
  
  
! def get_device_path(reqDevType):
      bus = dbus.SystemBus()
      proxy = bus.get_object(&#039;org.freedesktop.NetworkManager&#039;, &#039;/org/freedesktop/NetworkManager&#039;)
      iface = dbus.Interface(proxy, dbus_interface=&#039;org.freedesktop.NetworkManager&#039;)
***************
*** 95,101 ****
          proxy = bus.get_object(&#039;org.freedesktop.NetworkManager&#039;, d)
          iface = dbus.Interface(proxy, dbus_interface=&#039;org.freedesktop.DBus.Properties&#039;)
          devtype = iface.Get(&#039;org.freedesktop.NetworkManager.Device&#039;, &#039;DeviceType&#039;)
!         if devtype == 2:
              return d
      return None
  
--- 95,101 ----
          proxy = bus.get_object(&#039;org.freedesktop.NetworkManager&#039;, d)
          iface = dbus.Interface(proxy, dbus_interface=&#039;org.freedesktop.DBus.Properties&#039;)
          devtype = iface.Get(&#039;org.freedesktop.NetworkManager.Device&#039;, &#039;DeviceType&#039;)
!         if devtype == reqDevType:
              return d
      return None
  
***************
*** 135,143 ****
      print &quot;couldn&#039;t find the connection&quot;
      sys.exit(1)
  
! device_path = get_wifi_device_path()
  if not device_path:
!     print &quot;no wifi device found&quot;
      sys.exit(1)
  
  # Is it already activated?
--- 135,143 ----
      print &quot;couldn&#039;t find the connection&quot;
      sys.exit(1)
  
! device_path = get_device_path(1) #Pass 2 for wifi
  if not device_path:
!     print &quot;no wired device found&quot;
      sys.exit(1)
  
  # Is it already activated?</description>
		<content:encoded><![CDATA[<p>For stock installation of Ubuntu 10.04 (Lucid Lynx) users, Network Manager version 0.8.0, so nmcli is not available and since there may be others like me who like to stick to the LTS, here is a solution.</p>
<p>Visit <a href="http://cgit.freedesktop.org/NetworkManager/NetworkManager/tree/examples/python?h=NM_0_8" rel="nofollow">http://cgit.freedesktop.org/NetworkManager/NetworkManager/tree/examples/python?h=NM_0_8</a> and download list-connections.py.  Mark it as executable and run it to find the UUID of your VPN connection.</p>
<p>Also, download vpn.py from the same link. This script is written to connect to VPN over wifi only. So, if you want to connect to VPN over your wireless network then simply execute the script.</p>
<p>However, for wired a minor modification in vpn.py is required .  Below is the patch for the same.</p>
<p>*** vpn.py	2011-12-07 02:38:06.205855632 +0530<br />
&#8212; vpn1.py	2011-12-07 02:39:49.861855276 +0530<br />
***************<br />
*** 86,92 ****<br />
      return None</p>
<p>! def get_wifi_device_path():<br />
      bus = dbus.SystemBus()<br />
      proxy = bus.get_object(&#8216;org.freedesktop.NetworkManager&#8217;, &#8216;/org/freedesktop/NetworkManager&#8217;)<br />
      iface = dbus.Interface(proxy, dbus_interface=&#8217;org.freedesktop.NetworkManager&#8217;)<br />
&#8212; 86,92 &#8212;-<br />
      return None</p>
<p>! def get_device_path(reqDevType):<br />
      bus = dbus.SystemBus()<br />
      proxy = bus.get_object(&#8216;org.freedesktop.NetworkManager&#8217;, &#8216;/org/freedesktop/NetworkManager&#8217;)<br />
      iface = dbus.Interface(proxy, dbus_interface=&#8217;org.freedesktop.NetworkManager&#8217;)<br />
***************<br />
*** 95,101 ****<br />
          proxy = bus.get_object(&#8216;org.freedesktop.NetworkManager&#8217;, d)<br />
          iface = dbus.Interface(proxy, dbus_interface=&#8217;org.freedesktop.DBus.Properties&#8217;)<br />
          devtype = iface.Get(&#8216;org.freedesktop.NetworkManager.Device&#8217;, &#8216;DeviceType&#8217;)<br />
!         if devtype == 2:<br />
              return d<br />
      return None</p>
<p>&#8212; 95,101 &#8212;-<br />
          proxy = bus.get_object(&#8216;org.freedesktop.NetworkManager&#8217;, d)<br />
          iface = dbus.Interface(proxy, dbus_interface=&#8217;org.freedesktop.DBus.Properties&#8217;)<br />
          devtype = iface.Get(&#8216;org.freedesktop.NetworkManager.Device&#8217;, &#8216;DeviceType&#8217;)<br />
!         if devtype == reqDevType:<br />
              return d<br />
      return None</p>
<p>***************<br />
*** 135,143 ****<br />
      print &#8220;couldn&#8217;t find the connection&#8221;<br />
      sys.exit(1)</p>
<p>! device_path = get_wifi_device_path()<br />
  if not device_path:<br />
!     print &#8220;no wifi device found&#8221;<br />
      sys.exit(1)</p>
<p>  # Is it already activated?<br />
&#8212; 135,143 &#8212;-<br />
      print &#8220;couldn&#8217;t find the connection&#8221;<br />
      sys.exit(1)</p>
<p>! device_path = get_device_path(1) #Pass 2 for wifi<br />
  if not device_path:<br />
!     print &#8220;no wired device found&#8221;<br />
      sys.exit(1)</p>
<p>  # Is it already activated?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Pretty incredible short film by Patrick Elliott-Brennan</title>
		<link>http://blog.mithis.net/archives/jibberjabber/763-pretty-incredible-short-film-22/comment-page-1#comment-7347</link>
		<dc:creator>Patrick Elliott-Brennan</dc:creator>
		<pubDate>Mon, 05 Dec 2011 19:41:38 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mithis.net/archives/jibberjabber/763-pretty-incredible-short-film-22#comment-7347</guid>
		<description>I was thinking the same thing. I thought that was where it was going to go too.</description>
		<content:encoded><![CDATA[<p>I was thinking the same thing. I thought that was where it was going to go too.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Pretty incredible short film by mithro</title>
		<link>http://blog.mithis.net/archives/jibberjabber/763-pretty-incredible-short-film-22/comment-page-1#comment-7346</link>
		<dc:creator>mithro</dc:creator>
		<pubDate>Mon, 05 Dec 2011 19:38:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mithis.net/archives/jibberjabber/763-pretty-incredible-short-film-22#comment-7346</guid>
		<description>I like to believe the homeless guy is actually that boy travelling back in time to make little changes.</description>
		<content:encoded><![CDATA[<p>I like to believe the homeless guy is actually that boy travelling back in time to make little changes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Pretty incredible short film by mithro</title>
		<link>http://blog.mithis.net/archives/jibberjabber/763-pretty-incredible-short-film-22/comment-page-1#comment-7345</link>
		<dc:creator>mithro</dc:creator>
		<pubDate>Mon, 05 Dec 2011 19:37:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mithis.net/archives/jibberjabber/763-pretty-incredible-short-film-22#comment-7345</guid>
		<description>I didn&#039;t this is a &quot;reshare&quot;. The comments are from &quot;mel peifer&quot; and her pictures seem to indicate she is female; SO THERE!</description>
		<content:encoded><![CDATA[<p>I didn&#39;t this is a &quot;reshare&quot;. The comments are from &quot;mel peifer&quot; and her pictures seem to indicate she is female; SO THERE!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Pretty incredible short film by Patrick Elliott-Brennan</title>
		<link>http://blog.mithis.net/archives/jibberjabber/763-pretty-incredible-short-film-22/comment-page-1#comment-7344</link>
		<dc:creator>Patrick Elliott-Brennan</dc:creator>
		<pubDate>Mon, 05 Dec 2011 19:32:23 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mithis.net/archives/jibberjabber/763-pretty-incredible-short-film-22#comment-7344</guid>
		<description>You cried? You big baby. I just had water involuntarily emanate from some small canals by the sides of my eyes. No crying for me. I&#039;m a man!&lt;br /&gt;&lt;br /&gt;;)</description>
		<content:encoded><![CDATA[<p>You cried? You big baby. I just had water involuntarily emanate from some small canals by the sides of my eyes. No crying for me. I&#39;m a man!</p>
<p> <img src='http://blog.mithis.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Almost my complete board game collection by Susan Etheridge</title>
		<link>http://blog.mithis.net/archives/jibberjabber/1067-almost-my-complete-board-game-collection/comment-page-1#comment-7366</link>
		<dc:creator>Susan Etheridge</dc:creator>
		<pubDate>Sun, 27 Nov 2011 21:57:17 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mithis.net/archives/jibberjabber/1067-almost-my-complete-board-game-collection#comment-7366</guid>
		<description>Fair enough.</description>
		<content:encoded><![CDATA[<p>Fair enough.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Almost my complete board game collection by Susan Etheridge</title>
		<link>http://blog.mithis.net/archives/jibberjabber/1067-almost-my-complete-board-game-collection/comment-page-1#comment-7365</link>
		<dc:creator>Susan Etheridge</dc:creator>
		<pubDate>Sat, 26 Nov 2011 21:38:12 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mithis.net/archives/jibberjabber/1067-almost-my-complete-board-game-collection#comment-7365</guid>
		<description>Cool!</description>
		<content:encoded><![CDATA[<p>Cool!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Last meal in Korea i finally convinced them to give me Korean Barbeque. Smells good! by mithro</title>
		<link>http://blog.mithis.net/archives/jibberjabber/1074-last-meal-in-korea-i-finally-convinced-them-to-give-me-korean-barbeque-smells-good/comment-page-1#comment-7375</link>
		<dc:creator>mithro</dc:creator>
		<pubDate>Fri, 18 Nov 2011 17:00:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mithis.net/archives/jibberjabber/1074-last-meal-in-korea-i-finally-convinced-them-to-give-me-korean-barbeque-smells-good#comment-7375</guid>
		<description>Pork.</description>
		<content:encoded><![CDATA[<p>Pork.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Well I can now officially say I&#8217;ve been around the world! by Katie Bell</title>
		<link>http://blog.mithis.net/archives/jibberjabber/1068-well-i-can-now-officially-say-ive-been-around-the-world/comment-page-1#comment-7367</link>
		<dc:creator>Katie Bell</dc:creator>
		<pubDate>Fri, 18 Nov 2011 14:54:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mithis.net/archives/jibberjabber/1068-well-i-can-now-officially-say-ive-been-around-the-world#comment-7367</guid>
		<description>Yay!</description>
		<content:encoded><![CDATA[<p>Yay!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

