- @WhiteHouse -- (22 of 48)
- @AP -- (19 of 48)
- @GovChristie -- (18 of 48)
- @politico -- (18 of 48)
- @NatlGovsAssoc -- (17 of 48)
- @WSJ -- (15 of 48)
- @The_RGA -- (15 of 48)
- @washingtonpost -- (14 of 48)
- @thehill -- (262 of 405)
- @cspan -- (252 of 405)
- @politico -- (248 of 405)
- @SpeakerBoehner -- (247 of 405)
- @rollcall -- (241 of 405)
- @GOPLeader -- (227 of 405)
- @mikeallen -- (215 of 405)
- @WhiteHouse -- (210 of 405)
- @ycombinator -- (48 of 176)
- @Scobleizer -- (43 of 176)
- @TechCrunch -- (38 of 176)
- @hootsuite -- (36 of 176)
- @alexisohanian -- (33 of 176)
- @paulg -- (31 of 176)
- @garrytan -- (29 of 176)
- @politico -- (53 of 100)
- @SenJohnMcCain -- (52 of 100)
- @ChuckGrassley -- (50 of 100)
- @lisamurkowski -- (50 of 100)
- @GrahamBlog -- (48 of 100)
- @SenatorCollins -- (48 of 100)
- @SenatorReid -- (47 of 100)
- @TomCoburn -- (47 of 100)
- @paulg -- (262 of 389)
- @ycombinator -- (257 of 389)
- @garrytan -- (203 of 389)
- @Harjeet -- (197 of 389)
- @paultoo -- (177 of 389)
- @fredwilson -- (171 of 389)
- @sacca -- (162 of 389)
- @alexisohanian -- (156 of 389)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- facebook & twitter og tags --> | |
| <meta name="twitter:card" content="summary"> | |
| {% if this.custom.open_graph.og_title %} | |
| <meta property="og:title" content="{{ this.custom.open_graph.og_title }}"> | |
| <meta name="twitter:title" content="{{ this.custom.open_graph.og_title }}"> | |
| {% elseif this.type == "home" %} | |
| <meta property="og:title" content="{{ hifi.settings.title }}"> | |
| <meta name="twitter:title" content="{{ hifi.settings.title }}"> | |
| {% elseif this.meta.title %} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // <form class="small-signup js-ngp-form" action="https://api.myngp.com/v2/Forms/-22033861227691015168" method="post" target="_blank"> | |
| // <input id="Version" name="Version" type="hidden" value="AAAAA3iOF2A=" /> | |
| // <input id="id" name="id" type="hidden" value="-22033823117691015168" /> | |
| // <input id="ObfuscatedMailingId" name="ObfuscatedMailingId" type="hidden" value="" /> | |
| // <input id="TenantName" name="TenantName" type="hidden" value="lfjeld" /> | |
| // <input id="SourceCodeIds" name="SourceCodeIds" type="hidden" value="" /> | |
| // <input id="MarketSource" name="MarketSource" type="hidden" value="" /> | |
| // <input id="formType" name="formType" type="hidden" value="SignupForm" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'pp' | |
| require 'active_support/all' | |
| # require 'colored' | |
| require 'json' | |
| results = JSON.parse(File.read("../json/raw/dump-data-science.json")) | |
| geo_json = { | |
| :type => "FeatureCollection", | |
| :features => [] |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| hasClass: function (elem, className) { | |
| if (classList) { | |
| return elem.classList.contains(className); | |
| } else { | |
| return new RegExp('(^|\\s)' + className + '(\\s|$)').test(elem.className); | |
| } | |
| }, | |
| addClass: function (elem, className) { | |
| if (!this.hasClass(elem, className)) { | |
| if (classList) { |