Last active
August 29, 2015 14:04
-
-
Save dannguyen/3c6948280c8b613b9df0 to your computer and use it in GitHub Desktop.
A script to scrape what nytimes.com recommends to me and also, what is popular among other users
This file contains 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
#!/usr/bin/env ruby | |
# nyt-list-scrape.rb | |
# Dan Nguyen @dancow | |
# Created: 2014-07-26 | |
# Updated: 2014-07-29 | |
# | |
# Scrape the titles/urls of articles recommended to the user by the NYT, | |
# and also, the most popular ones at the moment | |
# | |
# Requirements: Ruby 1.9.x and the Mechanize gem and a NYT digital subscriber account | |
# | |
# Usage: | |
# Run the script at the commandline and pass in two arguments: user_id and password | |
# | |
# ruby nyt-list-scrape.rb [email protected] mypassword123 (third arg can be 1 to turn verbose mode) | |
# | |
# This will create a subdirectory called "./nyt-list-scrapes" | |
# with a timestamped CSV: "./nyt-list-scrapes/2014-07-26_10_30.csv" | |
# | |
# in this format: | |
# | |
# headline,rank,list,period,url,timestamp_collected | |
# "C.D.C. Says Hello",1,recommendations,,http://www.nytimes.com/2014/07/25/health/cdc-says-hello,2014-07-22 10:30 | |
# ... | |
# "C.D.C. Says Hello",4,most-popular-twitter,7,http://www.nytimes.com/2014/07/25/health/cdc-says-hello,2014-07-22 10:30 | |
# | |
require 'mechanize' | |
require 'open-uri' | |
require 'csv' | |
my_user_id = ARGV[0] | |
my_password = ARGV[1] | |
is_verbose = ARGV[2].to_i == 1 | |
## Initialize agent | |
agent = Mechanize.new { |a| a.user_agent_alias = 'Mac Safari' } | |
agent.get('https://myaccount.nytimes.com/auth/login') do |login| | |
login.form.userid = my_user_id | |
login.form.password = my_password | |
login.form.submit | |
end | |
puts "Successfully authenticated as #{my_user_id}" if is_verbose | |
timestamp = Time.now | |
# open up CSV | |
subdir = File.expand_path '../nyt-list-scrapes', __FILE__ | |
Dir.mkdir(subdir) unless Dir.exists?(subdir) | |
fname = File.join subdir, "#{timestamp.strftime('%Y-%m-%d_%H_%M')}.csv" | |
csv = CSV.open(fname, 'w', headers: true) | |
csv << %w(headline rank list period url timestamp_collected) | |
puts "Saving to #{fname}" if is_verbose | |
# get recommendations and recently-read, as | |
# they both exist on the same page | |
list_url = "http://www.nytimes.com/recommendations" | |
puts '', "-----------", list_url if is_verbose if is_verbose | |
agent.get(list_url) do |list_page| | |
## first get recommendations | |
list_page.search('.story h3 a').each_with_index do |a, rank| | |
title = a.text.gsub(/\s+/, ' ').strip | |
base_href = a.attr('href').sub(/\?.+$/, '') # don't need the analytics parameters | |
csv << [title, (rank + 1), 'recommendations', nil, base_href, timestamp.to_s ] | |
puts ['recommendations', (rank + 1), title].join("\t") if is_verbose | |
end | |
sleep 1 | |
## get list of things I've recently read (and put date of reading in timestamp column) | |
list_page.search('.recentreads .story').each_with_index do |story, rank| | |
a = story.search('h5 a').first | |
title = a.text.gsub(/\s+/, ' ').strip | |
base_href = a.attr('href').sub(/\?.+$/, '') # don't need the analytics parameters | |
story_read_date = Time.parse(story.search('.dateline').text).strftime("%Y-%m-%d") | |
csv << [title, (rank + 1), 'recently-read', nil, base_href, story_read_date] | |
puts ['recently-read', story_read_date, (rank + 1), title].join("\t") if is_verbose | |
end | |
end | |
### Don't really need Mechanize for this, but might as well just use the same call | |
### popular lists | |
lists = ['most-popular-viewed', 'most-popular-emailed', 'most-popular-blogged', 'most-popular-tweeted', 'most-popular-facebook'].product([1, 7, 30]) | |
lists.each do |(list_name, period)| | |
list_url = "http://www.nytimes.com/#{list_name}?period=#{period}" | |
puts '', "-----------", list_url if is_verbose if is_verbose | |
agent.get(list_url) do |list_page| | |
list_page.search('.story h3 a').each_with_index do |a, rank| | |
title = a.text.gsub(/\s+/, ' ').strip | |
base_href = a.attr('href').sub(/\?.+$/, '') # don't need the analytics parameters | |
csv << [title, (rank + 1), list_name, period, base_href, timestamp.to_s ] | |
puts [list_name, period, (rank + 1), title].join("\t") if is_verbose | |
end | |
sleep 1 | |
end | |
end | |
# hell, let's get front page and mobile too | |
[["www", ['#top-news', '.c-column-top-span-region'], '.story-heading a'], | |
["mobile", ['#articles'], '.headlines li > a'] | |
].each do |(cname, sections, selector)| | |
agent.get("http://#{cname}.nytimes.com") do |page| | |
sections.each do |section_name| | |
page.search("#{section_name} #{selector}").each_with_index do |a, rank| | |
list_name = "#{cname} #{section_name}" | |
title = a.text.gsub(/\s+/, ' ').strip | |
base_href = a.attr('href').sub(/\?.+$/, '') # don't need the analytics parameters | |
csv << [title, (rank + 1), list_name, "", base_href, timestamp.to_s ] | |
puts [list_name, (rank + 1), title].join("\t") if is_verbose | |
end | |
end | |
end | |
end | |
# Output of the program to terminal will look like: | |
# ----------- | |
# http://www.nytimes.com/most-popular-tweeted?period=1 | |
# most-popular-tweeted 1 1 Left Coast Rising | |
# most-popular-tweeted 1 2 Don’t Teach Math, Coach It | |
# most-popular-tweeted 1 3 Russia Steps Up Help for Rebels in Ukraine War | |
# most-popular-tweeted 1 4 Why Do Americans Stink at Math? | |
# most-popular-tweeted 1 5 U.S. Considering Refugee Status for Hondurans |
This file contains 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
headline | rank | list | period | url | timestamp_collected | |
---|---|---|---|---|---|---|
Troops Move on Crash Site in Ukraine, Foiling Deal | 1 | recommendations | http://www.nytimes.com/2014/07/28/world/europe/ukraine.html | 2014-07-29 23:27:27 -0400 | ||
India's Press Under Siege | 2 | recommendations | http://www.nytimes.com/2014/07/28/opinion/Indias-Press-Under-Siege.html | 2014-07-29 23:27:27 -0400 | ||
Community Colleges | 3 | recommendations | http://www.nytimes.com/2014/07/28/opinion/Community-Colleges.html | 2014-07-29 23:27:27 -0400 | ||
OKCupid Plays With Love in User Experiments | 4 | recommendations | http://www.nytimes.com/2014/07/29/technology/okcupid-publishes-findings-of-user-experiments.html | 2014-07-29 23:27:27 -0400 | ||
The New Instability | 5 | recommendations | http://www.nytimes.com/2014/07/27/opinion/sunday/the-new-instability.html | 2014-07-29 23:27:27 -0400 | ||
After a Death in the Peace Corps | 6 | recommendations | http://www.nytimes.com/2014/07/30/opinion/after-a-death-in-the-peace-corps.html | 2014-07-29 23:27:27 -0400 | ||
Honoring a Filmmaker in the Shadow of Apartheid | 7 | recommendations | http://www.nytimes.com/2014/07/30/world/africa/honoring-a-filmmaker-in-the-shadow-of-apartheid.html | 2014-07-29 23:27:27 -0400 | ||
Australian Cafes Arrive in New York | 8 | recommendations | http://www.nytimes.com/2014/07/30/dining/australians-arrive-serving-breakfast.html | 2014-07-29 23:27:27 -0400 | ||
Daily Report: OKCupid Experiments on Seekers of Romance | 9 | recommendations | http://bits.blogs.nytimes.com/2014/07/29/daily-report-okcupid-experiments-on-seekers-of-romance/ | 2014-07-29 23:27:27 -0400 | ||
Texas Gets Love Letter in ‘Boyhood’ | 10 | recommendations | http://www.nytimes.com/2014/07/27/us/texas-gets-love-letter-in-boyhood.html | 2014-07-29 23:27:27 -0400 | ||
The Injustice of Marijuana Arrests | 11 | recommendations | http://www.nytimes.com/2014/07/29/opinion/high-time-the-injustice-of-marijuana-arrests.html | 2014-07-29 23:27:27 -0400 | ||
Hotel in Manhattan Ordered to Halt Sale of Time Shares After Buyers Complain | 12 | recommendations | http://www.nytimes.com/2014/07/26/nyregion/manhattan-hotel-ordered-to-halt-sale-of-time-shares.html | 2014-07-29 23:27:27 -0400 | ||
2nd Air Algérie Black Box Is Found in Mali | 13 | recommendations | http://www.nytimes.com/2014/07/27/world/africa/2nd-air-algerie-black-box-is-found-in-mali.html | 2014-07-29 23:27:27 -0400 | ||
Rustle, Tingle, Relax: The Compelling World of A.S.M.R. | 14 | recommendations | http://well.blogs.nytimes.com/2014/07/28/rustle-tingle-relax-the-compelling-world-of-a-s-m-r/ | 2014-07-29 23:27:27 -0400 | ||
Amazon Joins With Alloy Entertainment on Digital Publishing Imprint | 15 | recommendations | http://www.nytimes.com/2014/07/30/business/media/amazon-joins-with-alloy-entertainment-on-digital-publishing-imprint.html | 2014-07-29 23:27:27 -0400 | ||
Car-Hailing Service, Lyft, Reaches Deal to Operate in New York City | 16 | recommendations | http://www.nytimes.com/2014/07/26/nyregion/lyft-reaches-deal-to-operate-car-hailing-service-in-new-york.html | 2014-07-29 23:27:27 -0400 | ||
Groups Press New York State to Ban Poisons That Kill Wildlife | 17 | recommendations | http://www.nytimes.com/2014/07/28/nyregion/groups-press-state-to-ban-poisons-that-kill-wildlife.html | 2014-07-29 23:27:27 -0400 | ||
Think It’s Hot in Texas? Austin Knows Better (Get Used to 110) | 18 | recommendations | http://www.nytimes.com/2014/07/27/us/global-warming-think-its-hot-in-texas-austin-knows-better-get-used-to-110.html | 2014-07-29 23:27:27 -0400 | ||
Junkyards Feel the Sting of a Visit From a Copper Cable Guy | 19 | recommendations | http://www.nytimes.com/2014/07/26/nyregion/junkyards-feel-the-sting-of-a-visit-from-a-copper-cable-guy.html | 2014-07-29 23:27:27 -0400 | ||
A Stronger Bill to Limit Surveillance | 20 | recommendations | http://www.nytimes.com/2014/07/28/opinion/a-stronger-bill-to-limit-surveillance.html | 2014-07-29 23:27:27 -0400 | ||
Cambodia Looks to Put Its Rice on the World’s Plate | 1 | recently-read | http://www.nytimes.com/2014/07/30/business/international/cambodia-looks-to-put-its-rice-on-the-worlds-plate.html | 2014-07-29 | ||
New York Times Co. Gains Circulation, but Profit Falls 21% | 2 | recently-read | http://www.nytimes.com/2014/07/30/business/despite-circulation-gains-profit-falls-21-at-new-york-times-co.html | 2014-07-29 | ||
How the Government Exaggerates the Cost of College | 3 | recently-read | http://www.nytimes.com/2014/07/29/upshot/how-the-government-exaggerates-the-cost-of-college.html | 2014-07-29 | ||
Online Tool for Young Bankers Raises $1 Million in Funding | 4 | recently-read | http://dealbook.nytimes.com/2014/07/28/online-tool-for-young-bankers-raises-1-million-in-funding/ | 2014-07-28 | ||
Dollar Tree Steps Up Fight, Buys Family Dollar | 5 | recently-read | http://www.nytimes.com/aponline/2014/07/28/us/ap-us-dollar-tree-family-dollar.html | 2014-07-28 | ||
Can Reddit Grow Up? | 6 | recently-read | http://www.nytimes.com/2014/07/28/technology/can-reddit-grow-up.html | 2014-07-28 | ||
Ira Glass’s ‘This American Life’ Leaves PRI | 7 | recently-read | http://www.nytimes.com/2014/07/06/arts/ira-glasss-this-american-life-leaves-pri.html | 2014-07-28 | ||
A Carter for Governor, Again | 8 | recently-read | http://www.nytimes.com/video/us/politics/100000003018967/a-carter-for-governor-again.html | 2014-07-28 | ||
In Search for Killer, DNA Sweep Exposes Intimate Family Secrets in Italy | 9 | recently-read | http://www.nytimes.com/2014/07/27/world/europe/in-search-for-killer-dna-sweep-exposes-intimate-family-secrets-in-italy.html | 2014-07-27 | ||
Plagiarism Scandal Tests a Senator Still Forming a Rapport With Montanans | 10 | recently-read | http://www.nytimes.com/2014/07/26/us/politics/plagiarism-scandal-tests-a-senator-still-forming-a-rapport-with-montanans.html | 2014-07-27 | ||
Tunnels Lead Right to the Heart of Israeli Fear | 1 | most-popular-viewed | 1 | http://www.nytimes.com/2014/07/29/world/middleeast/tunnels-lead-right-to-heart-of-israeli-fear.html | 2014-07-29 23:27:27 -0400 | |
Israel Steps Up Airstrikes in Gaza as International Cease-Fire Efforts Stumble | 2 | most-popular-viewed | 1 | http://www.nytimes.com/2014/07/30/world/middleeast/gaza-israel-violence.html | 2014-07-29 23:27:27 -0400 | |
Another Win for Ex-Governor and Wrestler, This One in Court | 3 | most-popular-viewed | 1 | http://www.nytimes.com/2014/07/30/us/jesse-ventura-chris-kyle-navy-seal-book-lawsuit.html | 2014-07-29 23:27:27 -0400 | |
No War Is an Island | 4 | most-popular-viewed | 1 | http://www.nytimes.com/2014/07/29/opinion/david-brooks-when-middle-east-conflicts-become-one.html | 2014-07-29 23:27:27 -0400 | |
Paying Ransoms, Europe Bankrolls Qaeda Terror | 5 | most-popular-viewed | 1 | http://www.nytimes.com/2014/07/30/world/africa/ransoming-citizens-europe-becomes-al-qaedas-patron.html | 2014-07-29 23:27:27 -0400 | |
The D.O. Is In Now | 6 | most-popular-viewed | 1 | http://www.nytimes.com/2014/08/03/education/edlife/the-osteopathic-branch-of-medicine-is-booming.html | 2014-07-29 23:27:27 -0400 | |
U.S. Says Russia Tested Cruise Missile, Violating Treaty | 7 | most-popular-viewed | 1 | http://www.nytimes.com/2014/07/29/world/europe/us-says-russia-tested-cruise-missile-in-violation-of-treaty.html | 2014-07-29 23:27:27 -0400 | |
OKCupid Plays With Love in User Experiments | 8 | most-popular-viewed | 1 | http://www.nytimes.com/2014/07/29/technology/okcupid-publishes-findings-of-user-experiments.html | 2014-07-29 23:27:27 -0400 | |
When Cell Door Opens, Tough Tactics and Risk | 9 | most-popular-viewed | 1 | http://www.nytimes.com/2014/07/29/us/when-cell-door-opens-tough-tactics-and-risk.html | 2014-07-29 23:27:27 -0400 | |
Colonial Folly, European Suicide | 10 | most-popular-viewed | 1 | http://www.nytimes.com/2014/07/29/opinion/adam-hochschild-why-world-war-i-was-such-a-blood-bath.html | 2014-07-29 23:27:27 -0400 | |
On Subway, Flying Feet Can Lead to Handcuffs | 11 | most-popular-viewed | 1 | http://www.nytimes.com/2014/07/29/nyregion/29acrobats.html | 2014-07-29 23:27:27 -0400 | |
The Injustice of Marijuana Arrests | 12 | most-popular-viewed | 1 | http://www.nytimes.com/2014/07/29/opinion/high-time-the-injustice-of-marijuana-arrests.html | 2014-07-29 23:27:27 -0400 | |
Coordinated Sanctions Aim at Russia’s Ability to Tap Its Oil Reserves | 13 | most-popular-viewed | 1 | http://www.nytimes.com/2014/07/30/world/europe/european-sanctions-russia.html | 2014-07-29 23:27:27 -0400 | |
The New York Times Calls for Marijuana Legalization | 14 | most-popular-viewed | 1 | http://www.nytimes.com/interactive/2014/07/27/opinion/sunday/high-time-marijuana-legalization.html | 2014-07-29 23:27:27 -0400 | |
Zionism and Its Discontents | 15 | most-popular-viewed | 1 | http://www.nytimes.com/2014/07/30/opinion/roger-cohen-zionism-and-israels-war-with-hamas-in-gaza.html | 2014-07-29 23:27:27 -0400 | |
Building a Better College Ranking System. Wait, Babson Beats Harvard? | 16 | most-popular-viewed | 1 | http://www.nytimes.com/2014/07/29/upshot/building-a-better-college-ranking-system-babson-beats-harvard.html | 2014-07-29 23:27:27 -0400 | |
U.S. and Europe Set to Toughen Russia Sanctions | 17 | most-popular-viewed | 1 | http://www.nytimes.com/2014/07/29/world/europe/us-and-europe-agree-to-escalate-sanctions-on-russia.html | 2014-07-29 23:27:27 -0400 | |
Teaching Teaching | 18 | most-popular-viewed | 1 | http://www.nytimes.com/2014/07/29/opinion/joe-nocera-teaching-teaching.html | 2014-07-29 23:27:27 -0400 | |
When the Caregivers Need Healing | 19 | most-popular-viewed | 1 | http://www.nytimes.com/2014/07/29/health/when-the-caregivers-need-healing.html | 2014-07-29 23:27:27 -0400 | |
Workout Clothes With High-Tech Twist Sell Briskly | 20 | most-popular-viewed | 1 | http://www.nytimes.com/2014/07/29/business/workout-clothes-with-high-tech-twist-sell-briskly.html | 2014-07-29 23:27:27 -0400 | |
The New York Times Calls for Marijuana Legalization | 1 | most-popular-viewed | 7 | http://www.nytimes.com/interactive/2014/07/27/opinion/sunday/high-time-marijuana-legalization.html | 2014-07-29 23:27:27 -0400 | |
Why Do Americans Stink at Math? | 2 | most-popular-viewed | 7 | http://www.nytimes.com/2014/07/27/magazine/why-do-americans-stink-at-math.html | 2014-07-29 23:27:27 -0400 | |
New Questions on Health Law as Rulings on Subsidies Differ | 3 | most-popular-viewed | 7 | http://www.nytimes.com/2014/07/23/us/court-rules-against-obamacare-exchange-subsidies.html | 2014-07-29 23:27:27 -0400 | |
Wreckage Offers Clues on Why Flight 17 Went Down | 4 | most-popular-viewed | 7 | http://www.nytimes.com/interactive/2014/07/21/world/europe/wreckage-offers-clues-on-why-flight-17-went-down.html | 2014-07-29 23:27:27 -0400 | |
Victims of Malaysia Airlines Flight 17 | 5 | most-popular-viewed | 7 | http://www.nytimes.com/interactive/2014/07/19/world/europe/malaysia-airlines-plane-victims.html | 2014-07-29 23:27:27 -0400 | |
Left Coast Rising | 6 | most-popular-viewed | 7 | http://www.nytimes.com/2014/07/25/opinion/paul-krugman-california-tax-left-coast-rising.html | 2014-07-29 23:27:27 -0400 | |
Grandson Proudly Squirms in Carter’s Footsteps | 7 | most-popular-viewed | 7 | http://www.nytimes.com/2014/07/27/us/politics/grandson-proudly-squirms-in-carter8217s-footsteps.html | 2014-07-29 23:27:27 -0400 | |
Senator’s Thesis Turns Out to Be Remix of Others’ Works, Uncited | 8 | most-popular-viewed | 7 | http://www.nytimes.com/2014/07/24/us/politics/montana-senator-john-walsh-plagiarized-thesis.html | 2014-07-29 23:27:27 -0400 | |
Tunnels Lead Right to the Heart of Israeli Fear | 9 | most-popular-viewed | 7 | http://www.nytimes.com/2014/07/29/world/middleeast/tunnels-lead-right-to-heart-of-israeli-fear.html | 2014-07-29 23:27:27 -0400 | |
Jet Wreckage Bears Signs of Impact by Supersonic Missile, Analysis Shows | 10 | most-popular-viewed | 7 | http://www.nytimes.com/2014/07/22/world/europe/jet-wreckage-bears-signs-of-impact-by-supersonic-missile-analysis-shows.html | 2014-07-29 23:27:27 -0400 | |
An Idiot’s Guide to Inequality | 11 | most-popular-viewed | 7 | http://www.nytimes.com/2014/07/24/opinion/nicholas-kristof-idiots-guide-to-inequality-piketty-capital.html | 2014-07-29 23:27:27 -0400 | |
The Typical Household, Now Worth a Third Less | 12 | most-popular-viewed | 7 | http://www.nytimes.com/2014/07/27/business/the-typical-household-now-worth-a-third-less.html | 2014-07-29 23:27:27 -0400 | |
Hamas Gambled on War as Its Woes Grew in Gaza | 13 | most-popular-viewed | 7 | http://www.nytimes.com/2014/07/23/world/middleeast/hamas-gambled-on-war-as-its-woes-grew-in-gaza.html | 2014-07-29 23:27:27 -0400 | |
U.S. Considering Refugee Status for Hondurans | 14 | most-popular-viewed | 7 | http://www.nytimes.com/2014/07/25/world/americas/administration-weighs-plan-to-move-processing-of-youths-seeking-entry-to-honduras-.html | 2014-07-29 23:27:27 -0400 | |
Blasts Kill 16 Seeking Haven at Gaza School | 15 | most-popular-viewed | 7 | http://www.nytimes.com/2014/07/25/world/middleeast/despite-talk-of-a-cease-fire-no-lull-in-gaza-fighting.html | 2014-07-29 23:27:27 -0400 | |
Trail of Medical Missteps in a Peace Corps Death | 16 | most-popular-viewed | 7 | http://www.nytimes.com/2014/07/26/world/asia/peace-corps-death-china-medical-missteps.html | 2014-07-29 23:27:27 -0400 | |
Life in a Jihadist Capital: Order With a Darker Side | 17 | most-popular-viewed | 7 | http://www.nytimes.com/2014/07/24/world/middleeast/islamic-state-controls-raqqa-syria.html | 2014-07-29 23:27:27 -0400 | |
Heady Summer, Fateful Fall for Dinesh D’Souza, a Conservative Firebrand | 18 | most-popular-viewed | 7 | http://www.nytimes.com/2014/07/25/business/media/heady-summer-fateful-fall-for-a-conservative-firebrand.html | 2014-07-29 23:27:27 -0400 | |
Russia Steps Up Help for Rebels in Ukraine War | 19 | most-popular-viewed | 7 | http://www.nytimes.com/2014/07/26/world/europe/russian-artillery-fires-into-ukraine-kiev-says.html | 2014-07-29 23:27:27 -0400 | |
A Search and Destroy Thyself Mission | 20 | most-popular-viewed | 7 | http://www.nytimes.com/2014/07/25/movies/a-most-wanted-man-with-philip-seymour-hoffman.html | 2014-07-29 23:27:27 -0400 | |
World Cup 2014: Germany Defeats Brazil, 7-1 | 1 | most-popular-viewed | 30 | http://www.nytimes.com/interactive/2014/07/08/sports/worldcup/world-cup-brazil-vs-germany.html | 2014-07-29 23:27:27 -0400 | |
Victims of Malaysia Airlines Flight 17 | 2 | most-popular-viewed | 30 | http://www.nytimes.com/interactive/2014/07/19/world/europe/malaysia-airlines-plane-victims.html | 2014-07-29 23:27:27 -0400 | |
Jetliner Explodes Over Ukraine; Struck by Missile, Officials Say | 3 | most-popular-viewed | 30 | http://www.nytimes.com/2014/07/18/world/europe/malaysian-airlines-plane-ukraine.html | 2014-07-29 23:27:27 -0400 | |
U.S. Sees Evidence of Russian Links to Jet’s Downing | 4 | most-popular-viewed | 30 | http://www.nytimes.com/2014/07/19/world/europe/malaysia-airlines-plane-ukraine.html | 2014-07-29 23:27:27 -0400 | |
World Cup 2014: Belgium Eliminates U.S.A., 2-1 | 5 | most-popular-viewed | 30 | http://www.nytimes.com/interactive/2014/07/01/sports/worldcup/world-cup-usa-vs-belgium.html | 2014-07-29 23:27:27 -0400 | |
Reporting Rape, and Wishing She Hadn’t | 6 | most-popular-viewed | 30 | http://www.nytimes.com/2014/07/13/us/how-one-college-handled-a-sexual-assault-complaint.html | 2014-07-29 23:27:27 -0400 | |
World Cup 2014: Argentina Defeats Netherlands in Shootout, Advancing to Final | 7 | most-popular-viewed | 30 | http://www.nytimes.com/interactive/2014/07/09/sports/worldcup/world-cup-netherlands-vs-argentina.html | 2014-07-29 23:27:27 -0400 | |
The New York Times Calls for Marijuana Legalization | 8 | most-popular-viewed | 30 | http://www.nytimes.com/interactive/2014/07/27/opinion/sunday/high-time-marijuana-legalization.html | 2014-07-29 23:27:27 -0400 | |
World Cup 2014: Germany Defeats Argentina, 1-0, in Extra Time to Win Final | 9 | most-popular-viewed | 30 | http://www.nytimes.com/interactive/2014/07/13/sports/worldcup/world-cup-final-germany-vs-argentina.html | 2014-07-29 23:27:27 -0400 | |
Fallen Bodies, Jet Parts and a Child’s Pink Book | 10 | most-popular-viewed | 30 | http://www.nytimes.com/2014/07/18/world/europe/malaysia-airlines-plane-leaves-trail-of-debris.html | 2014-07-29 23:27:27 -0400 | |
Why Do Americans Stink at Math? | 11 | most-popular-viewed | 30 | http://www.nytimes.com/2014/07/27/magazine/why-do-americans-stink-at-math.html | 2014-07-29 23:27:27 -0400 | |
How Birth Year Influences Political Views | 12 | most-popular-viewed | 30 | http://www.nytimes.com/interactive/2014/07/08/upshot/how-the-year-you-were-born-influences-your-politics.html | 2014-07-29 23:27:27 -0400 | |
Russia’s Message on Jet: Conciliation and Bluster | 13 | most-popular-viewed | 30 | http://www.nytimes.com/2014/07/22/world/europe/putin-calls-for-talks-in-ukraine-and-a-robust-crash-investigation.html | 2014-07-29 23:27:27 -0400 | |
Love People, Not Pleasure | 14 | most-popular-viewed | 30 | http://www.nytimes.com/2014/07/20/opinion/sunday/arthur-c-brooks-love-people-not-pleasure.html | 2014-07-29 23:27:27 -0400 | |
Before Shooting in Iraq, a Warning on Blackwater | 15 | most-popular-viewed | 30 | http://www.nytimes.com/2014/06/30/us/before-shooting-in-iraq-warning-on-blackwater.html | 2014-07-29 23:27:27 -0400 | |
How Fan Loyalty Changed During the World Cup | 16 | most-popular-viewed | 30 | http://www.nytimes.com/interactive/2014/07/12/upshot/how-fan-loyalty-changed-during-the-world-cup.html | 2014-07-29 23:27:27 -0400 | |
Goal, Goal, Goal, Goal, Goal, Goal, Goal, and Brazil’s Day Goes Dark | 17 | most-popular-viewed | 30 | http://www.nytimes.com/2014/07/09/sports/worldcup/world-cup-2014-host-brazil-stunned-7-1-by-germany-in-semifinal.html | 2014-07-29 23:27:27 -0400 | |
Let's Cool It in the Bedroom | 18 | most-popular-viewed | 30 | http://well.blogs.nytimes.com/2014/07/17/lets-cool-it-in-the-bedroom/ | 2014-07-29 23:27:27 -0400 | |
Isn’t It Rich? | 19 | most-popular-viewed | 30 | http://www.nytimes.com/2014/07/13/opinion/sunday/maureen-dowd-isnt-it-rich.html | 2014-07-29 23:27:27 -0400 | |
The Letters That Warren G. Harding’s Family Didn’t Want You to See | 20 | most-popular-viewed | 30 | http://www.nytimes.com/2014/07/13/magazine/letters-warren-g-harding.html | 2014-07-29 23:27:27 -0400 | |
No War Is an Island | 1 | most-popular-emailed | 1 | http://www.nytimes.com/2014/07/29/opinion/david-brooks-when-middle-east-conflicts-become-one.html | 2014-07-29 23:27:27 -0400 | |
The D.O. Is In Now | 2 | most-popular-emailed | 1 | http://www.nytimes.com/2014/08/03/education/edlife/the-osteopathic-branch-of-medicine-is-booming.html | 2014-07-29 23:27:27 -0400 | |
When the Caregivers Need Healing | 3 | most-popular-emailed | 1 | http://www.nytimes.com/2014/07/29/health/when-the-caregivers-need-healing.html | 2014-07-29 23:27:27 -0400 | |
Teaching Teaching | 4 | most-popular-emailed | 1 | http://www.nytimes.com/2014/07/29/opinion/joe-nocera-teaching-teaching.html | 2014-07-29 23:27:27 -0400 | |
Zionism and Its Discontents | 5 | most-popular-emailed | 1 | http://www.nytimes.com/2014/07/30/opinion/roger-cohen-zionism-and-israels-war-with-hamas-in-gaza.html | 2014-07-29 23:27:27 -0400 | |
Colonial Folly, European Suicide | 6 | most-popular-emailed | 1 | http://www.nytimes.com/2014/07/29/opinion/adam-hochschild-why-world-war-i-was-such-a-blood-bath.html | 2014-07-29 23:27:27 -0400 | |
Rustle, Tingle, Relax: The Compelling World of A.S.M.R. | 7 | most-popular-emailed | 1 | http://well.blogs.nytimes.com/2014/07/28/rustle-tingle-relax-the-compelling-world-of-a-s-m-r/ | 2014-07-29 23:27:27 -0400 | |
Why Do Americans Stink at Math? | 8 | most-popular-emailed | 1 | http://www.nytimes.com/2014/07/27/magazine/why-do-americans-stink-at-math.html | 2014-07-29 23:27:27 -0400 | |
Masterworks vs. the Masses | 9 | most-popular-emailed | 1 | http://www.nytimes.com/2014/07/29/arts/design/european-museums-straining-under-weight-of-popularity.html | 2014-07-29 23:27:27 -0400 | |
Tunnels Lead Right to the Heart of Israeli Fear | 10 | most-popular-emailed | 1 | http://www.nytimes.com/2014/07/29/world/middleeast/tunnels-lead-right-to-heart-of-israeli-fear.html | 2014-07-29 23:27:27 -0400 | |
The Injustice of Marijuana Arrests | 11 | most-popular-emailed | 1 | http://www.nytimes.com/2014/07/29/opinion/high-time-the-injustice-of-marijuana-arrests.html | 2014-07-29 23:27:27 -0400 | |
Nursing Home Unthinkable? Be Prepared in Case It's Inevitable | 12 | most-popular-emailed | 1 | http://well.blogs.nytimes.com/2014/07/28/nursing-home-unthinkable-be-prepared-in-case-its-inevitable/ | 2014-07-29 23:27:27 -0400 | |
Workout Clothes With High-Tech Twist Sell Briskly | 13 | most-popular-emailed | 1 | http://www.nytimes.com/2014/07/29/business/workout-clothes-with-high-tech-twist-sell-briskly.html | 2014-07-29 23:27:27 -0400 | |
The Great Giant Flea Hunt | 14 | most-popular-emailed | 1 | http://www.nytimes.com/2014/07/29/science/the-great-giant-flea-hunt.html | 2014-07-29 23:27:27 -0400 | |
OKCupid Plays With Love in User Experiments | 15 | most-popular-emailed | 1 | http://www.nytimes.com/2014/07/29/technology/okcupid-publishes-findings-of-user-experiments.html | 2014-07-29 23:27:27 -0400 | |
Paying Ransoms, Europe Bankrolls Qaeda Terror | 16 | most-popular-emailed | 1 | http://www.nytimes.com/2014/07/30/world/africa/ransoming-citizens-europe-becomes-al-qaedas-patron.html | 2014-07-29 23:27:27 -0400 | |
How the Government Exaggerates the Cost of College | 17 | most-popular-emailed | 1 | http://www.nytimes.com/2014/07/29/upshot/how-the-government-exaggerates-the-cost-of-college.html | 2014-07-29 23:27:27 -0400 | |
Building a Better College Ranking System. Wait, Babson Beats Harvard? | 18 | most-popular-emailed | 1 | http://www.nytimes.com/2014/07/29/upshot/building-a-better-college-ranking-system-babson-beats-harvard.html | 2014-07-29 23:27:27 -0400 | |
An Israel Without Illusions | 19 | most-popular-emailed | 1 | http://www.nytimes.com/2014/07/28/opinion/david-grossman-end-the-grindstone-of-israeli-palestinian-violence.html | 2014-07-29 23:27:27 -0400 | |
Standing 100 Years? So You Should Sit | 20 | most-popular-emailed | 1 | http://www.nytimes.com/2014/07/30/dining/restaurant-review-russ-daughters-cafe.html | 2014-07-29 23:27:27 -0400 | |
Why Do Americans Stink at Math? | 1 | most-popular-emailed | 7 | http://www.nytimes.com/2014/07/27/magazine/why-do-americans-stink-at-math.html | 2014-07-29 23:27:27 -0400 | |
Don’t Teach Math, Coach It | 2 | most-popular-emailed | 7 | http://www.nytimes.com/2014/07/25/opinion/dont-teach-math-coach-it.html | 2014-07-29 23:27:27 -0400 | |
An Idiot’s Guide to Inequality | 3 | most-popular-emailed | 7 | http://www.nytimes.com/2014/07/24/opinion/nicholas-kristof-idiots-guide-to-inequality-piketty-capital.html | 2014-07-29 23:27:27 -0400 | |
What Writers Can Learn From 'Goodnight Moon' | 4 | most-popular-emailed | 7 | http://opinionator.blogs.nytimes.com/2014/07/19/what-writers-can-learn-from-good-night-moon/ | 2014-07-29 23:27:27 -0400 | |
A Sleep Apnea Test Without a Night in the Hospital | 5 | most-popular-emailed | 7 | http://well.blogs.nytimes.com/2014/07/21/a-test-you-want-to-sleep-through/ | 2014-07-29 23:27:27 -0400 | |
French Food Goes Down | 6 | most-popular-emailed | 7 | http://www.nytimes.com/2014/07/23/opinion/french-food-goes-down.html | 2014-07-29 23:27:27 -0400 | |
Angell in the Outfield | 7 | most-popular-emailed | 7 | http://www.nytimes.com/2014/07/27/opinion/sunday/maureen-dowd-angell-in-the-outfield.html | 2014-07-29 23:27:27 -0400 | |
No Time to Think | 8 | most-popular-emailed | 7 | http://www.nytimes.com/2014/07/27/sunday-review/no-time-to-think.html | 2014-07-29 23:27:27 -0400 | |
36 Hours in Provincetown, Mass. | 9 | most-popular-emailed | 7 | http://www.nytimes.com/2014/07/27/travel/36-hours-in-provincetown-mass.html | 2014-07-29 23:27:27 -0400 | |
Left Coast Rising | 10 | most-popular-emailed | 7 | http://www.nytimes.com/2014/07/25/opinion/paul-krugman-california-tax-left-coast-rising.html | 2014-07-29 23:27:27 -0400 | |
An Israel Without Illusions | 11 | most-popular-emailed | 7 | http://www.nytimes.com/2014/07/28/opinion/david-grossman-end-the-grindstone-of-israeli-palestinian-violence.html | 2014-07-29 23:27:27 -0400 | |
Love People, Not Pleasure | 12 | most-popular-emailed | 7 | http://www.nytimes.com/2014/07/20/opinion/sunday/arthur-c-brooks-love-people-not-pleasure.html | 2014-07-29 23:27:27 -0400 | |
Probiotic Logic vs. Gut Feelings | 13 | most-popular-emailed | 7 | http://well.blogs.nytimes.com/2014/07/21/probiotic-logic-vs-gut-feelings/ | 2014-07-29 23:27:27 -0400 | |
Beyond Energy, Matter, Time and Space | 14 | most-popular-emailed | 7 | http://www.nytimes.com/2014/07/22/science/beyond-energy-matter-time-and-space.html | 2014-07-29 23:27:27 -0400 | |
The Ultimate Veggie Burger | 15 | most-popular-emailed | 7 | http://www.nytimes.com/video/dining/100000003006171/ultimate-veggie-burger.html | 2014-07-29 23:27:27 -0400 | |
Masterworks vs. the Masses | 16 | most-popular-emailed | 7 | http://www.nytimes.com/2014/07/29/arts/design/european-museums-straining-under-weight-of-popularity.html | 2014-07-29 23:27:27 -0400 | |
Hold the Regret? Fast Food Seeks Virtuous Side | 17 | most-popular-emailed | 7 | http://www.nytimes.com/2014/07/26/nyregion/26fastfood.html | 2014-07-29 23:27:27 -0400 | |
Trail of Medical Missteps in a Peace Corps Death | 18 | most-popular-emailed | 7 | http://www.nytimes.com/2014/07/26/world/asia/peace-corps-death-china-medical-missteps.html | 2014-07-29 23:27:27 -0400 | |
The New York Times Calls for Marijuana Legalization | 19 | most-popular-emailed | 7 | http://www.nytimes.com/interactive/2014/07/27/opinion/sunday/high-time-marijuana-legalization.html | 2014-07-29 23:27:27 -0400 | |
Inside Man’s Best Friend, Study Says, May Lurk a Green-Eyed Monster | 20 | most-popular-emailed | 7 | http://www.nytimes.com/2014/07/24/science/entering-gray-area-study-says-dogs-can-be-green-with-envy.html | 2014-07-29 23:27:27 -0400 | |
Why Teenagers Act Crazy | 1 | most-popular-emailed | 30 | http://www.nytimes.com/2014/06/29/opinion/sunday/why-teenagers-act-crazy.html | 2014-07-29 23:27:27 -0400 | |
The Benefits of Failing at French | 2 | most-popular-emailed | 30 | http://www.nytimes.com/2014/07/16/opinion/16alexander.html | 2014-07-29 23:27:27 -0400 | |
Why Do Americans Stink at Math? | 3 | most-popular-emailed | 30 | http://www.nytimes.com/2014/07/27/magazine/why-do-americans-stink-at-math.html | 2014-07-29 23:27:27 -0400 | |
Love People, Not Pleasure | 4 | most-popular-emailed | 30 | http://www.nytimes.com/2014/07/20/opinion/sunday/arthur-c-brooks-love-people-not-pleasure.html | 2014-07-29 23:27:27 -0400 | |
A Different Path to Fighting Addiction | 5 | most-popular-emailed | 30 | http://www.nytimes.com/2014/07/06/nyregion/a-different-path-to-fighting-addiction.html | 2014-07-29 23:27:27 -0400 | |
The Master Ice Cream Recipe | 6 | most-popular-emailed | 30 | http://www.nytimes.com/interactive/2014/07/01/dining/the-master-ice-cream-recipe.html | 2014-07-29 23:27:27 -0400 | |
The Secret of Effective Motivation | 7 | most-popular-emailed | 30 | http://www.nytimes.com/2014/07/06/opinion/sunday/the-secret-of-effective-motivation.html | 2014-07-29 23:27:27 -0400 | |
Let's Cool It in the Bedroom | 8 | most-popular-emailed | 30 | http://well.blogs.nytimes.com/2014/07/17/lets-cool-it-in-the-bedroom/ | 2014-07-29 23:27:27 -0400 | |
We Are Our Bacteria | 9 | most-popular-emailed | 30 | http://well.blogs.nytimes.com/2014/07/14/we-are-our-bacteria/ | 2014-07-29 23:27:27 -0400 | |
Inequality Is Not Inevitable | 10 | most-popular-emailed | 30 | http://opinionator.blogs.nytimes.com/2014/06/27/inequality-is-not-inevitable/ | 2014-07-29 23:27:27 -0400 | |
At Zingerman’s, Pastrami and Partnership to Go | 11 | most-popular-emailed | 30 | http://www.nytimes.com/2014/07/06/business/at-zingermans-pastrami-and-partnership-to-go.html | 2014-07-29 23:27:27 -0400 | |
Our Bees, Ourselves | 12 | most-popular-emailed | 30 | http://www.nytimes.com/2014/07/15/opinion/bees-and-colony-collapse.html | 2014-07-29 23:27:27 -0400 | |
What Writers Can Learn From 'Goodnight Moon' | 13 | most-popular-emailed | 30 | http://opinionator.blogs.nytimes.com/2014/07/19/what-writers-can-learn-from-good-night-moon/ | 2014-07-29 23:27:27 -0400 | |
Don’t Teach Math, Coach It | 14 | most-popular-emailed | 30 | http://www.nytimes.com/2014/07/25/opinion/dont-teach-math-coach-it.html | 2014-07-29 23:27:27 -0400 | |
Baseball or Soccer? | 15 | most-popular-emailed | 30 | http://www.nytimes.com/2014/07/11/opinion/david-brooks-baseball-or-soccer.html | 2014-07-29 23:27:27 -0400 | |
Seeker, Doer, Giver, Ponderer | 16 | most-popular-emailed | 30 | http://www.nytimes.com/2014/07/08/science/a-billionaire-mathematicians-life-of-ferocious-curiosity.html | 2014-07-29 23:27:27 -0400 | |
Inventive, Cheaper Tools for Learning a Language | 17 | most-popular-emailed | 30 | http://www.nytimes.com/2014/07/20/travel/inventive-cheaper-tools-for-learning-a-language.html | 2014-07-29 23:27:27 -0400 | |
Train Like a German Soccer Star | 18 | most-popular-emailed | 30 | http://well.blogs.nytimes.com/2014/07/16/train-like-a-german-soccer-star/ | 2014-07-29 23:27:27 -0400 | |
An Idiot’s Guide to Inequality | 19 | most-popular-emailed | 30 | http://www.nytimes.com/2014/07/24/opinion/nicholas-kristof-idiots-guide-to-inequality-piketty-capital.html | 2014-07-29 23:27:27 -0400 | |
A Sleep Apnea Test Without a Night in the Hospital | 20 | most-popular-emailed | 30 | http://well.blogs.nytimes.com/2014/07/21/a-test-you-want-to-sleep-through/ | 2014-07-29 23:27:27 -0400 | |
The New York Times Calls for Marijuana Legalization | 1 | most-popular-blogged | 1 | http://www.nytimes.com/interactive/2014/07/27/opinion/sunday/high-time-marijuana-legalization.html | 2014-07-29 23:27:27 -0400 | |
The Typical Household, Now Worth a Third Less | 2 | most-popular-blogged | 1 | http://www.nytimes.com/2014/07/27/business/the-typical-household-now-worth-a-third-less.html | 2014-07-29 23:27:27 -0400 | |
Taliban Making Military Gains in Afghanistan | 3 | most-popular-blogged | 1 | http://www.nytimes.com/2014/07/27/world/asia/taliban-making-military-gains-in-afghanistan.html | 2014-07-29 23:27:27 -0400 | |
U.S. Says Russia Tested Cruise Missile, Violating Treaty | 4 | most-popular-blogged | 1 | http://www.nytimes.com/2014/07/29/world/europe/us-says-russia-tested-cruise-missile-in-violation-of-treaty.html | 2014-07-29 23:27:27 -0400 | |
Corporate Artful Dodgers | 5 | most-popular-blogged | 1 | http://www.nytimes.com/2014/07/28/opinion/paul-krugman-tax-avoidance-du-jour-inversion.html | 2014-07-29 23:27:27 -0400 | |
The Public Lightens Up About Weed | 6 | most-popular-blogged | 1 | http://www.nytimes.com/2014/07/27/opinion/sunday/high-time-the-public-lightens-up-about-weed.html | 2014-07-29 23:27:27 -0400 | |
Ruling Says McDonald’s Is Liable for Workers | 7 | most-popular-blogged | 1 | http://www.nytimes.com/2014/07/30/business/nlrb-holds-mcdonalds-not-just-franchisees-liable-for-worker-treatment.html | 2014-07-29 23:27:27 -0400 | |
The Injustice of Marijuana Arrests | 8 | most-popular-blogged | 1 | http://www.nytimes.com/2014/07/29/opinion/high-time-the-injustice-of-marijuana-arrests.html | 2014-07-29 23:27:27 -0400 | |
Even Gaza Truce Is Hard to Win, Kerry Is Finding | 9 | most-popular-blogged | 1 | http://www.nytimes.com/2014/07/28/world/middleeast/kerry-finds-even-a-truce-in-gaza-is-hard-to-win-cease-fire-hamas.html | 2014-07-29 23:27:27 -0400 | |
Still Torn by Factional Fighting, Post-Revolt Libya Is Coming Undone | 10 | most-popular-blogged | 1 | http://www.nytimes.com/2014/07/28/world/africa/fighting-for-control-of-airport-in-tripoli-post-revolt-libya-is-coming-undone-us-embassy-evacuating-staff.html | 2014-07-29 23:27:27 -0400 | |
Outside Money Drives a Deluge of Political Ads | 11 | most-popular-blogged | 1 | http://www.nytimes.com/2014/07/28/us/politics/deluge-of-political-ads-is-driven-by-outside-money.html | 2014-07-29 23:27:27 -0400 | |
Republicans’ Senate Chances Rise Slightly to 60 Percent | 12 | most-popular-blogged | 1 | http://www.nytimes.com/2014/07/28/upshot/republicans-senate-chances-rise-slightly-to-60-percent-.html | 2014-07-29 23:27:27 -0400 | |
Israel Says Its Forces Did Not Kill Palestinians Sheltering at U.N. School | 13 | most-popular-blogged | 1 | http://www.nytimes.com/2014/07/28/world/middleeast/israel-gaza-strip.html | 2014-07-29 23:27:27 -0400 | |
Up From Greenwich | 14 | most-popular-blogged | 1 | http://www.nytimes.com/2014/07/27/opinion/sunday/ross-douthat-the-new-republican-populism.html | 2014-07-29 23:27:27 -0400 | |
Coordinated Sanctions Aim at Russia’s Ability to Tap Its Oil Reserves | 15 | most-popular-blogged | 1 | http://www.nytimes.com/2014/07/30/world/europe/european-sanctions-russia.html | 2014-07-29 23:27:27 -0400 | |
New York Times Co. Gains Circulation, but Profit Falls 21% | 16 | most-popular-blogged | 1 | http://www.nytimes.com/2014/07/30/business/despite-circulation-gains-profit-falls-21-at-new-york-times-co.html | 2014-07-29 23:27:27 -0400 | |
White House Pushes Financial Case for Carbon Rule | 17 | most-popular-blogged | 1 | http://www.nytimes.com/2014/07/30/us/politics/white-house-report-presses-economic-case-for-carbon-rule.html | 2014-07-29 23:27:27 -0400 | |
Israel Steps Up Airstrikes in Gaza as International Cease-Fire Efforts Stumble | 18 | most-popular-blogged | 1 | http://www.nytimes.com/2014/07/30/world/middleeast/gaza-israel-violence.html | 2014-07-29 23:27:27 -0400 | |
Advocates Shun ‘Pro-Choice’ to Expand Message | 19 | most-popular-blogged | 1 | http://www.nytimes.com/2014/07/29/us/politics/advocates-shun-pro-choice-to-expand-message.html | 2014-07-29 23:27:27 -0400 | |
Spending Big to Fight Big Donors in Campaigns | 20 | most-popular-blogged | 1 | http://www.nytimes.com/2014/07/29/us/spending-big-to-fight-big-donors.html | 2014-07-29 23:27:27 -0400 | |
The New York Times Calls for Marijuana Legalization | 1 | most-popular-blogged | 7 | http://www.nytimes.com/interactive/2014/07/27/opinion/sunday/high-time-marijuana-legalization.html | 2014-07-29 23:27:27 -0400 | |
Senator’s Thesis Turns Out to Be Remix of Others’ Works, Uncited | 2 | most-popular-blogged | 7 | http://www.nytimes.com/2014/07/24/us/politics/montana-senator-john-walsh-plagiarized-thesis.html | 2014-07-29 23:27:27 -0400 | |
New Questions on Health Law as Rulings on Subsidies Differ | 3 | most-popular-blogged | 7 | http://www.nytimes.com/2014/07/23/us/court-rules-against-obamacare-exchange-subsidies.html | 2014-07-29 23:27:27 -0400 | |
The Typical Household, Now Worth a Third Less | 4 | most-popular-blogged | 7 | http://www.nytimes.com/2014/07/27/business/the-typical-household-now-worth-a-third-less.html | 2014-07-29 23:27:27 -0400 | |
Cuomo’s Office Hobbled Ethics Inquiries by Moreland Commission | 5 | most-popular-blogged | 7 | http://www.nytimes.com/2014/07/23/nyregion/governor-andrew-cuomo-and-the-short-life-of-the-moreland-commission.html | 2014-07-29 23:27:27 -0400 | |
Taliban Making Military Gains in Afghanistan | 6 | most-popular-blogged | 7 | http://www.nytimes.com/2014/07/27/world/asia/taliban-making-military-gains-in-afghanistan.html | 2014-07-29 23:27:27 -0400 | |
U.S. Says Russia Tested Cruise Missile, Violating Treaty | 7 | most-popular-blogged | 7 | http://www.nytimes.com/2014/07/29/world/europe/us-says-russia-tested-cruise-missile-in-violation-of-treaty.html | 2014-07-29 23:27:27 -0400 | |
Ex-Chief of C.I.A. Shapes Response to Detention Report | 8 | most-popular-blogged | 7 | http://www.nytimes.com/2014/07/26/world/george-tenet-ex-chief-of-cia-is-set-to-defend-actions-on-interrogation-program.html | 2014-07-29 23:27:27 -0400 | |
How Senator John Walsh Plagiarized a Final Paper | 9 | most-popular-blogged | 7 | http://www.nytimes.com/interactive/2014/07/23/us/politics/john-walsh-final-paper-plagiarism.html | 2014-07-29 23:27:27 -0400 | |
Why Do Americans Stink at Math? | 10 | most-popular-blogged | 7 | http://www.nytimes.com/2014/07/27/magazine/why-do-americans-stink-at-math.html | 2014-07-29 23:27:27 -0400 | |
U.S. Considering Refugee Status for Hondurans | 11 | most-popular-blogged | 7 | http://www.nytimes.com/2014/07/25/world/americas/administration-weighs-plan-to-move-processing-of-youths-seeking-entry-to-honduras-.html | 2014-07-29 23:27:27 -0400 | |
Prosecutors Are Reading Emails From Inmates to Lawyers | 12 | most-popular-blogged | 7 | http://www.nytimes.com/2014/07/23/nyregion/us-is-reading-inmates-email-sent-to-lawyers.html | 2014-07-29 23:27:27 -0400 | |
Kerry Proposes Weeklong Halt to Fighting in Gaza Strip | 13 | most-popular-blogged | 7 | http://www.nytimes.com/2014/07/25/world/middleeast/kerry-proposes-weeklong-halt-to-fighting-in-gaza-strip.html | 2014-07-29 23:27:27 -0400 | |
Why Voters Aren’t Angrier About Economic Inequality | 14 | most-popular-blogged | 7 | http://www.nytimes.com/2014/07/25/upshot/why-voters-arent-angrier-about-economic-inequality.html | 2014-07-29 23:27:27 -0400 | |
Corporate Artful Dodgers | 15 | most-popular-blogged | 7 | http://www.nytimes.com/2014/07/28/opinion/paul-krugman-tax-avoidance-du-jour-inversion.html | 2014-07-29 23:27:27 -0400 | |
The Public Lightens Up About Weed | 16 | most-popular-blogged | 7 | http://www.nytimes.com/2014/07/27/opinion/sunday/high-time-the-public-lightens-up-about-weed.html | 2014-07-29 23:27:27 -0400 | |
Conservatives Hone Script to Light a Fire Over Abortion | 17 | most-popular-blogged | 7 | http://www.nytimes.com/2014/07/25/us/politics/republicans-abortion-midterm-elections.html | 2014-07-29 23:27:27 -0400 | |
With All Due Deference | 18 | most-popular-blogged | 7 | http://www.nytimes.com/2014/07/24/opinion/ruling-defends-affirmative-action-from-new-challenges.html | 2014-07-29 23:27:27 -0400 | |
U.S. Religious Leaders Embrace Cause of Immigrant Children | 19 | most-popular-blogged | 7 | http://www.nytimes.com/2014/07/24/us/us-religious-leaders-embrace-cause-of-immigrant-children.html | 2014-07-29 23:27:27 -0400 | |
Crises Cascade and Converge, Testing Obama | 20 | most-popular-blogged | 7 | http://www.nytimes.com/2014/07/23/world/crises-cascade-and-converge-testing-obama.html | 2014-07-29 23:27:27 -0400 | |
The New York Times Calls for Marijuana Legalization | 1 | most-popular-blogged | 30 | http://www.nytimes.com/interactive/2014/07/27/opinion/sunday/high-time-marijuana-legalization.html | 2014-07-29 23:27:27 -0400 | |
Senator’s Thesis Turns Out to Be Remix of Others’ Works, Uncited | 2 | most-popular-blogged | 30 | http://www.nytimes.com/2014/07/24/us/politics/montana-senator-john-walsh-plagiarized-thesis.html | 2014-07-29 23:27:27 -0400 | |
New Questions on Health Law as Rulings on Subsidies Differ | 3 | most-popular-blogged | 30 | http://www.nytimes.com/2014/07/23/us/court-rules-against-obamacare-exchange-subsidies.html | 2014-07-29 23:27:27 -0400 | |
James Garner, Witty, Handsome Leading Man, Dies at 86 | 4 | most-popular-blogged | 30 | http://www.nytimes.com/2014/07/21/movies/james-garner-actor-dies-at-86.html | 2014-07-29 23:27:27 -0400 | |
Before Shooting in Iraq, a Warning on Blackwater | 5 | most-popular-blogged | 30 | http://www.nytimes.com/2014/06/30/us/before-shooting-in-iraq-warning-on-blackwater.html | 2014-07-29 23:27:27 -0400 | |
Can the G.O.P. Be a Party of Ideas? | 6 | most-popular-blogged | 30 | http://www.nytimes.com/2014/07/06/magazine/can-the-gop-be-a-party-of-ideas.html | 2014-07-29 23:27:27 -0400 | |
Supreme Court Rejects Contraceptives Mandate for Some Corporations | 7 | most-popular-blogged | 30 | http://www.nytimes.com/2014/07/01/us/hobby-lobby-case-supreme-court-contraception.html | 2014-07-29 23:27:27 -0400 | |
Elaine Stritch, Broadway’s Enduring Dame, Dies at 89 | 8 | most-popular-blogged | 30 | http://www.nytimes.com/2014/07/18/theater/elaine-stritch-tart-tongued-broadway-actress-and-singer-is-dead-at-89.html | 2014-07-29 23:27:27 -0400 | |
Chinese Hackers Pursue Key Data on U.S. Workers | 9 | most-popular-blogged | 30 | http://www.nytimes.com/2014/07/10/world/asia/chinese-hackers-pursue-key-data-on-us-workers.html | 2014-07-29 23:27:27 -0400 | |
The Typical Household, Now Worth a Third Less | 10 | most-popular-blogged | 30 | http://www.nytimes.com/2014/07/27/business/the-typical-household-now-worth-a-third-less.html | 2014-07-29 23:27:27 -0400 | |
If Only Thomas Jefferson Could Settle the Issue | 11 | most-popular-blogged | 30 | http://www.nytimes.com/2014/07/03/us/politics/a-period-is-questioned-in-the-declaration-of-independence.html | 2014-07-29 23:27:27 -0400 | |
Charlatans, Cranks and Kansas | 12 | most-popular-blogged | 30 | http://www.nytimes.com/2014/06/30/opinion/paul-krugman-charlatans-cranks-and-kansas.html | 2014-07-29 23:27:27 -0400 | |
Cuomo’s Office Hobbled Ethics Inquiries by Moreland Commission | 13 | most-popular-blogged | 30 | http://www.nytimes.com/2014/07/23/nyregion/governor-andrew-cuomo-and-the-short-life-of-the-moreland-commission.html | 2014-07-29 23:27:27 -0400 | |
The Letters That Warren G. Harding’s Family Didn’t Want You to See | 14 | most-popular-blogged | 30 | http://www.nytimes.com/2014/07/13/magazine/letters-warren-g-harding.html | 2014-07-29 23:27:27 -0400 | |
Birth Control Order Deepens Divide Among Justices | 15 | most-popular-blogged | 30 | http://www.nytimes.com/2014/07/04/us/politics/supreme-court-order-suspends-contraception-rule-for-christian-college.html | 2014-07-29 23:27:27 -0400 | |
Taliban Making Military Gains in Afghanistan | 16 | most-popular-blogged | 30 | http://www.nytimes.com/2014/07/27/world/asia/taliban-making-military-gains-in-afghanistan.html | 2014-07-29 23:27:27 -0400 | |
Following Her Parents’ Lead, Chelsea Clinton Takes Stage as a Paid Speaker | 17 | most-popular-blogged | 30 | http://www.nytimes.com/2014/07/10/us/politics/chelsea-clinton-follows-parents-lead-as-a-paid-speaker.html | 2014-07-29 23:27:27 -0400 | |
Democrats Push Bill to Reverse Supreme Court Ruling on Contraceptives | 18 | most-popular-blogged | 30 | http://www.nytimes.com/2014/07/09/us/politics/democrats-draft-bill-to-override-contraception-ruling.html | 2014-07-29 23:27:27 -0400 | |
Immigrant Surge Rooted in Law to Curb Child Trafficking | 19 | most-popular-blogged | 30 | http://www.nytimes.com/2014/07/08/us/immigrant-surge-rooted-in-law-to-curb-child-trafficking.html | 2014-07-29 23:27:27 -0400 | |
Beliefs, Facts and Money | 20 | most-popular-blogged | 30 | http://www.nytimes.com/2014/07/07/opinion/paul-krugman-conservative-delusions-about-inflation.html | 2014-07-29 23:27:27 -0400 | |
Paying Ransoms, Europe Bankrolls Qaeda Terror | 1 | most-popular-tweeted | 1 | http://www.nytimes.com/2014/07/30/world/africa/ransoming-citizens-europe-becomes-al-qaedas-patron.html | 2014-07-29 23:27:27 -0400 | |
The Injustice of Marijuana Arrests | 2 | most-popular-tweeted | 1 | http://www.nytimes.com/2014/07/29/opinion/high-time-the-injustice-of-marijuana-arrests.html | 2014-07-29 23:27:27 -0400 | |
Tunnels Lead Right to the Heart of Israeli Fear | 3 | most-popular-tweeted | 1 | http://www.nytimes.com/2014/07/29/world/middleeast/tunnels-lead-right-to-heart-of-israeli-fear.html | 2014-07-29 23:27:27 -0400 | |
The New York Times Calls for Marijuana Legalization | 4 | most-popular-tweeted | 1 | http://www.nytimes.com/interactive/2014/07/27/opinion/sunday/high-time-marijuana-legalization.html | 2014-07-29 23:27:27 -0400 | |
No War Is an Island | 5 | most-popular-tweeted | 1 | http://www.nytimes.com/2014/07/29/opinion/david-brooks-when-middle-east-conflicts-become-one.html | 2014-07-29 23:27:27 -0400 | |
U.S. Says Russia Tested Cruise Missile, Violating Treaty | 6 | most-popular-tweeted | 1 | http://www.nytimes.com/2014/07/29/world/europe/us-says-russia-tested-cruise-missile-in-violation-of-treaty.html | 2014-07-29 23:27:27 -0400 | |
When the Caregivers Need Healing | 7 | most-popular-tweeted | 1 | http://www.nytimes.com/2014/07/29/health/when-the-caregivers-need-healing.html | 2014-07-29 23:27:27 -0400 | |
Israel Steps Up Airstrikes in Gaza as International Cease-Fire Efforts Stumble | 8 | most-popular-tweeted | 1 | http://www.nytimes.com/2014/07/30/world/middleeast/gaza-israel-violence.html | 2014-07-29 23:27:27 -0400 | |
Teaching Teaching | 9 | most-popular-tweeted | 1 | http://www.nytimes.com/2014/07/29/opinion/joe-nocera-teaching-teaching.html | 2014-07-29 23:27:27 -0400 | |
Masterworks vs. the Masses | 10 | most-popular-tweeted | 1 | http://www.nytimes.com/2014/07/29/arts/design/european-museums-straining-under-weight-of-popularity.html | 2014-07-29 23:27:27 -0400 | |
No Time to Think | 11 | most-popular-tweeted | 1 | http://www.nytimes.com/2014/07/27/sunday-review/no-time-to-think.html | 2014-07-29 23:27:27 -0400 | |
Zionism and Its Discontents | 12 | most-popular-tweeted | 1 | http://www.nytimes.com/2014/07/30/opinion/roger-cohen-zionism-and-israels-war-with-hamas-in-gaza.html | 2014-07-29 23:27:27 -0400 | |
On Subway, Flying Feet Can Lead to Handcuffs | 13 | most-popular-tweeted | 1 | http://www.nytimes.com/2014/07/29/nyregion/29acrobats.html | 2014-07-29 23:27:27 -0400 | |
Coordinated Sanctions Aim at Russia’s Ability to Tap Its Oil Reserves | 14 | most-popular-tweeted | 1 | http://www.nytimes.com/2014/07/30/world/europe/european-sanctions-russia.html | 2014-07-29 23:27:27 -0400 | |
Another Win for Ex-Governor and Wrestler, This One in Court | 15 | most-popular-tweeted | 1 | http://www.nytimes.com/2014/07/30/us/jesse-ventura-chris-kyle-navy-seal-book-lawsuit.html | 2014-07-29 23:27:27 -0400 | |
U.S. and Europe Set to Toughen Russia Sanctions | 16 | most-popular-tweeted | 1 | http://www.nytimes.com/2014/07/29/world/europe/us-and-europe-agree-to-escalate-sanctions-on-russia.html | 2014-07-29 23:27:27 -0400 | |
Colonial Folly, European Suicide | 17 | most-popular-tweeted | 1 | http://www.nytimes.com/2014/07/29/opinion/adam-hochschild-why-world-war-i-was-such-a-blood-bath.html | 2014-07-29 23:27:27 -0400 | |
Banks Cash In on Inversion Deals Intended to Elude Taxes | 18 | most-popular-tweeted | 1 | http://dealbook.nytimes.com/2014/07/28/banks-cash-in-on-mergers-intended-to-elude-taxes/ | 2014-07-29 23:27:27 -0400 | |
The Creative Art of Selling a Book by Its Cover | 19 | most-popular-tweeted | 1 | http://www.nytimes.com/2014/07/29/books/peter-mendelsund-book-designer-debuts-as-a-writer.html | 2014-07-29 23:27:27 -0400 | |
Spending Big to Fight Big Donors in Campaigns | 20 | most-popular-tweeted | 1 | http://www.nytimes.com/2014/07/29/us/spending-big-to-fight-big-donors.html | 2014-07-29 23:27:27 -0400 | |
The New York Times Calls for Marijuana Legalization | 1 | most-popular-tweeted | 7 | http://www.nytimes.com/interactive/2014/07/27/opinion/sunday/high-time-marijuana-legalization.html | 2014-07-29 23:27:27 -0400 | |
Why Do Americans Stink at Math? | 2 | most-popular-tweeted | 7 | http://www.nytimes.com/2014/07/27/magazine/why-do-americans-stink-at-math.html | 2014-07-29 23:27:27 -0400 | |
The Typical Household, Now Worth a Third Less | 3 | most-popular-tweeted | 7 | http://www.nytimes.com/2014/07/27/business/the-typical-household-now-worth-a-third-less.html | 2014-07-29 23:27:27 -0400 | |
U.S. Considering Refugee Status for Hondurans | 4 | most-popular-tweeted | 7 | http://www.nytimes.com/2014/07/25/world/americas/administration-weighs-plan-to-move-processing-of-youths-seeking-entry-to-honduras-.html | 2014-07-29 23:27:27 -0400 | |
An Idiot’s Guide to Inequality | 5 | most-popular-tweeted | 7 | http://www.nytimes.com/2014/07/24/opinion/nicholas-kristof-idiots-guide-to-inequality-piketty-capital.html | 2014-07-29 23:27:27 -0400 | |
Love People, Not Pleasure | 6 | most-popular-tweeted | 7 | http://www.nytimes.com/2014/07/20/opinion/sunday/arthur-c-brooks-love-people-not-pleasure.html | 2014-07-29 23:27:27 -0400 | |
New Questions on Health Law as Rulings on Subsidies Differ | 7 | most-popular-tweeted | 7 | http://www.nytimes.com/2014/07/23/us/court-rules-against-obamacare-exchange-subsidies.html | 2014-07-29 23:27:27 -0400 | |
Cuomo’s Office Hobbled Ethics Inquiries by Moreland Commission | 8 | most-popular-tweeted | 7 | http://www.nytimes.com/2014/07/23/nyregion/governor-andrew-cuomo-and-the-short-life-of-the-moreland-commission.html | 2014-07-29 23:27:27 -0400 | |
Senator’s Thesis Turns Out to Be Remix of Others’ Works, Uncited | 9 | most-popular-tweeted | 7 | http://www.nytimes.com/2014/07/24/us/politics/montana-senator-john-walsh-plagiarized-thesis.html | 2014-07-29 23:27:27 -0400 | |
No Time to Think | 10 | most-popular-tweeted | 7 | http://www.nytimes.com/2014/07/27/sunday-review/no-time-to-think.html | 2014-07-29 23:27:27 -0400 | |
Left Coast Rising | 11 | most-popular-tweeted | 7 | http://www.nytimes.com/2014/07/25/opinion/paul-krugman-california-tax-left-coast-rising.html | 2014-07-29 23:27:27 -0400 | |
Blasts Kill 16 Seeking Haven at Gaza School | 12 | most-popular-tweeted | 7 | http://www.nytimes.com/2014/07/25/world/middleeast/despite-talk-of-a-cease-fire-no-lull-in-gaza-fighting.html | 2014-07-29 23:27:27 -0400 | |
Don’t Teach Math, Coach It | 13 | most-popular-tweeted | 7 | http://www.nytimes.com/2014/07/25/opinion/dont-teach-math-coach-it.html | 2014-07-29 23:27:27 -0400 | |
We’re Missing the Story | 14 | most-popular-tweeted | 7 | http://www.nytimes.com/2014/07/27/opinion/sunday/the-medias-retreat-from-foreign-reporting.html | 2014-07-29 23:27:27 -0400 | |
What Writers Can Learn From 'Goodnight Moon' | 15 | most-popular-tweeted | 7 | http://opinionator.blogs.nytimes.com/2014/07/19/what-writers-can-learn-from-good-night-moon/ | 2014-07-29 23:27:27 -0400 | |
An Israel Without Illusions | 16 | most-popular-tweeted | 7 | http://www.nytimes.com/2014/07/28/opinion/david-grossman-end-the-grindstone-of-israeli-palestinian-violence.html | 2014-07-29 23:27:27 -0400 | |
Fear of Ebola Breeds a Terror of Physicians | 17 | most-popular-tweeted | 7 | http://www.nytimes.com/2014/07/28/world/africa/ebola-epidemic-west-africa-guinea.html | 2014-07-29 23:27:27 -0400 | |
Life in a Jihadist Capital: Order With a Darker Side | 18 | most-popular-tweeted | 7 | http://www.nytimes.com/2014/07/24/world/middleeast/islamic-state-controls-raqqa-syria.html | 2014-07-29 23:27:27 -0400 | |
At Front Lines, Bearing Witness in Real Time | 19 | most-popular-tweeted | 7 | http://www.nytimes.com/2014/07/28/business/media/at-front-lines-bearing-witness-in-real-time.html | 2014-07-29 23:27:27 -0400 | |
When Media Mergers Limit More Than Competition | 20 | most-popular-tweeted | 7 | http://www.nytimes.com/2014/07/26/business/a-21st-century-fox-time-warner-merger-would-narrow-already-dwindling-competition.html | 2014-07-29 23:27:27 -0400 | |
The New York Times Calls for Marijuana Legalization | 1 | most-popular-tweeted | 30 | http://www.nytimes.com/interactive/2014/07/27/opinion/sunday/high-time-marijuana-legalization.html | 2014-07-29 23:27:27 -0400 | |
Love People, Not Pleasure | 2 | most-popular-tweeted | 30 | http://www.nytimes.com/2014/07/20/opinion/sunday/arthur-c-brooks-love-people-not-pleasure.html | 2014-07-29 23:27:27 -0400 | |
Why Do Americans Stink at Math? | 3 | most-popular-tweeted | 30 | http://www.nytimes.com/2014/07/27/magazine/why-do-americans-stink-at-math.html | 2014-07-29 23:27:27 -0400 | |
Reporting Rape, and Wishing She Hadn’t | 4 | most-popular-tweeted | 30 | http://www.nytimes.com/2014/07/13/us/how-one-college-handled-a-sexual-assault-complaint.html | 2014-07-29 23:27:27 -0400 | |
Before Shooting in Iraq, a Warning on Blackwater | 5 | most-popular-tweeted | 30 | http://www.nytimes.com/2014/06/30/us/before-shooting-in-iraq-warning-on-blackwater.html | 2014-07-29 23:27:27 -0400 | |
Through Lens, 4 Boys Dead by Gaza Shore | 6 | most-popular-tweeted | 30 | http://www.nytimes.com/2014/07/17/world/middleeast/through-lens-4-boys-dead-by-gaza-shore.html | 2014-07-29 23:27:27 -0400 | |
The Secret of Effective Motivation | 7 | most-popular-tweeted | 30 | http://www.nytimes.com/2014/07/06/opinion/sunday/the-secret-of-effective-motivation.html | 2014-07-29 23:27:27 -0400 | |
Maps of the Crash of Malaysia Airlines Flight 17 | 8 | most-popular-tweeted | 30 | http://www.nytimes.com/interactive/2014/07/17/world/europe/maps-of-the-crash-of-malaysian-airlines-flight-mh17.html | 2014-07-29 23:27:27 -0400 | |
Elaine Stritch, Broadway’s Enduring Dame, Dies at 89 | 9 | most-popular-tweeted | 30 | http://www.nytimes.com/2014/07/18/theater/elaine-stritch-tart-tongued-broadway-actress-and-singer-is-dead-at-89.html | 2014-07-29 23:27:27 -0400 | |
Break the Immigration Impasse | 10 | most-popular-tweeted | 30 | http://www.nytimes.com/2014/07/11/opinion/sheldon-adelson-warren-buffett-and-bill-gates-on-immigration-reform.html | 2014-07-29 23:27:27 -0400 | |
Boys Drawn to Gaza Beach, and Into Center of Mideast Strife | 11 | most-popular-tweeted | 30 | http://www.nytimes.com/2014/07/17/world/middleeast/gaza-strip-beach-explosion-kills-children.html | 2014-07-29 23:27:27 -0400 | |
The Benefits of Failing at French | 12 | most-popular-tweeted | 30 | http://www.nytimes.com/2014/07/16/opinion/16alexander.html | 2014-07-29 23:27:27 -0400 | |
Jetliner Explodes Over Ukraine; Struck by Missile, Officials Say | 13 | most-popular-tweeted | 30 | http://www.nytimes.com/2014/07/18/world/europe/malaysian-airlines-plane-ukraine.html | 2014-07-29 23:27:27 -0400 | |
How the West Chose War in Gaza | 14 | most-popular-tweeted | 30 | http://www.nytimes.com/2014/07/18/opinion/gaza-and-israel-the-road-to-war-paved-by-the-west.html | 2014-07-29 23:27:27 -0400 | |
Israelis Watch Bombs Drop on Gaza From Front-Row Seats | 15 | most-popular-tweeted | 30 | http://www.nytimes.com/2014/07/15/world/middleeast/israelis-watch-bombs-drop-on-gaza-from-front-row-seats.html | 2014-07-29 23:27:27 -0400 | |
Why Teenagers Act Crazy | 16 | most-popular-tweeted | 30 | http://www.nytimes.com/2014/06/29/opinion/sunday/why-teenagers-act-crazy.html | 2014-07-29 23:27:27 -0400 | |
The French Do Buy Books. Real Books. | 17 | most-popular-tweeted | 30 | http://www.nytimes.com/2014/07/10/opinion/pamela-druckerman-the-french-do-buy-books-real-books.html | 2014-07-29 23:27:27 -0400 | |
Inequality Is Not Inevitable | 18 | most-popular-tweeted | 30 | http://opinionator.blogs.nytimes.com/2014/06/27/inequality-is-not-inevitable/ | 2014-07-29 23:27:27 -0400 | |
The Children of the Drug Wars | 19 | most-popular-tweeted | 30 | http://www.nytimes.com/2014/07/13/opinion/sunday/a-refugee-crisis-not-an-immigration-crisis.html | 2014-07-29 23:27:27 -0400 | |
Our Bees, Ourselves | 20 | most-popular-tweeted | 30 | http://www.nytimes.com/2014/07/15/opinion/bees-and-colony-collapse.html | 2014-07-29 23:27:27 -0400 | |
Tunnels Lead Right to the Heart of Israeli Fear | 1 | most-popular-facebook | 1 | http://www.nytimes.com/2014/07/29/world/middleeast/tunnels-lead-right-to-heart-of-israeli-fear.html | 2014-07-29 23:27:27 -0400 | |
The New York Times Calls for Marijuana Legalization | 2 | most-popular-facebook | 1 | http://www.nytimes.com/interactive/2014/07/27/opinion/sunday/high-time-marijuana-legalization.html | 2014-07-29 23:27:27 -0400 | |
No War Is an Island | 3 | most-popular-facebook | 1 | http://www.nytimes.com/2014/07/29/opinion/david-brooks-when-middle-east-conflicts-become-one.html | 2014-07-29 23:27:27 -0400 | |
The Injustice of Marijuana Arrests | 4 | most-popular-facebook | 1 | http://www.nytimes.com/2014/07/29/opinion/high-time-the-injustice-of-marijuana-arrests.html | 2014-07-29 23:27:27 -0400 | |
Paying Ransoms, Europe Bankrolls Qaeda Terror | 5 | most-popular-facebook | 1 | http://www.nytimes.com/2014/07/30/world/africa/ransoming-citizens-europe-becomes-al-qaedas-patron.html | 2014-07-29 23:27:27 -0400 | |
Zionism and Its Discontents | 6 | most-popular-facebook | 1 | http://www.nytimes.com/2014/07/30/opinion/roger-cohen-zionism-and-israels-war-with-hamas-in-gaza.html | 2014-07-29 23:27:27 -0400 | |
When the Caregivers Need Healing | 7 | most-popular-facebook | 1 | http://www.nytimes.com/2014/07/29/health/when-the-caregivers-need-healing.html | 2014-07-29 23:27:27 -0400 | |
An Israel Without Illusions | 8 | most-popular-facebook | 1 | http://www.nytimes.com/2014/07/28/opinion/david-grossman-end-the-grindstone-of-israeli-palestinian-violence.html | 2014-07-29 23:27:27 -0400 | |
The D.O. Is In Now | 9 | most-popular-facebook | 1 | http://www.nytimes.com/2014/08/03/education/edlife/the-osteopathic-branch-of-medicine-is-booming.html | 2014-07-29 23:27:27 -0400 | |
Why Do Americans Stink at Math? | 10 | most-popular-facebook | 1 | http://www.nytimes.com/2014/07/27/magazine/why-do-americans-stink-at-math.html | 2014-07-29 23:27:27 -0400 | |
Another Win for Ex-Governor and Wrestler, This One in Court | 11 | most-popular-facebook | 1 | http://www.nytimes.com/2014/07/30/us/jesse-ventura-chris-kyle-navy-seal-book-lawsuit.html | 2014-07-29 23:27:27 -0400 | |
Israel Steps Up Airstrikes in Gaza as International Cease-Fire Efforts Stumble | 12 | most-popular-facebook | 1 | http://www.nytimes.com/2014/07/30/world/middleeast/gaza-israel-violence.html | 2014-07-29 23:27:27 -0400 | |
Colonial Folly, European Suicide | 13 | most-popular-facebook | 1 | http://www.nytimes.com/2014/07/29/opinion/adam-hochschild-why-world-war-i-was-such-a-blood-bath.html | 2014-07-29 23:27:27 -0400 | |
Teaching Teaching | 14 | most-popular-facebook | 1 | http://www.nytimes.com/2014/07/29/opinion/joe-nocera-teaching-teaching.html | 2014-07-29 23:27:27 -0400 | |
Spending Big to Fight Big Donors in Campaigns | 15 | most-popular-facebook | 1 | http://www.nytimes.com/2014/07/29/us/spending-big-to-fight-big-donors.html | 2014-07-29 23:27:27 -0400 | |
U.S. Says Russia Tested Cruise Missile, Violating Treaty | 16 | most-popular-facebook | 1 | http://www.nytimes.com/2014/07/29/world/europe/us-says-russia-tested-cruise-missile-in-violation-of-treaty.html | 2014-07-29 23:27:27 -0400 | |
Photographing on the Ground in Gaza | 17 | most-popular-facebook | 1 | http://lens.blogs.nytimes.com/2014/07/29/gaza-city-sergey-ponomarev-israel-photos/ | 2014-07-29 23:27:27 -0400 | |
Masterworks vs. the Masses | 18 | most-popular-facebook | 1 | http://www.nytimes.com/2014/07/29/arts/design/european-museums-straining-under-weight-of-popularity.html | 2014-07-29 23:27:27 -0400 | |
No Time to Think | 19 | most-popular-facebook | 1 | http://www.nytimes.com/2014/07/27/sunday-review/no-time-to-think.html | 2014-07-29 23:27:27 -0400 | |
Banks Cash In on Inversion Deals Intended to Elude Taxes | 20 | most-popular-facebook | 1 | http://dealbook.nytimes.com/2014/07/28/banks-cash-in-on-mergers-intended-to-elude-taxes/ | 2014-07-29 23:27:27 -0400 | |
The New York Times Calls for Marijuana Legalization | 1 | most-popular-facebook | 7 | http://www.nytimes.com/interactive/2014/07/27/opinion/sunday/high-time-marijuana-legalization.html | 2014-07-29 23:27:27 -0400 | |
Why Do Americans Stink at Math? | 2 | most-popular-facebook | 7 | http://www.nytimes.com/2014/07/27/magazine/why-do-americans-stink-at-math.html | 2014-07-29 23:27:27 -0400 | |
An Idiot’s Guide to Inequality | 3 | most-popular-facebook | 7 | http://www.nytimes.com/2014/07/24/opinion/nicholas-kristof-idiots-guide-to-inequality-piketty-capital.html | 2014-07-29 23:27:27 -0400 | |
The Typical Household, Now Worth a Third Less | 4 | most-popular-facebook | 7 | http://www.nytimes.com/2014/07/27/business/the-typical-household-now-worth-a-third-less.html | 2014-07-29 23:27:27 -0400 | |
Left Coast Rising | 5 | most-popular-facebook | 7 | http://www.nytimes.com/2014/07/25/opinion/paul-krugman-california-tax-left-coast-rising.html | 2014-07-29 23:27:27 -0400 | |
U.S. Considering Refugee Status for Hondurans | 6 | most-popular-facebook | 7 | http://www.nytimes.com/2014/07/25/world/americas/administration-weighs-plan-to-move-processing-of-youths-seeking-entry-to-honduras-.html | 2014-07-29 23:27:27 -0400 | |
An Israel Without Illusions | 7 | most-popular-facebook | 7 | http://www.nytimes.com/2014/07/28/opinion/david-grossman-end-the-grindstone-of-israeli-palestinian-violence.html | 2014-07-29 23:27:27 -0400 | |
Blasts Kill 16 Seeking Haven at Gaza School | 8 | most-popular-facebook | 7 | http://www.nytimes.com/2014/07/25/world/middleeast/despite-talk-of-a-cease-fire-no-lull-in-gaza-fighting.html | 2014-07-29 23:27:27 -0400 | |
Love People, Not Pleasure | 9 | most-popular-facebook | 7 | http://www.nytimes.com/2014/07/20/opinion/sunday/arthur-c-brooks-love-people-not-pleasure.html | 2014-07-29 23:27:27 -0400 | |
Why the Border Crisis Is a Myth | 10 | most-popular-facebook | 7 | http://www.nytimes.com/2014/07/26/opinion/why-the-border-crisis-is-a-myth.html | 2014-07-29 23:27:27 -0400 | |
What Writers Can Learn From 'Goodnight Moon' | 11 | most-popular-facebook | 7 | http://opinionator.blogs.nytimes.com/2014/07/19/what-writers-can-learn-from-good-night-moon/ | 2014-07-29 23:27:27 -0400 | |
U.S. Religious Leaders Embrace Cause of Immigrant Children | 12 | most-popular-facebook | 7 | http://www.nytimes.com/2014/07/24/us/us-religious-leaders-embrace-cause-of-immigrant-children.html | 2014-07-29 23:27:27 -0400 | |
New Questions on Health Law as Rulings on Subsidies Differ | 13 | most-popular-facebook | 7 | http://www.nytimes.com/2014/07/23/us/court-rules-against-obamacare-exchange-subsidies.html | 2014-07-29 23:27:27 -0400 | |
Putin’s Crime, Europe’s Cowardice | 14 | most-popular-facebook | 7 | http://www.nytimes.com/2014/07/23/opinion/putins-crime-europes-cowardice.html | 2014-07-29 23:27:27 -0400 | |
Cuomo’s Office Hobbled Ethics Inquiries by Moreland Commission | 15 | most-popular-facebook | 7 | http://www.nytimes.com/2014/07/23/nyregion/governor-andrew-cuomo-and-the-short-life-of-the-moreland-commission.html | 2014-07-29 23:27:27 -0400 | |
No Time to Think | 16 | most-popular-facebook | 7 | http://www.nytimes.com/2014/07/27/sunday-review/no-time-to-think.html | 2014-07-29 23:27:27 -0400 | |
Senator’s Thesis Turns Out to Be Remix of Others’ Works, Uncited | 17 | most-popular-facebook | 7 | http://www.nytimes.com/2014/07/24/us/politics/montana-senator-john-walsh-plagiarized-thesis.html | 2014-07-29 23:27:27 -0400 | |
Don’t Teach Math, Coach It | 18 | most-popular-facebook | 7 | http://www.nytimes.com/2014/07/25/opinion/dont-teach-math-coach-it.html | 2014-07-29 23:27:27 -0400 | |
The Injustice of Marijuana Arrests | 19 | most-popular-facebook | 7 | http://www.nytimes.com/2014/07/29/opinion/high-time-the-injustice-of-marijuana-arrests.html | 2014-07-29 23:27:27 -0400 | |
Corporate Artful Dodgers | 20 | most-popular-facebook | 7 | http://www.nytimes.com/2014/07/28/opinion/paul-krugman-tax-avoidance-du-jour-inversion.html | 2014-07-29 23:27:27 -0400 | |
The New York Times Calls for Marijuana Legalization | 1 | most-popular-facebook | 30 | http://www.nytimes.com/interactive/2014/07/27/opinion/sunday/high-time-marijuana-legalization.html | 2014-07-29 23:27:27 -0400 | |
Elaine Stritch, Broadway’s Enduring Dame, Dies at 89 | 2 | most-popular-facebook | 30 | http://www.nytimes.com/2014/07/18/theater/elaine-stritch-tart-tongued-broadway-actress-and-singer-is-dead-at-89.html | 2014-07-29 23:27:27 -0400 | |
James Garner, Witty, Handsome Leading Man, Dies at 86 | 3 | most-popular-facebook | 30 | http://www.nytimes.com/2014/07/21/movies/james-garner-actor-dies-at-86.html | 2014-07-29 23:27:27 -0400 | |
Love People, Not Pleasure | 4 | most-popular-facebook | 30 | http://www.nytimes.com/2014/07/20/opinion/sunday/arthur-c-brooks-love-people-not-pleasure.html | 2014-07-29 23:27:27 -0400 | |
Why Do Americans Stink at Math? | 5 | most-popular-facebook | 30 | http://www.nytimes.com/2014/07/27/magazine/why-do-americans-stink-at-math.html | 2014-07-29 23:27:27 -0400 | |
Break the Immigration Impasse | 6 | most-popular-facebook | 30 | http://www.nytimes.com/2014/07/11/opinion/sheldon-adelson-warren-buffett-and-bill-gates-on-immigration-reform.html | 2014-07-29 23:27:27 -0400 | |
Jetliner Explodes Over Ukraine; Struck by Missile, Officials Say | 7 | most-popular-facebook | 30 | http://www.nytimes.com/2014/07/18/world/europe/malaysian-airlines-plane-ukraine.html | 2014-07-29 23:27:27 -0400 | |
The Benefits of Failing at French | 8 | most-popular-facebook | 30 | http://www.nytimes.com/2014/07/16/opinion/16alexander.html | 2014-07-29 23:27:27 -0400 | |
The Children of the Drug Wars | 9 | most-popular-facebook | 30 | http://www.nytimes.com/2014/07/13/opinion/sunday/a-refugee-crisis-not-an-immigration-crisis.html | 2014-07-29 23:27:27 -0400 | |
Our Bees, Ourselves | 10 | most-popular-facebook | 30 | http://www.nytimes.com/2014/07/15/opinion/bees-and-colony-collapse.html | 2014-07-29 23:27:27 -0400 | |
Why Teenagers Act Crazy | 11 | most-popular-facebook | 30 | http://www.nytimes.com/2014/06/29/opinion/sunday/why-teenagers-act-crazy.html | 2014-07-29 23:27:27 -0400 | |
Israelis Watch Bombs Drop on Gaza From Front-Row Seats | 12 | most-popular-facebook | 30 | http://www.nytimes.com/2014/07/15/world/middleeast/israelis-watch-bombs-drop-on-gaza-from-front-row-seats.html | 2014-07-29 23:27:27 -0400 | |
Through Lens, 4 Boys Dead by Gaza Shore | 13 | most-popular-facebook | 30 | http://www.nytimes.com/2014/07/17/world/middleeast/through-lens-4-boys-dead-by-gaza-shore.html | 2014-07-29 23:27:27 -0400 | |
Louis Zamperini, Olympian and ‘Unbroken’ War Survivor, Dies at 97 | 14 | most-popular-facebook | 30 | http://www.nytimes.com/2014/07/04/arts/louis-zamperini-olympian-war-survivor-unbroken-dies.html | 2014-07-29 23:27:27 -0400 | |
Inequality Is Not Inevitable | 15 | most-popular-facebook | 30 | http://opinionator.blogs.nytimes.com/2014/06/27/inequality-is-not-inevitable/ | 2014-07-29 23:27:27 -0400 | |
Obamacare Fails to Fail | 16 | most-popular-facebook | 30 | http://www.nytimes.com/2014/07/14/opinion/paul-krugman-obamacare-fails-to-fail.html | 2014-07-29 23:27:27 -0400 | |
Boys Drawn to Gaza Beach, and Into Center of Mideast Strife | 17 | most-popular-facebook | 30 | http://www.nytimes.com/2014/07/17/world/middleeast/gaza-strip-beach-explosion-kills-children.html | 2014-07-29 23:27:27 -0400 | |
Charlatans, Cranks and Kansas | 18 | most-popular-facebook | 30 | http://www.nytimes.com/2014/06/30/opinion/paul-krugman-charlatans-cranks-and-kansas.html | 2014-07-29 23:27:27 -0400 | |
Before Shooting in Iraq, a Warning on Blackwater | 19 | most-popular-facebook | 30 | http://www.nytimes.com/2014/06/30/us/before-shooting-in-iraq-warning-on-blackwater.html | 2014-07-29 23:27:27 -0400 | |
How the West Chose War in Gaza | 20 | most-popular-facebook | 30 | http://www.nytimes.com/2014/07/18/opinion/gaza-and-israel-the-road-to-war-paved-by-the-west.html | 2014-07-29 23:27:27 -0400 | |
Qaeda Coffers Swell as Europe Pays Millions in Quiet Ransoms | 1 | www #top-news | http://www.nytimes.com/2014/07/30/world/africa/ransoming-citizens-europe-becomes-al-qaedas-patron.html | 2014-07-29 23:27:27 -0400 | ||
Sanctions Aim at Russia’s Ability to Tap Its Oil Reserves | 2 | www #top-news | http://www.nytimes.com/2014/07/30/world/europe/european-sanctions-russia.html | 2014-07-29 23:27:27 -0400 | ||
Court Blocks Law Closing Mississippi’s Last Abortion Clinic | 3 | www #top-news | http://www.nytimes.com/2014/07/30/us/mississippi-abortion-clinic-federal-court-blocks-closing.html | 2014-07-29 23:27:27 -0400 | ||
Bits: Seattle Takes Oracle’s Cloud | 4 | www #top-news | http://bits.blogs.nytimes.com/2014/07/29/seattle-takes-oracles-cloud/ | 2014-07-29 23:27:27 -0400 | ||
Ex-First Couple’s Defense: State of Union | 5 | www #top-news | http://www.nytimes.com/2014/07/30/us/politics/ex-first-couple-bob-mcdonnell-and-maureen-mcdonnell-of-virginia-say-united-we-fall.html | 2014-07-29 23:27:27 -0400 | ||
Israel Steps Up Strikes as Efforts at Cease-Fire Stumble | 6 | www #top-news | http://www.nytimes.com/2014/07/30/world/middleeast/gaza-israel-violence.html | 2014-07-29 23:27:27 -0400 | ||
Immigrant Mothers Released, but With Ankle Monitors | 7 | www #top-news | http://www.nytimes.com/2014/07/30/nyregion/immigrant-mothers-released-from-holding-centers-but-with-ankle-monitors.html | 2014-07-29 23:27:27 -0400 | ||
Impeachment, on G.O.P. Lips, Animates Democrats | 8 | www #top-news | http://www.nytimes.com/2014/07/30/us/politics/impeachment-on-gop-lips-animates-base-of-democrats.html | 2014-07-29 23:27:27 -0400 | ||
Next Step for an N.F.L. Trailblazer Is to Stick Around | 9 | www #top-news | http://www.nytimes.com/2014/07/30/sports/football/michael-sam-focuses-on-making-the-rams-not-history.html | 2014-07-29 23:27:27 -0400 | ||
Lawmakers Voice Skepticism on Iran Nuclear Deal | 10 | www #top-news | http://www.nytimes.com/2014/07/30/world/middleeast/lawmakers-voice-skepticism-on-iran-nuclear-deal.html | 2014-07-29 23:27:27 -0400 | ||
Colorado to Stop Issuing Gay Marriage Licenses | 11 | www #top-news | http://www.nytimes.com/2014/07/30/us/colorado-clerk-told-to-stop-issuing-gay-marriage-licenses.html | 2014-07-29 23:27:27 -0400 | ||
U.S. Shortens Man’s 57-Year Mandatory Sentence | 12 | www #top-news | http://www.nytimes.com/2014/07/30/nyregion/at-judges-behest-us-shortens-mans-57-year-mandatory-sentence.html | 2014-07-29 23:27:27 -0400 | ||
$1.8 Million for Ventura in Defamation Case | 13 | www #top-news | http://www.nytimes.com/2014/07/30/us/jesse-ventura-chris-kyle-navy-seal-book-lawsuit.html | 2014-07-29 23:27:27 -0400 | ||
A Ban With Roots in Myth and Xenophobia | 1 | www .c-column-top-span-region | http://www.nytimes.com/2014/07/30/opinion/high-time-federal-marijuana-ban-is-rooted-in-myth.html | 2014-07-29 23:27:27 -0400 | ||
Editorial: Stronger Sanctions on Russia, at Last | 2 | www .c-column-top-span-region | http://www.nytimes.com/2014/07/30/opinion/Stronger-Sanctions-on-Russia-at-Last.html | 2014-07-29 23:27:27 -0400 | ||
Dowd: Night at the Opera? | 3 | www .c-column-top-span-region | http://www.nytimes.com/2014/07/30/opinion/maureen-dowd-night-at-the-opera.html | 2014-07-29 23:27:27 -0400 | ||
Friedman: ‘Maybe in America’ | 4 | www .c-column-top-span-region | http://www.nytimes.com/2014/07/30/opinion/thomas-friedman-maybe-in-america.html | 2014-07-29 23:27:27 -0400 | ||
Op-Ed: The Carbon Dividend | 5 | www .c-column-top-span-region | http://www.nytimes.com/2014/07/30/opinion/a-plan-to-auction-pollution-permits.html | 2014-07-29 23:27:27 -0400 | ||
The Stone: Detroit’s Drought of Democracy | 6 | www .c-column-top-span-region | http://opinionator.blogs.nytimes.com/2014/07/29/detroits-drought-of-democracy/ | 2014-07-29 23:27:27 -0400 | ||
Evolving on Marijuana | 7 | www .c-column-top-span-region | http://www.nytimes.com/interactive/2014/07/30/opinion/high-time-evolving-on-marijuana.html | 2014-07-29 23:27:27 -0400 | ||
Today’s Times Insider | 8 | www .c-column-top-span-region | http://www.nytimes.com/times-insider/ | 2014-07-29 23:27:27 -0400 | ||
What We’re Reading | 9 | www .c-column-top-span-region | http://www.nytimes.com/times-insider/#post-3153 | 2014-07-29 23:27:27 -0400 | ||
Trying to Make the Bet on Video Pay Off | 10 | www .c-column-top-span-region | http://www.nytimes.com/times-insider/#post-3069 | 2014-07-29 23:27:27 -0400 | ||
Underwriting JihadPaying Ransoms, Europe Bankrolls Qaeda TerrorWhile some countries, including the United States, refuse to pay ransoms, European ones do — inadvertently helping to bankroll Al Qaeda’s global operations. | 1 | mobile #articles | /2014/07/30/world/africa/ransoming-citizens-europe-becomes-al-qaedas-patron.html | 2014-07-29 23:27:27 -0400 | ||
Anatomy of an AbductionRare video made by the militants behind a 2003 kidnapping of 32 Europeans shows the abductors smiling and waving for the camera as they ride their victims’ motorcycles. | 2 | mobile #articles | /2014/07/30/world/africa/militant-kidnapping-video.html | 2014-07-29 23:27:27 -0400 | ||
Coordinated Sanctions Aim at Russia’s Ability to Tap Its Oil ReservesThe United States and Europe began a joint effort to curb Russia’s long-term ability to develop new oil resources, taking aim at a source of Kremlin power in retaliation for its intervention in Ukraine. | 3 | mobile #articles | /2014/07/30/world/europe/european-sanctions-russia.html | 2014-07-29 23:27:27 -0400 | ||
Judges Block Abortion Curb in MississippiA three-judge panel ruled that in closing the sole clinic, the state would have shifted its constitutional obligations to neighboring states. | 4 | mobile #articles | /2014/07/30/us/mississippi-abortion-clinic-federal-court-blocks-closing.html | 2014-07-29 23:27:27 -0400 | ||
Ex-First Couple’s Defense in Virginia: State of Union9:11 PM ETLawyers for Former Gov. Bob McDonnell and his wife, Maureen, made clear in opening arguments for the couple’s corruption trial that they planned to rely on the sordid details of their unhappy union as the basis of their legal defense. | 5 | mobile #articles | /2014/07/30/us/politics/ex-first-couple-bob-mcdonnell-and-maureen-mcdonnell-of-virginia-say-united-we-fall.html | 2014-07-29 23:27:27 -0400 | ||
Israel Steps Up Airstrikes in Gaza as International Cease-Fire Efforts Stumble | 6 | mobile #articles | /2014/07/30/world/middleeast/gaza-israel-violence.html | 2014-07-29 23:27:27 -0400 | ||
Immigrant Mothers Released From Holding Centers, but With Ankle Monitors | 7 | mobile #articles | /2014/07/30/nyregion/immigrant-mothers-released-from-holding-centers-but-with-ankle-monitors.html | 2014-07-29 23:27:27 -0400 | ||
Impeachment, on G.O.P. Lips, Animates Base of Democrats | 8 | mobile #articles | /2014/07/30/us/politics/impeachment-on-gop-lips-animates-base-of-democrats.html | 2014-07-29 23:27:27 -0400 | ||
Sports of The Times: The Next Step for an N.F.L. Trailblazer Is to Stick Around | 9 | mobile #articles | /2014/07/30/sports/football/michael-sam-focuses-on-making-the-rams-not-history.html | 2014-07-29 23:27:27 -0400 | ||
Lawmakers Voice Skepticism on Iran Nuclear Deal | 10 | mobile #articles | /2014/07/30/world/middleeast/lawmakers-voice-skepticism-on-iran-nuclear-deal.html | 2014-07-29 23:27:27 -0400 | ||
Colorado Clerk Told to Stop Issuing Gay Marriage Licenses | 11 | mobile #articles | /2014/07/30/us/colorado-clerk-told-to-stop-issuing-gay-marriage-licenses.html | 2014-07-29 23:27:27 -0400 | ||
At Behest of Judge, U.S. Shortens Man’s 57-Year Mandatory Sentence | 12 | mobile #articles | /2014/07/30/nyregion/at-judges-behest-us-shortens-mans-57-year-mandatory-sentence.html | 2014-07-29 23:27:27 -0400 | ||
Another Win for Ex-Governor and Wrestler, This One in Court | 13 | mobile #articles | /2014/07/30/us/jesse-ventura-chris-kyle-navy-seal-book-lawsuit.html | 2014-07-29 23:27:27 -0400 | ||
Bits Blog: Seattle Takes Oracle’s Cloud | 14 | mobile #articles | /blogs/bits/2014/07/29/seattle-takes-oracles-cloud/ | 2014-07-29 23:27:27 -0400 | ||
Theodore Van Kirk, 93, Enola Gay Navigator, Dies | 15 | mobile #articles | /2014/07/30/us/30vankirk.html | 2014-07-29 23:27:27 -0400 | ||
Unbuttoned: Beyoncé, Superstar but Not a Fashion Icon | 16 | mobile #articles | /2014/07/31/fashion/beyonce-discounts-the-fashion-icon.html | 2014-07-29 23:27:27 -0400 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment