<?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"
	>
<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>
	<pubDate>Fri, 21 Nov 2008 22:16:33 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>Comment on Network Manager - Autostart VPN by sam</title>
		<link>http://blog.mithis.net/archives/ideas/51-nm-autovpn#comment-7153</link>
		<dc:creator>sam</dc:creator>
		<pubDate>Tue, 11 Nov 2008 23:07:44 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mithis.net/archives/ideas/51-nm-autovpn#comment-7153</guid>
		<description>Not really hard:

http://www.linuxquestions.org/questions/linux-networking-3/openvpn-client-682343/</description>
		<content:encoded><![CDATA[<p>Not really hard:</p>
<p><a href="http://www.linuxquestions.org/questions/linux-networking-3/openvpn-client-682343/" rel="nofollow">http://www.linuxquestions.org/questions/linux-networking-3/openvpn-client-682343/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on My three weeks on a Mac by Pierre Phaneuf</title>
		<link>http://blog.mithis.net/archives/ubuntu/84-my-three-weeks-on-a-mac#comment-7150</link>
		<dc:creator>Pierre Phaneuf</dc:creator>
		<pubDate>Thu, 16 Oct 2008 19:35:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mithis.net/?p=84#comment-7150</guid>
		<description>The sluggishness of the password box is a Google thing. I also occasionally have to switch to a console and kill off the screen saver dialog box on my Linux workstation, because it goes completely dead on occasion. My Google laptop tends to "beachball" a lot more than my other Mac, so while I don't really know what's up, there's definitely something fishy.

The trash is also idiotic in other ways, like when you empty it, but it tells you a file is in use. Just unlink the damned thing and forget about it, will you?

Weirdly enough, a lot of Unix/Linux hackers are annoyed by the way applications are a first-class entity, rather than windows, but I like the Mac way better. I thought of hacking my window manager to simulate that based on the WM_CLASS property more than once, but I tend to be okay. When I use a Linux box, I often end up using workspaces in that way.</description>
		<content:encoded><![CDATA[<p>The sluggishness of the password box is a Google thing. I also occasionally have to switch to a console and kill off the screen saver dialog box on my Linux workstation, because it goes completely dead on occasion. My Google laptop tends to &#8220;beachball&#8221; a lot more than my other Mac, so while I don&#8217;t really know what&#8217;s up, there&#8217;s definitely something fishy.</p>
<p>The trash is also idiotic in other ways, like when you empty it, but it tells you a file is in use. Just unlink the damned thing and forget about it, will you?</p>
<p>Weirdly enough, a lot of Unix/Linux hackers are annoyed by the way applications are a first-class entity, rather than windows, but I like the Mac way better. I thought of hacking my window manager to simulate that based on the WM_CLASS property more than once, but I tend to be okay. When I use a Linux box, I often end up using workspaces in that way.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Network Manager - Autostart VPN by Cougar</title>
		<link>http://blog.mithis.net/archives/ideas/51-nm-autovpn#comment-7147</link>
		<dc:creator>Cougar</dc:creator>
		<pubDate>Tue, 26 Aug 2008 21:37:58 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mithis.net/archives/ideas/51-nm-autovpn#comment-7147</guid>
		<description>I couldn't get nm-startvpn running under opensuse 11.0. It gives me error:

Traceback (most recent call last):
  File "/usr/local/bin/nm-startvpn", line 29, in 
    print interface.getVPNConnections()
  File "/usr/lib/python2.5/site-packages/dbus/proxies.py", line 68, in __call__
    return self._proxy_method(*args, **keywords)
  File "/usr/lib/python2.5/site-packages/dbus/proxies.py", line 140, in __call__
    **keywords)
  File "/usr/lib/python2.5/site-packages/dbus/connection.py", line 607, in call_blocking
    message, timeout)
dbus.exceptions.DBusException: org.freedesktop.DBus.Error.UnknownMethod: Method "getVPNConnections" with signature "" on interface "org.freedesktop.NetworkManager.VPNConnections" doesn't exist

However, I changed 02runcmd so that is just starts/stops openvpn and this works fine

#! /bin/sh

case "$2" in 
        up)
                /usr/sbin/rcopenvpn start
                ;;
        down)
                /usr/sbin/rcopenvpn stop
                ;;
