<?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 on: A records on top level domains</title>
	<atom:link href="http://ydal.de/a-records-on-top-level-domains/feed/" rel="self" type="application/rss+xml" />
	<link>http://ydal.de/a-records-on-top-level-domains/</link>
	<description>Miscellaneous nerdy tidbits of one Tobias &#039;towo&#039; Wolter.</description>
	<lastBuildDate>Sat, 14 Jan 2012 11:44:04 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Why we won&#8217;t see dotless domain names &#124; DomainIncite - Domain Name News &#38; Opinion</title>
		<link>http://ydal.de/a-records-on-top-level-domains/comment-page-1/#comment-12234</link>
		<dc:creator>Why we won&#8217;t see dotless domain names &#124; DomainIncite - Domain Name News &#38; Opinion</dc:creator>
		<pubDate>Wed, 20 Jul 2011 10:24:20 +0000</pubDate>
		<guid isPermaLink="false">http://ydal.de/?p=287#comment-12234</guid>
		<description>[...] can test this today. There are already a handful of top-level domains, probably fewer than 20 and all ccTLDs, that have implemented an A record at the TLD [...]</description>
		<content:encoded><![CDATA[<p>[…] can test this today. There are already a handful of top-level domains, probably fewer than 20 and all ccTLDs, that have implemented an A record at the TLD […]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: drchaos</title>
		<link>http://ydal.de/a-records-on-top-level-domains/comment-page-1/#comment-6372</link>
		<dc:creator>drchaos</dc:creator>
		<pubDate>Mon, 18 Jan 2010 02:52:44 +0000</pubDate>
		<guid isPermaLink="false">http://ydal.de/?p=287#comment-6372</guid>
		<description>http://to/ does not work at least with Firefox and Chromium. http://to./ does (but doesn&#039;t look that good, IMHO)</description>
		<content:encoded><![CDATA[<p><a href="http://to/" rel="nofollow">http://to/</a> does not work at least with Firefox and Chromium. <a href="http://to./" rel="nofollow">http://to./</a> does (but doesn’t look that good, IMHO)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: blacky</title>
		<link>http://ydal.de/a-records-on-top-level-domains/comment-page-1/#comment-6328</link>
		<dc:creator>blacky</dc:creator>
		<pubDate>Fri, 15 Jan 2010 13:20:45 +0000</pubDate>
		<guid isPermaLink="false">http://ydal.de/?p=287#comment-6328</guid>
		<description>Also note the TLDs which have MX records, for example:

$ host -t MX va.
va mail is handled by 10 lists.vatican.va.
va mail is handled by 50 proxy2.urbe.it.
va mail is handled by 20 paul.vatican.va.
va mail is handled by 90 john.vatican.va.
$</description>
		<content:encoded><![CDATA[<p>Also note the TLDs which have MX records, for example:</p>
<p>$ host –t MX va.<br />
va mail is handled by 10 lists.vatican.va.<br />
va mail is handled by 50 proxy2.urbe.it.<br />
va mail is handled by 20 paul.vatican.va.<br />
va mail is handled by 90 john.vatican.va.<br />
$</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: paxed</title>
		<link>http://ydal.de/a-records-on-top-level-domains/comment-page-1/#comment-6226</link>
		<dc:creator>paxed</dc:creator>
		<pubDate>Sun, 10 Jan 2010 10:17:53 +0000</pubDate>
		<guid isPermaLink="false">http://ydal.de/?p=287#comment-6226</guid>
		<description>_nicely_ replaced by xargs? Sorry, xargs is not nice, it killed my warhamster once!</description>
		<content:encoded><![CDATA[<p>_nicely_ replaced by xargs? Sorry, xargs is not nice, it killed my warhamster once!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aristotle Pagaltzis</title>
		<link>http://ydal.de/a-records-on-top-level-domains/comment-page-1/#comment-6211</link>
		<dc:creator>Aristotle Pagaltzis</dc:creator>
		<pubDate>Sat, 09 Jan 2010 15:11:50 +0000</pubDate>
		<guid isPermaLink="false">http://ydal.de/?p=287#comment-6211</guid>
		<description>(Woops, the &lt;code&gt;-W 1&lt;/code&gt; in the last example is a debugging vestige.)</description>
		<content:encoded><![CDATA[<p>(Woops, the <code>-W 1</code> in the last example is a debugging vestige.)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aristotle Pagaltzis</title>
		<link>http://ydal.de/a-records-on-top-level-domains/comment-page-1/#comment-6210</link>
		<dc:creator>Aristotle Pagaltzis</dc:creator>
		<pubDate>Sat, 09 Jan 2010 15:10:44 +0000</pubDate>
		<guid isPermaLink="false">http://ydal.de/?p=287#comment-6210</guid>
		<description>FWIW, for learning purposes, let me point out:

1. The subshell in your one-liner is entirely unnecessary:

   &lt;code&gt;for domain in $(grep -v &#039;^#&#039; tlds-alpha-by-domain.txt) ; do host -t A &quot;${domain}.&quot;; done &#124; grep -v &#039;has no A record&#039;&lt;/code&gt;

2. The backticks can be avoided:

   &lt;code&gt;grep -v &#039;^#&#039; tlds-alpha-by-domain.txt &#124; while read domain ; do host -t A &quot;${domain}.&quot;; done &#124; grep -v &#039;has no A record&#039;&lt;/code&gt;

3. This loop can be nicely replaced by a use of &lt;code&gt;xargs -i&lt;/code&gt;:

   &lt;code&gt;grep -v &#039;^#&#039; tlds-alpha-by-domain.txt &#124; xargs -i host -t A -W 1 {}. &#124; grep -v &#039;has no A record&#039;&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>FWIW, for learning purposes, let me point out:</p>
<p>1. The subshell in your one-liner is entirely unnecessary:</p>
<p>   <code>for domain in $(grep -v '^#' tlds-alpha-by-domain.txt) ; do host -t A "${domain}."; done | grep -v 'has no A record'</code></p>
<p>2. The backticks can be avoided:</p>
<p>   <code>grep -v '^#' tlds-alpha-by-domain.txt | while read domain ; do host -t A "${domain}."; done | grep -v 'has no A record'</code></p>
<p>3. This loop can be nicely replaced by a use of <code>xargs -i</code>:</p>
<p>   <code>grep -v '^#' tlds-alpha-by-domain.txt | xargs -i host -t A -W 1 {}. | grep -v 'has no A record'</code></p>
]]></content:encoded>
	</item>
</channel>
</rss>

