<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'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 "<a href="http://download.intel.com">download.intel.com</a>" 21 "anonymous" ""))<br><br>(ftp-cd conn "/museum/Moores_Law/Articles-Press_releases")<br>
(ftp-download-file conn "/home/X" "Gordon_Moore_1965_Article.pdf")<br><br></div><div><pre>On Wed, Feb 16, 2011 at 2:32 PM, Eduardo Bellani <<a target="_top" href="http://gmane.org/get-address.php?address=ebellani%2dRe5JQEeQqe8AvxtiuMwx3w%40public.gmane.org" rel="nofollow">ebellani@...</a>> wrote:
> Am I using this correctly?
>
> #lang racket
>
> ;; 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
>
> (require net/<b style="color:black;background-color:rgb(255,255,102)">ftp</b>)
>
> (define conn (<b style="color:black;background-color:rgb(255,255,102)">ftp</b>-establish-connection "<a href="http://download.intel.com">download.intel.com</a>" 21
> "anonymous" ""))
>
> (<b style="color:black;background-color:rgb(255,255,102)">ftp</b>-cd conn "/research/silicon")
>
> (<b style="color:black;background-color:rgb(255,255,102)">ftp</b>-download-file conn "/home/X" "<b style="color:black;background-color:rgb(255,255,102)">moorespaper</b>.pdf")
</pre></div></div></div></div>