Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <h1>TL;DR</h1> <p><a href="https://github.com/vonj/snippets" rel="nofollow">Full github mirror of the code</a> <sup>(Edited to point to github site, since first mirror died.)</sup></p> <hr> <p>Since your ServerFault question was off topic, I thought I'd post this here;</p> <p>*puts on detective hat*</p> <p>Well <a href="http://dnshistory.org/browsedomains/snippets.org." rel="nofollow">DNSHistory.org reports the domain snippets.org</a> used to point to '206.251.38.37' up till 2011-04-02 (When did the domain go?)</p> <p>Using CURL to send the 'host' header to that server;</p> <pre><code>[samr@ocelot~]$ curl -I -H "Host:snippets.org" http://206.251.38.37/ HTTP/1.1 200 OK Date: Thu, 24 Nov 2011 15:12:16 GMT Server: Apache/2.2.9 (Debian) PHP/4.4.4-8+etch6 mod_ssl/2.2.9 OpenSSL/0.9.8g X-Powered-By: PHP/4.4.4-8+etch6 Content-Type: text/html </code></pre> <p>gives us a response. Next step, what does that page look like?</p> <p>Well just getting the HTML and opening it in lynx;</p> <pre><code>[samr@ocelot~]$ curl -H "Host:snippets.org" http://206.251.38.37/ &gt; snippets.org.html % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 10319 0 10319 0 0 29500 0 --:--:-- --:--:-- --:--:-- 52583 [samr@ocelot~]$ lynx snippets.org.html </code></pre> <p>Gives the wonderful response of;</p> <blockquote> <p>SNIPPETS sponsors [MicroFirm.gif] Firmware, system, and sensors development [Sponsor.jpg] Click here to learn more [dmlogo.gif]<br> "Free C/C++ Compilers" [188x44_bss14.jpg] "High-Performance Version Control" </p> <hr> <pre><code> [logo.gif] Free educational resources on the Internet ______________________________________________________________________________________________________________________ Thursday, 24-Nov-2011, 15:13:22 GMT Last modified: 01-Apr-2007, 05:50:42 GMT 395594 visitors since 15-Jul-2002 __________________________________________________________________________ </code></pre> <p>Mission:</p> <p>SNIPPETS.ORG is dedicated to providing free informational and educational resources on the World Wide Web. Currently, the two principle topics are programming and do-it-yourself (DIY) audio. The fields covered by SNIPPETS.ORG are generally technology and arts. As soon as enough free material is collected, new sections will be added related to photography and digital imaging.</p> <p>The one common factor in everything you'll find on this site is that it's all free. Programming source code is free. Tools and utilities are free. And, of course, information is always free. While SNIPPETS.ORG provides many links to commercial sites, it is a not-for-profit operation - nothing here is for sale! If you wish to contribute content, information, or entire web sites to SNIPPETS.ORG, please contact me. [snip]</p> </blockquote> <p>So to answer your question, the domain used to point to '206.251.38.37', and the site (appears to) still exist.</p> <p>Next thing; mirroring. The <code>wget</code> tool provides a <code>--mirror</code> flag to recursively download a website to a directory, which looks to be just what we're after.</p> <p>Started creating a mirror on my home server, but here's the command I'm using;</p> <pre><code>wget --header="Host:snippets.org" --mirror -p --convert-links -P ./snippets.org/ http://206.251.38.37/ </code></pre> <p><strike>Then I extracted the files from the code directories and uploaded them to my mirror site <a href="http://mirror.rmg.io/snippets.org/" rel="nofollow">http://mirror.rmg.io/snippets.org/</a></strike></p> <p>embedded.snippets.org reports as 'down for maintenance' so couldn't be spidered.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload