<div dir="ltr"><div><div>I was using the code from this old post to test FTP within racket, and noticed that (what I assume was) the link to Moore&#39;s original paper is broken.<br><br>After a few minutes of poking around I see that Intel has reorganized their FTP site and the paper is now found at:<br>
 <a href="ftp://download.intel.com/museum/Moores_Law/Articles-Press_releases/Gordon_Moore_1965_Article.pdf">ftp://download.intel.com/museum/Moores_Law/Articles-Press_releases/Gordon_Moore_1965_Article.pdf</a>.<br><br></div>
Not wanting to have wasted the time, I document the new location and provide an update to the wee test here.<br><br></div>Cheers,<br><br>Kieron.<br><br>****<br><div><div><br><div>#lang racket<br><br>(require net/ftp)<br><br>
(define conn (ftp-establish-connection &quot;<a href="http://download.intel.com">download.intel.com</a>&quot; 21 &quot;anonymous&quot; &quot;&quot;))<br><br>(ftp-cd conn &quot;/museum/Moores_Law/Articles-Press_releases&quot;)<br>
(ftp-download-file conn &quot;/home/X&quot; &quot;Gordon_Moore_1965_Article.pdf&quot;)<br><br></div><div><pre>On Wed, Feb 16, 2011 at 2:32 PM, Eduardo Bellani &lt;<a target="_top" href="http://gmane.org/get-address.php?address=ebellani%2dRe5JQEeQqe8AvxtiuMwx3w%40public.gmane.org" rel="nofollow">ebellani@...</a>&gt; wrote:
&gt; Am I using this correctly?
&gt;
&gt; #lang racket
&gt;
&gt; ;; wget <b style="color:black;background-color:rgb(255,255,102)">ftp</b>://<a href="http://download.intel.com/research/silicon/">download.intel.com/research/silicon/</a><b style="color:black;background-color:rgb(255,255,102)">moorespaper</b>.pdf #works
&gt;
&gt; (require net/<b style="color:black;background-color:rgb(255,255,102)">ftp</b>)
&gt;
&gt; (define conn (<b style="color:black;background-color:rgb(255,255,102)">ftp</b>-establish-connection &quot;<a href="http://download.intel.com">download.intel.com</a>&quot; 21
&gt; &quot;anonymous&quot; &quot;&quot;))
&gt;
&gt; (<b style="color:black;background-color:rgb(255,255,102)">ftp</b>-cd conn &quot;/research/silicon&quot;)
&gt;
&gt; (<b style="color:black;background-color:rgb(255,255,102)">ftp</b>-download-file conn &quot;/home/X&quot; &quot;<b style="color:black;background-color:rgb(255,255,102)">moorespaper</b>.pdf&quot;)
</pre></div></div></div></div>