<?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 Matthew Gyurgyik</title>
	<atom:link href="http://pyther.net/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://pyther.net</link>
	<description>My IT Adventures</description>
	<lastBuildDate>Thu, 16 May 2013 18:47:19 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>Comment on Make Windows 7 USB installer in Linux by meLon</title>
		<link>http://pyther.net/2011/09/make-windows-7-usb-installer-in-linux/comment-page-1/#comment-215</link>
		<dc:creator>meLon</dc:creator>
		<pubDate>Thu, 16 May 2013 18:47:19 +0000</pubDate>
		<guid isPermaLink="false">http://pyther.net/blog/?p=516#comment-215</guid>
		<description><![CDATA[Ah!  The solution to the above problem is to format the USB as NTFS and *not* FAT.  You will not be able to run the mlabel command on the NTFS partition, but the rest of the steps remain the same.

Thanks for this guide!]]></description>
		<content:encoded><![CDATA[<p>Ah!  The solution to the above problem is to format the USB as NTFS and *not* FAT.  You will not be able to run the mlabel command on the NTFS partition, but the rest of the steps remain the same.</p>
<p>Thanks for this guide!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Make Windows 7 USB installer in Linux by meLon</title>
		<link>http://pyther.net/2011/09/make-windows-7-usb-installer-in-linux/comment-page-1/#comment-214</link>
		<dc:creator>meLon</dc:creator>
		<pubDate>Thu, 16 May 2013 18:20:29 +0000</pubDate>
		<guid isPermaLink="false">http://pyther.net/blog/?p=516#comment-214</guid>
		<description><![CDATA[Do you have a solution for:

File: \Boot\BCD
Status: 0xc0000225
Info: An error occurered while attempting to read the boot configuration data.]]></description>
		<content:encoded><![CDATA[<p>Do you have a solution for:</p>
<p>File: \Boot\BCD<br />
Status: 0xc0000225<br />
Info: An error occurered while attempting to read the boot configuration data.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Weather Underground Script by Pyther</title>
		<link>http://pyther.net/2011/10/weather-underground-script/comment-page-1/#comment-196</link>
		<dc:creator>Pyther</dc:creator>
		<pubDate>Mon, 29 Oct 2012 01:31:01 +0000</pubDate>
		<guid isPermaLink="false">http://pyther.net/blog/?p=527#comment-196</guid>
		<description><![CDATA[You aren&#039;t, necessarly, doing anything wrong. It has to do with how python2 parses print, compared to python3. Just replace the print statement (at the end) with &#039;print(&#039;%s - %s&#039; % (temp, condition))&#039;.

I have updated the script reflect that change. It should work with both python2 and python3.]]></description>
		<content:encoded><![CDATA[<p>You aren&#8217;t, necessarly, doing anything wrong. It has to do with how python2 parses print, compared to python3. Just replace the print statement (at the end) with &#8216;print(&#8216;%s &#8211; %s&#8217; % (temp, condition))&#8217;.</p>
<p>I have updated the script reflect that change. It should work with both python2 and python3.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Weather Underground Script by Parker</title>
		<link>http://pyther.net/2011/10/weather-underground-script/comment-page-1/#comment-195</link>
		<dc:creator>Parker</dc:creator>
		<pubDate>Sun, 28 Oct 2012 20:18:17 +0000</pubDate>
		<guid isPermaLink="false">http://pyther.net/blog/?p=527#comment-195</guid>
		<description><![CDATA[Just what I&#039;m looking for except the output isn&#039;t correct for me. Example: 

(u&#039;45F&#039;, &#039;-&#039;, u&#039;Light Rain&#039;)

What did I do wrong?]]></description>
		<content:encoded><![CDATA[<p>Just what I&#8217;m looking for except the output isn&#8217;t correct for me. Example: </p>
<p>(u&#8217;45F&#8217;, &#8216;-&#8217;, u&#8217;Light Rain&#8217;)</p>
<p>What did I do wrong?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iheartradio &#8211; command line (mplayer) by preserved</title>
		<link>http://pyther.net/2010/08/iheartradio-command-line-mplayer/comment-page-1/#comment-188</link>
		<dc:creator>preserved</dc:creator>
		<pubDate>Wed, 23 May 2012 01:34:56 +0000</pubDate>
		<guid isPermaLink="false">http://pyther.net/blog/?p=361#comment-188</guid>
		<description><![CDATA[Here&#039;s a quick patch that lets the iheartradio.py work with Talk Radio (like waeb-am) and Music Radio:

--- iheartradio.old.py  2012-05-22 21:21:19.000000000 -0400
+++ iheartradio.py      2012-05-22 21:19:28.000000000 -0400
@@ -17,9 +17,12 @@

 def getSongInfo():
     xml=getXML()
-    artist=xml.find(&#039;ListenLiveInitialize/JustPlayed/song/artist&#039;).attrib[&#039;name&#039;]
-    title=xml.find(&#039;ListenLiveInitialize/JustPlayed/song/track&#039;).attrib[&#039;track_title&#039;]
-    return artist,title
+    if xml.find(&#039;ListenLiveInitialize/JustPlayed/song/artist&#039;) == None:
+        return &quot;None&quot;,&quot;None&quot;
+    else:
+        artist=xml.find(&#039;ListenLiveInitialize/JustPlayed/song/artist&#039;).attrib[&#039;name&#039;]
+        title=xml.find(&#039;ListenLiveInitialize/JustPlayed/song/track&#039;).attrib[&#039;track_title&#039;]
+        return artist,title

 while True:
     station=raw_input(&quot;Enter Station ID [&quot; + DefaultStation + &quot;]: &quot;)
@@ -52,9 +55,10 @@

 while datetime.datetime.now() &lt; endTime:
     SongInfo=getSongInfo()
-    if not SongInfo == OldSongInfo:
-        OldSongInfo = SongInfo
-        print SongInfo[0] + &quot; - &quot; + SongInfo[1]
+    if not SongInfo[0] == &quot;None&quot;:
+        if not SongInfo == OldSongInfo:
+            OldSongInfo = SongInfo
+            print SongInfo[0] + &quot; - &quot; + SongInfo[1]
     time.sleep(5)

 print(&quot;Stopping MPlayer...&quot;)

May try to add this to RadioTray - like I Heart too.]]></description>
		<content:encoded><![CDATA[<p>Here&#8217;s a quick patch that lets the iheartradio.py work with Talk Radio (like waeb-am) and Music Radio:</p>
<p>&#8212; iheartradio.old.py  2012-05-22 21:21:19.000000000 -0400<br />
+++ iheartradio.py      2012-05-22 21:19:28.000000000 -0400<br />
@@ -17,9 +17,12 @@</p>
<p> def getSongInfo():<br />
     xml=getXML()<br />
-    artist=xml.find(&#8216;ListenLiveInitialize/JustPlayed/song/artist&#8217;).attrib['name']<br />
-    title=xml.find(&#8216;ListenLiveInitialize/JustPlayed/song/track&#8217;).attrib['track_title']<br />
-    return artist,title<br />
+    if xml.find(&#8216;ListenLiveInitialize/JustPlayed/song/artist&#8217;) == None:<br />
+        return &#8220;None&#8221;,&#8221;None&#8221;<br />
+    else:<br />
+        artist=xml.find(&#8216;ListenLiveInitialize/JustPlayed/song/artist&#8217;).attrib['name']<br />
+        title=xml.find(&#8216;ListenLiveInitialize/JustPlayed/song/track&#8217;).attrib['track_title']<br />
+        return artist,title</p>
<p> while True:<br />
     station=raw_input(&#8220;Enter Station ID [" + DefaultStation + "]: &#8220;)<br />
@@ -52,9 +55,10 @@</p>
<p> while datetime.datetime.now() &lt; endTime:<br />
     SongInfo=getSongInfo()<br />
-    if not SongInfo == OldSongInfo:<br />
-        OldSongInfo = SongInfo<br />
-        print SongInfo[0] + &quot; &#8211; &quot; + SongInfo[1]<br />
+    if not SongInfo[0] == &quot;None&quot;:<br />
+        if not SongInfo == OldSongInfo:<br />
+            OldSongInfo = SongInfo<br />
+            print SongInfo[0] + &quot; &#8211; &quot; + SongInfo[1]<br />
     time.sleep(5)</p>
<p> print(&quot;Stopping MPlayer&#8230;&quot;)</p>
<p>May try to add this to RadioTray &#8211; like I Heart too.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Listen to iheartradio without Flash by pswitt</title>
		<link>http://pyther.net/2010/08/listen-to-iheartradio-without-flash/comment-page-1/#comment-187</link>
		<dc:creator>pswitt</dc:creator>
		<pubDate>Mon, 21 May 2012 21:39:47 +0000</pubDate>
		<guid isPermaLink="false">http://pyther.net/blog/?p=345#comment-187</guid>
		<description><![CDATA[This can be crammed into a one liner like this:

mplayer -novideo `wget  -q -O- &quot;http://p2.WHTZ-FM.ccomrcdn.com/player/player_dispatcher.html?section=radio&amp;action=listen_live&quot; &#124; grep -o &quot;rtmp\://[^\&quot;]*&quot;`

(with WHTZ-FM replaced with any station id)]]></description>
		<content:encoded><![CDATA[<p>This can be crammed into a one liner like this:</p>
<p>mplayer -novideo `wget  -q -O- &#8220;http://p2.WHTZ-FM.ccomrcdn.com/player/player_dispatcher.html?section=radio&amp;action=listen_live&#8221; | grep -o &#8220;rtmp\://[^\"]*&#8221;`</p>
<p>(with WHTZ-FM replaced with any station id)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Remote Assistance &#8211; Win XP/Vista/7 by Michael D.</title>
		<link>http://pyther.net/2011/06/remote-assistance-win-xpvista7/comment-page-1/#comment-175</link>
		<dc:creator>Michael D.</dc:creator>
		<pubDate>Tue, 20 Mar 2012 21:26:14 +0000</pubDate>
		<guid isPermaLink="false">http://pyther.net/blog/?p=475#comment-175</guid>
		<description><![CDATA[After banging my head against this problem for a day and digging through forums all across the internet. It seems I (and everyone else, from the posts I&#039;ve seen) overlooked one simple thing: check to make sure the Windows XP client has the Terminal Services service enabled and started.

Once I started this service, Remote Assistance was working like a charm between Win2008 R2 and WinXP Pro. Confirmed: compatible with Windows XP SP3. :D]]></description>
		<content:encoded><![CDATA[<p>After banging my head against this problem for a day and digging through forums all across the internet. It seems I (and everyone else, from the posts I&#8217;ve seen) overlooked one simple thing: check to make sure the Windows XP client has the Terminal Services service enabled and started.</p>
<p>Once I started this service, Remote Assistance was working like a charm between Win2008 R2 and WinXP Pro. Confirmed: compatible with Windows XP SP3. :D</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Remote Assistance &#8211; Win XP/Vista/7 by Pyther</title>
		<link>http://pyther.net/2011/06/remote-assistance-win-xpvista7/comment-page-1/#comment-173</link>
		<dc:creator>Pyther</dc:creator>
		<pubDate>Tue, 20 Mar 2012 13:03:34 +0000</pubDate>
		<guid isPermaLink="false">http://pyther.net/blog/?p=475#comment-173</guid>
		<description><![CDATA[I don&#039;t recall actually testing it on Windows XP. I would insure that XP doesn&#039;t have a firewall enabled that might be preventing connections from being established. I do know I&#039;ve done remote assistance from Windows 7 (request)-&gt;  Windows Vista and Win 7 (request) -&gt; Win 7]]></description>
		<content:encoded><![CDATA[<p>I don&#8217;t recall actually testing it on Windows XP. I would insure that XP doesn&#8217;t have a firewall enabled that might be preventing connections from being established. I do know I&#8217;ve done remote assistance from Windows 7 (request)-&gt;  Windows Vista and Win 7 (request) -&gt; Win 7</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Remote Assistance &#8211; Win XP/Vista/7 by Michael D.</title>
		<link>http://pyther.net/2011/06/remote-assistance-win-xpvista7/comment-page-1/#comment-172</link>
		<dc:creator>Michael D.</dc:creator>
		<pubDate>Mon, 19 Mar 2012 21:53:50 +0000</pubDate>
		<guid isPermaLink="false">http://pyther.net/blog/?p=475#comment-172</guid>
		<description><![CDATA[This is a great article. I see you list that this applies to Windows XP - did you actually test this on XP or were you able to get it working?

I&#039;ve got Remote Assistance working between Windows 2008 R2 sessions (meaning a tech who has a terminal server session on a Windows 2008 R2 server can send a Remote Assistance request to a user&#039;s TS sessions on a different Windows 2008 R2 server and it works great). But I can&#039;t get it working between Windows 2008 R2 and Windows XP Professional SP3. MSRA on the 2008 server reports &quot;Your offer to help could not be sent&quot; and advises you to check if you have permissions on the remote computer, computer is powered on, etc.

I&#039;ve got the same group policy applied to the Windows XP machine as I do the 2008 R2 machine. Both in the same domain, same network and I&#039;ve checked to make sure the GPO is indeed applying to the XP client. I&#039;m scratching my head as to why this isn&#039;t working.]]></description>
		<content:encoded><![CDATA[<p>This is a great article. I see you list that this applies to Windows XP &#8211; did you actually test this on XP or were you able to get it working?</p>
<p>I&#8217;ve got Remote Assistance working between Windows 2008 R2 sessions (meaning a tech who has a terminal server session on a Windows 2008 R2 server can send a Remote Assistance request to a user&#8217;s TS sessions on a different Windows 2008 R2 server and it works great). But I can&#8217;t get it working between Windows 2008 R2 and Windows XP Professional SP3. MSRA on the 2008 server reports &#8220;Your offer to help could not be sent&#8221; and advises you to check if you have permissions on the remote computer, computer is powered on, etc.</p>
<p>I&#8217;ve got the same group policy applied to the Windows XP machine as I do the 2008 R2 machine. Both in the same domain, same network and I&#8217;ve checked to make sure the GPO is indeed applying to the XP client. I&#8217;m scratching my head as to why this isn&#8217;t working.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iheartradio &#8211; command line (mplayer) by fukinA</title>
		<link>http://pyther.net/2010/08/iheartradio-command-line-mplayer/comment-page-1/#comment-151</link>
		<dc:creator>fukinA</dc:creator>
		<pubDate>Sun, 21 Aug 2011 16:52:02 +0000</pubDate>
		<guid isPermaLink="false">http://pyther.net/blog/?p=361#comment-151</guid>
		<description><![CDATA[here&#039;s JK&#039;s bash script that actually works if anyone googles
pastebin.com/Cq68Gv4h
the blog probably messed up few quotes &quot; &quot; and a minus - and the script didn&#039;t worked. it&#039;s been a nightmare for me to fix, a guy that has no scripting knowledge, but someone helped me
thank you JK, whoever you are :D

btw i&#039;m using his script because your python one can&#039;t change mplayer&#039;s volume from command line. maybe you can implement that. but both work great for linux phones anyway.
here&#039;s an idea for your script, adding few lines for favorite radios and enable selection at script start through 1/2/3/4/5 etc instead of remembering many radio codenames]]></description>
		<content:encoded><![CDATA[<p>here&#8217;s JK&#8217;s bash script that actually works if anyone googles<br />
pastebin.com/Cq68Gv4h<br />
the blog probably messed up few quotes &#8221; &#8221; and a minus &#8211; and the script didn&#8217;t worked. it&#8217;s been a nightmare for me to fix, a guy that has no scripting knowledge, but someone helped me<br />
thank you JK, whoever you are :D</p>
<p>btw i&#8217;m using his script because your python one can&#8217;t change mplayer&#8217;s volume from command line. maybe you can implement that. but both work great for linux phones anyway.<br />
here&#8217;s an idea for your script, adding few lines for favorite radios and enable selection at script start through 1/2/3/4/5 etc instead of remembering many radio codenames</p>
]]></content:encoded>
	</item>
</channel>
</rss>