esac

exit 0</description>
		<content:encoded><![CDATA[<p>I couldn&#8217;t get nm-startvpn running under opensuse 11.0. It gives me error:</p>
<p>Traceback (most recent call last):<br />
  File &#8220;/usr/local/bin/nm-startvpn&#8221;, line 29, in<br />
    print interface.getVPNConnections()<br />
  File &#8220;/usr/lib/python2.5/site-packages/dbus/proxies.py&#8221;, line 68, in __call__<br />
    return self._proxy_method(*args, **keywords)<br />
  File &#8220;/usr/lib/python2.5/site-packages/dbus/proxies.py&#8221;, line 140, in __call__<br />
    **keywords)<br />
  File &#8220;/usr/lib/python2.5/site-packages/dbus/connection.py&#8221;, line 607, in call_blocking<br />
    message, timeout)<br />
dbus.exceptions.DBusException: org.freedesktop.DBus.Error.UnknownMethod: Method &#8220;getVPNConnections&#8221; with signature &#8220;&#8221; on interface &#8220;org.freedesktop.NetworkManager.VPNConnections&#8221; doesn&#8217;t exist</p>
<p>However, I changed 02runcmd so that is just starts/stops openvpn and this works fine</p>
<p>#! /bin/sh</p>
<p>case &#8220;$2&#8243; in<br />
        up)<br />
                /usr/sbin/rcopenvpn start<br />
                ;;<br />
        down)<br />
                /usr/sbin/rcopenvpn stop<br />
                ;;<br />
esac</p>
<p>exit 0</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on eagle2geda Symbol Converter by mithro</title>
		<link>http://blog.mithis.net/archives/pcb/23-eagle2geda-symbol-converter#comment-7090</link>
		<dc:creator>mithro</dc:creator>
		<pubDate>Wed, 16 Jul 2008 23:39:01 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mithis.net/archives/uncategorized/23-eagle2geda-symbol-converter#comment-7090</guid>
		<description>There is a typo in the version that is uploaded it should be "P.name" not "S.name".

I have however mostly abandoned this converter. I don't have time to work on it and have used neither eagle or gEDA is over a year. Feel free to do what you want with it.</description>
		<content:encoded><![CDATA[<p>There is a typo in the version that is uploaded it should be &#8220;P.name&#8221; not &#8220;S.name&#8221;.</p>
<p>I have however mostly abandoned this converter. I don&#8217;t have time to work on it and have used neither eagle or gEDA is over a year. Feel free to do what you want with it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on eagle2geda Symbol Converter by andrew</title>
		<link>http://blog.mithis.net/archives/pcb/23-eagle2geda-symbol-converter#comment-7088</link>
		<dc:creator>andrew</dc:creator>
		<pubDate>Wed, 16 Jul 2008 18:52:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mithis.net/archives/uncategorized/23-eagle2geda-symbol-converter#comment-7088</guid>
		<description>Hi Mithro,

  I was very impressed to see your eagle2geda converter.  I can't get it to work though,  I get the error that the symbol "S" is not found.  Is this because I am running the script in the wrong window?

A</description>
		<content:encoded><![CDATA[<p>Hi Mithro,</p>
<p>  I was very impressed to see your eagle2geda converter.  I can&#8217;t get it to work though,  I get the error that the symbol &#8220;S&#8221; is not found.  Is this because I am running the script in the wrong window?</p>
<p>A</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on My three weeks on a Mac by mithro</title>
		<link>http://blog.mithis.net/archives/ubuntu/84-my-three-weeks-on-a-mac#comment-7024</link>
		<dc:creator>mithro</dc:creator>
		<pubDate>Tue, 08 Jul 2008 23:18:31 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mithis.net/?p=84#comment-7024</guid>
		<description>Actually that was exactly what I was complaining about. In Windows/Linux I can just use Alt-Tab to get to any window, with Mac I have to use two keys to do the same thing!</description>
		<content:encoded><![CDATA[<p>Actually that was exactly what I was complaining about. In Windows/Linux I can just use Alt-Tab to get to any window, with Mac I have to use two keys to do the same thing!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on My three weeks on a Mac by Ryan Neufeld</title>
		<link>http://blog.mithis.net/archives/ubuntu/84-my-three-weeks-on-a-mac#comment-7023</link>
		<dc:creator>Ryan Neufeld</dc:creator>
		<pubDate>Tue, 08 Jul 2008 16:09:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mithis.net/?p=84#comment-7023</guid>
		<description>I won't go into a big fanboy rant here (since I've been using my mac for a  month or two now and lvoe it) but here is a tip: command-tab (alt-tab) cycles between programs, and command-~ cycles between windows of an application.</description>
		<content:encoded><![CDATA[<p>I won&#8217;t go into a big fanboy rant here (since I&#8217;ve been using my mac for a  month or two now and lvoe it) but here is a tip: command-tab (alt-tab) cycles between programs, and command-~ cycles between windows of an application.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Cool Python, Swaping two variables by Evan</title>
		<link>http://blog.mithis.net/archives/ideas/64-python-swap-var#comment-7020</link>
		<dc:creator>Evan</dc:creator>
		<pubDate>Tue, 08 Jul 2008 01:20:23 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mithis.net/archives/ideas/64-python-swap-var#comment-7020</guid>
		<description>Hah, yeah I love  that trick.

I've heard that it isn't uncommon in interviews for them to ask a you do do something like "Swap the values of 2 variables without using a temporary variable." I'd love to see their reaction if someone just wrote that down.</description>
		<content:encoded><![CDATA[<p>Hah, yeah I love  that trick.</p>
<p>I&#8217;ve heard that it isn&#8217;t uncommon in interviews for them to ask a you do do something like &#8220;Swap the values of 2 variables without using a temporary variable.&#8221; I&#8217;d love to see their reaction if someone just wrote that down.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on I will survive&#8230; by Ryan Neufeld</title>
		<link>http://blog.mithis.net/archives/google/81-noogler-week-1#comment-6997</link>
		<dc:creator>Ryan Neufeld</dc:creator>
		<pubDate>Tue, 27 May 2008 04:06:06 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mithis.net/archives/google/81-noogler-week-1#comment-6997</guid>
		<description>Oooh, I'm so jealous. I always love to hear anything about the internal goings on of google. Its neat to hear that not only do they just provide free food but other, more job-relevant perks, like open access and great tech support. 

I can also feel for you with the jetlag. Yours may be a bit more extreme though, nothing like forcing yourself to stay up for days on end just to adjust. Please do blog more about what happens in and around the googleplex, I'd be interested to hear anything you are allowed to say to outsiders.</description>
		<content:encoded><![CDATA[<p>Oooh, I&#8217;m so jealous. I always love to hear anything about the internal goings on of google. Its neat to hear that not only do they just provide free food but other, more job-relevant perks, like open access and great tech support. </p>
<p>I can also feel for you with the jetlag. Yours may be a bit more extreme though, nothing like forcing yourself to stay up for days on end just to adjust. Please do blog more about what happens in and around the googleplex, I&#8217;d be interested to hear anything you are allowed to say to outsiders.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on &#8220;rock&#8221; verses &#8220;rocks&#8221; by Warren</title>
		<link>http://blog.mithis.net/archives/uncategorized/80-rocks#comment-6988</link>
		<dc:creator>Warren</dc:creator>
		<pubDate>Tue, 20 May 2008 14:24:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mithis.net/archives/uncategorized/80-rocks#comment-6988</guid>
		<description>If you find something logical out, let me know, as far as I am concerned it is just an arbitrary rule.</description>
		<content:encoded><![CDATA[<p>If you find something logical out, let me know, as far as I am concerned it is just an arbitrary rule.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
