Skip to content

Commit f994c8a

Browse files
committed
examples
1 parent 763508c commit f994c8a

File tree

6 files changed

+1896
-0
lines changed

6 files changed

+1896
-0
lines changed

Projects/hackernews-comments/examples/2019-03-09_hn-only.md

Lines changed: 766 additions & 0 deletions
Large diffs are not rendered by default.

Projects/hackernews-comments/examples/2019-03-09_wiki-hn.md

Lines changed: 787 additions & 0 deletions
Large diffs are not rendered by default.

Projects/hackernews-comments/examples/titles-comments_2019-03-09_hn-only

Lines changed: 150 additions & 0 deletions
Large diffs are not rendered by default.

Projects/hackernews-comments/examples/titles-comments_2019-03-09_wiki-then-hn

Lines changed: 150 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
Run full Linux distros or specific applications on top of Android
2+
An “acoustic metamaterial” that can cancel 94 percent of sound
3+
Dutch join backlash at expensive drugs by making their own
4+
Web Scraping with Electron
5+
A generalised solution to distributed consensus
6+
MathML in Chromium
7+
The AI-Art Gold Rush Is Here
8+
Sick marine mammals turning up on California beaches
9+
“It's done in hardware so it's cheap” (2012)
10+
Show HN: My CV is also a bootloader
11+
How to pass a programming interview (2016)
12+
The Man with an Elephant’s Nose
13+
CDC: Low-income parents send sick kids to school due to lack paid sick leave
14+
Whither Speech Recognition? (1969) [pdf]
15+
Ask HN: Where should I start as a 34-year-old switching to software as a career?
16+
Cloudy with a Chance of War (2014)
17+
If We Blow Up an Asteroid, It Might Put Itself Back Together
18+
H-1B: Outsourcer HCL games visa system to discriminate against non-South Asians
19+
US citizens will need a visa to visit Europe starting in 2021
20+
Gone in six seconds? Exploiting car alarms
21+
Proton Technologies awarded €2M from the EU
22+
Mino Games (YC W11) Is Hiring a Lead Back End Engineer in Montreal, QC
23+
JavaScript Fatigue: Realities of our industry (2017)
24+
Intellectual Denial of Service Attacks, Part 2
25+
Live coding a basic Go compiler with LLVM in 20 minutes
26+
SpaceX Crew Dragon Splashes Down After Historic Test Flight
27+
Updates from YC
28+
Individual differences in controlling access to working memory (2005)
29+
Myequifax.com Bypasses Credit Freeze Pin
30+
Using TensorFlow to detect fish species
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#!/usr/bin/gawk -f
2+
3+
BEGIN {
4+
FS="\t"
5+
} {
6+
if ((NR-1) % 5 == 0)
7+
print "## " $1
8+
gsub(/<NL>/, "\n ", $2)
9+
gsub(/\\ -/, " -", $2)
10+
o = gensub(/_ ([^_]*) _/, "_\\1_", "g", $2)
11+
print "- " o
12+
print "\n"
13+
}

0 commit comments

Comments
 (0)