gitextract_svk5w318/ ├── 500-startups ├── 500-startups.html ├── README.md ├── Rakefile ├── TODO ├── cache/ │ └── .gitignore ├── config/ │ └── name-lookups.yaml ├── domain-profiler-mind-map.mm ├── github-list ├── github.html ├── lib/ │ ├── domain-profiler/ │ │ ├── dns.rb │ │ ├── fetch-info.rb │ │ ├── information.rb │ │ ├── ip-to-asn.rb │ │ ├── name.rb │ │ ├── ssl.rb │ │ ├── whois-orgname.rb │ │ └── whois.rb │ └── domain-profiler.rb ├── list/ │ ├── alexa-top-100 │ ├── quantcast-top-100 │ ├── time-top-50 │ └── ycombinator ├── profile ├── profile-godaddy ├── profile-list ├── public/ │ ├── quantcast.html │ ├── sorttable.js │ └── style.css ├── quantcast.html ├── spec/ │ ├── dns/ │ │ ├── dns_spec.rb │ │ └── fixtures/ │ │ ├── dns.raw.dump │ │ ├── ehow.com.raw.dump │ │ ├── furbo.org.raw.dump │ │ └── go.com.raw.dump │ ├── domain-profiler_spec.rb │ ├── ip-to-asn/ │ │ └── ip-to-asn_spec.rb │ ├── name/ │ │ └── name_spec.rb │ ├── rcov.opts │ ├── spec.opts │ ├── spec_helper.rb │ ├── ssl/ │ │ ├── fixtures/ │ │ │ ├── openssl.raw.dump │ │ │ └── openssl.single.raw.dump │ │ └── ssl_spec.rb │ ├── whois/ │ │ ├── fixtures/ │ │ │ ├── furbo.org.raw.dump │ │ │ └── zombo.com.raw.dump │ │ └── whois_spec.rb │ └── whois-orgname/ │ └── whois_spec.rb ├── techstars-list ├── techstars.html ├── view/ │ ├── html │ └── text ├── ycombinator-companies-using-godaddy ├── ycombinator-list ├── ycombinator-list-all └── ycombinator.html