Readit News logoReadit News
hithereagain commented on Show HN: Hacker News em dash user leaderboard pre-ChatGPT   gally.net/miscellaneous/h... · Posted by u/tkgally
Symbiote · 7 months ago
Using the HN public dataset in Google BigQuery [0], which I think fits easily in the amount of free queries allowed:

  SELECT 
    EXTRACT(YEAR FROM timestamp) AS year, 
    SUM(CASE WHEN text LIKE '%—%' THEN 1 ELSE 0 END) AS withDash, 
    COUNT(*) AS total, 
    SUM(CASE WHEN text LIKE '%—%' THEN 1 ELSE 0 END) / COUNT(*) AS fraction
  FROM `bigquery-public-data.hacker_news.full` 
    WHERE type = 'comment' 
  GROUP BY year 
  ORDER BY year;

  year with—   total  frac
  2006     0      12 0.000
  2007    13   70858 0.000
  2008   461  247922 0.001
  2009  1497  491034 0.003
  2010  3835  842438 0.005
  2011  4719 1044913 0.005
  2012  5648 1246782 0.005
  2013  7881 1665185 0.005
  2014  8400 1510814 0.006
  2015  9967 1642912 0.006
  2016 12081 2093612 0.006
  2017 14530 2361709 0.006
  2018 19246 2384086 0.008
  2019 23662 2755063 0.009
  2020 27316 3243173 0.008
  2021 32863 3765921 0.009
  2022 34657 4062159 0.009
  2023 36611 4221940 0.009
  2024 32543 3339861 0.010
  2025 30608 2231919 0.014
So there's definitely been an increase.

Querying for the users who use "—" most as a proportion of all their comments:

  SELECT
    `by`,
    SUM(CASE WHEN text LIKE '%—%' THEN 1 ELSE 0 END) / COUNT(*) AS fraction,
    COUNT(*) AS total,
    MIN(timestamp) AS minTime,
    MAX(timestamp) AS maxTime
  FROM `bigquery-public-data.hacker_news.full` 
  WHERE 
    type = 'comment' AND 
    timestamp < '2022-11-30' 
  GROUP BY `by`
  HAVING COUNT(*) > 100
  ORDER BY fraction DESC
  LIMIT 250;
zmgsabst uses them the most [1], westoncb [2] is an older account that uses them fourth-most.

[0] https://console.cloud.google.com/marketplace/product/y-combi...

[1] https://news.ycombinator.com/threads?id=zmgsabst

[2] https://news.ycombinator.com/threads?id=westoncb

hithereagain · 7 months ago
Older people, say folks in their forties or older, grew up with the em dash.
hithereagain commented on Show HN: Turning books into chatbots with GPT-3   konjer.xyz/... · Posted by u/mnkm
hithereagain · 3 years ago
This was interesting, but for the Stephen King On Writing Book, when I asked it what Chapter 5 was about, I got a different answer each time.
hithereagain commented on Unapproved books now a felony in Manatee County schools   popular.info/p/florida-te... · Posted by u/celtoid
analog31 · 3 years ago
"I hope I live to see the day when, as in the early days of our country, we won't have any public schools. The churches will have taken them over again and Christians will be running them." -- Jerry Falwell
hithereagain · 3 years ago
He did not.

Deleted Comment

hithereagain commented on Poll: What's the best laptop for Linux these days?    · Posted by u/killjoywashere
davidw · 3 years ago
> I've also heard legends about how great Dell's Worldwide repair program is where people have had parts delivered to them next day on the island of Borneo in Indonesia, but that's yet to be tested.

This was a long time ago, but I bought a Dell with Ubuntu while visiting my parents in Oregon, and took it back with me to where I was living in Innsbruck, Austria.

The hard drive (I told you this was a while back) died on me. I called up Dell, and expected some nightmare of having to ship it back to the US where I'd bought it and waiting months and who knows what.

But what actually happened was some guy showed up at my door the next day with a new drive and swapped it out.

I was so impressed.

hithereagain · 3 years ago
I recently paid for Dell's next day service with a new PC purchase. The PC arrived broken, and Dell refused to send anyone out to fix it. Instead, I waited weeks for a replacement, feeling like a chump.

When I complained to Dell, none of their employees seemed to understand that they had failed to honor their warranty, or why I would be disappointed.

The replacement machine works fine, but Dell violated their agreement with me and so I can no longer recommend them.

hithereagain commented on Pixie – A full-featured 2D graphics library for Nim   github.com/treeform/pixie... · Posted by u/elcritch
ShangSixtyTwo · 5 years ago
"Pixi" != "Pixie"
hithereagain · 5 years ago
But "Pixi" == "Pixie" when evaluated by humans
hithereagain commented on The greatest privilege we never talk about: beauty   medium.com/@sfard/the-gre... · Posted by u/ipeefreely
hithereagain · 6 years ago
I tell you honey, it's a crying shame; All the pretty girls really look the same. -- Iggy and the Stooges
hithereagain commented on Colornames.org – A collaborative effort to name all 16.7M colors   colornames.org/... · Posted by u/picdit
joeax · 6 years ago
Just go to any paint store and you'll find yourself halfway there. When we were searching for gray tones we were stunned at the creative names we saw for the thousands of grays available i.e. "mindful gray" "blissful stone" etc.

That's got a be a dream job for some uber-creative artist.

hithereagain · 6 years ago
And a nightmare job for some other creative artist.
hithereagain commented on France proposes upload filter law, “forgets” user rights   juliareda.eu/2019/12/fren... · Posted by u/gnomewascool
pferde · 6 years ago
You would just be adding headaches to the PR drones working for that politician. I doubt the politician himself would ever know about it happening.

These people are usually behind several layers of separation from real world.

hithereagain · 6 years ago
Don't give up already ;-)

u/hithereagain

KarmaCake day25February 15, 2017View Original