<?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/"
	xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule"	>
<channel>
	<title>Comments for dot org slash blog</title>
	<atom:link href="http://www.atld.org/blog/?feed=comments-rss2" rel="self" type="application/rss+xml" />
	<link>http://www.atld.org/blog</link>
	<description>Probably boring technical stuff</description>
	<lastBuildDate>Mon, 03 Aug 2009 08:10:25 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Ham radio. by wow power leveling</title>
		<link>http://www.atld.org/blog/?p=26&#038;cpage=1#comment-6604</link>
		<dc:creator>wow power leveling</dc:creator>
		<pubDate>Mon, 03 Aug 2009 08:10:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.atld.org/blog/?p=26#comment-6604</guid>
		<description>Looks like your question thing at the end of the post worked. Also not having to sign in is nice too. Good job. Nice list. Thanks.</description>
		<content:encoded><![CDATA[<p>Looks like your question thing at the end of the post worked. Also not having to sign in is nice too. Good job. Nice list. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tethering the iPhone 3g with Linux. by dot org slash blog Tethering the iPhone 3g with Linux &#124; Insomnia Cure</title>
		<link>http://www.atld.org/blog/?p=32&#038;cpage=1#comment-5202</link>
		<dc:creator>dot org slash blog Tethering the iPhone 3g with Linux &#124; Insomnia Cure</dc:creator>
		<pubDate>Wed, 10 Jun 2009 01:02:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.atld.org/blog/?p=32#comment-5202</guid>
		<description>[...] dot org slash blog Tethering the iPhone 3g with Linux   Posted by root 1 day 3 hours ago (http://www.atld.org)        Jul 27 2008 either from a ssh session or the terminal run proxy set up a dhcp server on the laptop turn on insomnia so your wifi connection doesn 39 t get shut down when the device goes idle post a comment trackback uri 2009 chris powered by wordpress pla        Discuss&#160;  &#124;&#160; Bury &#124;&#160;    News &#124; dot org slash blog Tethering the iPhone 3g with Linux [...]</description>
		<content:encoded><![CDATA[<p>[...] dot org slash blog Tethering the iPhone 3g with Linux   Posted by root 1 day 3 hours ago (<a href="http://www.atld.org" rel="nofollow">http://www.atld.org</a>)        Jul 27 2008 either from a ssh session or the terminal run proxy set up a dhcp server on the laptop turn on insomnia so your wifi connection doesn 39 t get shut down when the device goes idle post a comment trackback uri 2009 chris powered by wordpress pla        Discuss&nbsp;  |&nbsp; Bury |&nbsp;    News | dot org slash blog Tethering the iPhone 3g with Linux [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Capped internet and me. by rekenner</title>
		<link>http://www.atld.org/blog/?p=39&#038;cpage=1#comment-937</link>
		<dc:creator>rekenner</dc:creator>
		<pubDate>Sun, 03 Aug 2008 20:00:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.atld.org/blog/?p=39#comment-937</guid>
		<description>Much better than the short version you posted. The logic behind the caps and how absurd they are is something I&#039;ve thought about before. However, what you wrote about the ramifications of the caps with regards to OS patching is an interesting idea. Sounds like something most consumers would think, too, prioritizing foo net browsing over patching. And I love the irony that results from the subscriber being screwed over even more by having a compromised machine.</description>
		<content:encoded><![CDATA[<p>Much better than the short version you posted. The logic behind the caps and how absurd they are is something I&#8217;ve thought about before. However, what you wrote about the ramifications of the caps with regards to OS patching is an interesting idea. Sounds like something most consumers would think, too, prioritizing foo net browsing over patching. And I love the irony that results from the subscriber being screwed over even more by having a compromised machine.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Some notes on C# and P/Invoke by chris</title>
		<link>http://www.atld.org/blog/?p=22&#038;cpage=1#comment-903</link>
		<dc:creator>chris</dc:creator>
		<pubDate>Thu, 31 Jul 2008 01:26:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.atld.org/blog/2008/01/12/some-notes-on-c-and-pinvoke/#comment-903</guid>
		<description>@Daniel
Define your array somewhat like this: 
&lt;pre&gt;    [StructLayout(LayoutKind.Sequential, Pack = 1)]
    unsafe public struct S
    {
        public fixed byte b[6];
    }&lt;/pre&gt;

Pass that through Marshal.PtrToStructure(ptr, typeof(S)), and you&#039;ll get a reference to an instance of S containing the array pointed to by ptr.</description>
		<content:encoded><![CDATA[<p>@Daniel<br />
Define your array somewhat like this: </p>
<pre>    [StructLayout(LayoutKind.Sequential, Pack = 1)]
    unsafe public struct S
    {
        public fixed byte b[6];
    }</pre>
<p>Pass that through Marshal.PtrToStructure(ptr, typeof(S)), and you&#8217;ll get a reference to an instance of S containing the array pointed to by ptr.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Some notes on C# and P/Invoke by Daniel Brother</title>
		<link>http://www.atld.org/blog/?p=22&#038;cpage=1#comment-899</link>
		<dc:creator>Daniel Brother</dc:creator>
		<pubDate>Wed, 30 Jul 2008 18:43:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.atld.org/blog/2008/01/12/some-notes-on-c-and-pinvoke/#comment-899</guid>
		<description>Any more information on how to send send the array through Marhsal.PtrToStructure()?</description>
		<content:encoded><![CDATA[<p>Any more information on how to send send the array through Marhsal.PtrToStructure()?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tethering the iPhone 3g with Linux. by Hot Iphone 4 You &#187; Blog Archive &#187; Tethering the iPhone 3g with Linux.</title>
		<link>http://www.atld.org/blog/?p=32&#038;cpage=1#comment-884</link>
		<dc:creator>Hot Iphone 4 You &#187; Blog Archive &#187; Tethering the iPhone 3g with Linux.</dc:creator>
		<pubDate>Mon, 28 Jul 2008 16:47:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.atld.org/blog/?p=32#comment-884</guid>
		<description>[...] unknown wrote an interesting post today onHere&#8217;s a quick excerptHave the iPhone connect to the Ad-Hoc network. I left dhcpd in foreground mode with debug on to watch the phone request an IP. Set firefox to use a SOCKS v5 proxy on port 1080 with the IP address your phone. &#8230; [...]</description>
		<content:encoded><![CDATA[<p>[...] unknown wrote an interesting post today onHere&#8217;s a quick excerptHave the iPhone connect to the Ad-Hoc network. I left dhcpd in foreground mode with debug on to watch the phone request an IP. Set firefox to use a SOCKS v5 proxy on port 1080 with the IP address your phone. &#8230; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on More of the same. by chris</title>
		<link>http://www.atld.org/blog/?p=30&#038;cpage=1#comment-774</link>
		<dc:creator>chris</dc:creator>
		<pubDate>Fri, 27 Jun 2008 22:55:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.atld.org/blog/?p=30#comment-774</guid>
		<description>@Trent
1. Build essential does not install autotools (I installed it long, long ago).
2. Even if it did, that still isn&#039;t terribly useful if the developer doesn&#039;t know to install that to fulfill the task at hand. It would have required me to search the internet to find a solution rather than the solution being trivially apparent from the user interface.</description>
		<content:encoded><![CDATA[<p>@Trent<br />
1. Build essential does not install autotools (I installed it long, long ago).<br />
2. Even if it did, that still isn&#8217;t terribly useful if the developer doesn&#8217;t know to install that to fulfill the task at hand. It would have required me to search the internet to find a solution rather than the solution being trivially apparent from the user interface.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on More of the same. by Trent</title>
		<link>http://www.atld.org/blog/?p=30&#038;cpage=1#comment-771</link>
		<dc:creator>Trent</dc:creator>
		<pubDate>Fri, 27 Jun 2008 13:12:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.atld.org/blog/?p=30#comment-771</guid>
		<description>I think build-essential is the package you want on ubuntu.</description>
		<content:encoded><![CDATA[<p>I think build-essential is the package you want on ubuntu.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Insanity. by Philip White</title>
		<link>http://www.atld.org/blog/?p=29&#038;cpage=1#comment-720</link>
		<dc:creator>Philip White</dc:creator>
		<pubDate>Tue, 17 Jun 2008 14:18:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.atld.org/blog/?p=29#comment-720</guid>
		<description>Gentoo meets your three requirements.</description>
		<content:encoded><![CDATA[<p>Gentoo meets your three requirements.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ham radio. by Philip White</title>
		<link>http://www.atld.org/blog/?p=26&#038;cpage=1#comment-434</link>
		<dc:creator>Philip White</dc:creator>
		<pubDate>Mon, 28 Apr 2008 16:00:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.atld.org/blog/?p=26#comment-434</guid>
		<description>Also you might find my page useful: http://www.qnan.org/~pmw/ar/

There I have a Frequencies of Interest page containing Dallas frequencies both for repeaters and public services, as well as a traffic net cheatsheet.  Both of these have served me well.</description>
		<content:encoded><![CDATA[<p>Also you might find my page useful: <a href="http://www.qnan.org/~pmw/ar/" rel="nofollow">http://www.qnan.org/~pmw/ar/</a></p>
<p>There I have a Frequencies of Interest page containing Dallas frequencies both for repeaters and public services, as well as a traffic net cheatsheet.  Both of these have served me well.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.405 seconds -->
