<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Hacker News: brchr</title><link>https://news.ycombinator.com/user?id=brchr</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sun, 26 Apr 2026 06:54:52 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=brchr" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by brchr in "Tony Hoare has died"]]></title><description><![CDATA[
<p>“I never had a doctorate, so I had to make do with Quicksort.” —Sir Tony Hoare (unpublished interview for Algorithms to Live By)</p>
]]></description><pubDate>Tue, 10 Mar 2026 15:56:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=47325007</link><dc:creator>brchr</dc:creator><comments>https://news.ycombinator.com/item?id=47325007</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47325007</guid></item><item><title><![CDATA[New comment by brchr in "Bluesky CEO Jay Graber is stepping down"]]></title><description><![CDATA[
<p>FYI, There is absolutely an Internet Hall of Fame and anyone would be welcome to nominate Jay! <a href="https://www.internethalloffame.org" rel="nofollow">https://www.internethalloffame.org</a></p>
]]></description><pubDate>Tue, 10 Mar 2026 02:30:41 +0000</pubDate><link>https://news.ycombinator.com/item?id=47318450</link><dc:creator>brchr</dc:creator><comments>https://news.ycombinator.com/item?id=47318450</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47318450</guid></item><item><title><![CDATA[New comment by brchr in "Rolex Caliber 7135: new indirect impulse escapement and high frequency movement"]]></title><description><![CDATA[
<p>This is only half correct.<p>It is true that some/many Rolex AD’s will allocate the most desirable watches to customers with an existing purchase history, and that some customers therefore buy less desirable models in order to earn goodwill with the AD.<p>However, it is not the case that the most desirable watches are necessarily (or even on average) the most expensive models. For instance, it is generally the <i>steel</i> models that are the most desirable and command the highest markup from MSRP on the secondary market. The Submariner, the Daytona, the GMT-Master II: almost all of Rolex’s most iconic, most in-demand, most "flippable" watches are the full steel versions, which are the <i>cheapest</i> versions of those model families.<p>To give a concrete example, it is generally considered easier to get a full-gold GMT (~$43k) or a two-tone (half steel, half gold) GMT (~$18k) at an Authorized Dealer than it is to get the full steel version ($11k).</p>
]]></description><pubDate>Wed, 09 Apr 2025 20:07:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=43637221</link><dc:creator>brchr</dc:creator><comments>https://news.ycombinator.com/item?id=43637221</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43637221</guid></item><item><title><![CDATA[New comment by brchr in "Analysis of 2024 election results in Clark County indicates manipulation"]]></title><description><![CDATA[
<p>It is possible to reproduce one of the key claims in this post -- the "Russian tail" in the early voting tallies -- straight from the raw data hosted on the Clark County, NV website. This code can be run in a Colab notebook:<p><pre><code>  # Download and extract zip file
  import requests
  import zipfile
  import io

  # Get raw data from Clark County website
  zip_url = "https://elections.clarkcountynv.gov/electionresultsTV/cvr/24G/24G_CVRExport_NOV_Final_Confidential.zip"

  # Download the zip file
  response = requests.get(zip_url)
  zip_file = zipfile.ZipFile(io.BytesIO(response.content))

  # Extract to the current working directory
  zip_file.extractall()

  # Close the zip file
  zip_file.close()

  import pandas as pd
  import matplotlib.pyplot as plt
  import numpy as np

  # Read the actual data, skipping the first three header rows and excluding downballot races
  df = pd.read_csv('/content/24G_CVRExport_NOV_Final_Confidential.csv', skiprows=3, usecols=range(21), low_memory=False)

  # Find the Trump and Harris columns
  trump_col = "REP"
  harris_col = "DEM"

  # Convert to numeric
  df[trump_col] = pd.to_numeric(df[trump_col], errors='coerce')
  df[harris_col] = pd.to_numeric(df[harris_col], errors='coerce')

  # Filter for early voting
  early_voting = df[df['CountingGroup'] == 'Early Voting']

  # Group by tabulator and calculate percentages
  tabulator_stats = early_voting.groupby('TabulatorNum').agg({
      harris_col: 'sum',
      trump_col: 'sum'
  }).reset_index()

  # Calculate total votes and percentages
  tabulator_stats['total_votes'] = tabulator_stats[harris_col] + tabulator_stats[trump_col]
  tabulator_stats['harris_pct'] = tabulator_stats[harris_col] / tabulator_stats['total_votes'] \* 100
  tabulator_stats['trump_pct'] = tabulator_stats[trump_col] / tabulator_stats['total_votes'] \* 100

  # Create subplots
  fig, (ax1, ax2) = plt.subplots(2, 1, figsize=(10, 8))

  # Plot Harris histogram
  ax1.hist(tabulator_stats['harris_pct'], bins=50, edgecolor='black', color='blue', alpha=0.7)
  ax1.set_title('Distribution of Harris Votes by Tabulator (Early Voting Only)')
  ax1.set_xlabel('Percentage of Votes for Harris')
  ax1.set_ylabel('Number of Tabulators')

  # Plot Trump histogram
  ax2.hist(tabulator_stats['trump_pct'], bins=50, edgecolor='black', color='red', alpha=0.7)
  ax2.set_title('Distribution of Trump Votes by Tabulator (Early Voting Only)')
  ax2.set_xlabel('Percentage of Votes for Trump')
  ax2.set_ylabel('Number of Tabulators')

  plt.tight_layout()
  plt.show()

</code></pre>
This produces a figure identical (up to histogram bucketing) to the one at the end of the linked article.</p>
]]></description><pubDate>Mon, 10 Feb 2025 02:57:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=42996461</link><dc:creator>brchr</dc:creator><comments>https://news.ycombinator.com/item?id=42996461</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42996461</guid></item><item><title><![CDATA[New comment by brchr in "Let's Encrypt is 10 years old now"]]></title><description><![CDATA[
<p>Vint Cerf & Bob Kahn (TCP/IP), Paul Baran (packet switching), Tim Berners-Lee (WWW), Marc Andreesen (Netscape), Brewster Kahle (Internet Archive), Douglas Engelbart (hypertext), Aaron Swartz (RSS, Creative Commons), Richard Stallman (GNU, free software movement), Van Jacobson (TCP/IP congestion control), Jimmy Wales (Wikipedia), Mitchell Baker (Mozilla), Linus Torvalds (Linux)...<p>...but you’re missing the point of my comment, which is simply to acknowledge and honor (my late dear friend) Peter.</p>
]]></description><pubDate>Wed, 20 Nov 2024 10:10:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=42192423</link><dc:creator>brchr</dc:creator><comments>https://news.ycombinator.com/item?id=42192423</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42192423</guid></item><item><title><![CDATA[New comment by brchr in "Let's Encrypt is 10 years old now"]]></title><description><![CDATA[
<p>Peter Eckersley (1978-2022) was posthumously inducted into the Internet Hall of Fame for his founding work on Let’s Encrypt. The Internet is a better place because of Peter (and his many collaborators and colleagues).</p>
]]></description><pubDate>Wed, 20 Nov 2024 09:22:15 +0000</pubDate><link>https://news.ycombinator.com/item?id=42192139</link><dc:creator>brchr</dc:creator><comments>https://news.ycombinator.com/item?id=42192139</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42192139</guid></item><item><title><![CDATA[New comment by brchr in "Gravitational wave researchers cast new light on Antikythera mechanism mystery"]]></title><description><![CDATA[
<p>My understanding of the evidence is that it suggests the mechanism was made in Rhodes.</p>
]]></description><pubDate>Thu, 04 Jul 2024 20:41:14 +0000</pubDate><link>https://news.ycombinator.com/item?id=40877883</link><dc:creator>brchr</dc:creator><comments>https://news.ycombinator.com/item?id=40877883</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40877883</guid></item><item><title><![CDATA[New comment by brchr in "Lamport's Bakery algorithm, demonstrated in Python"]]></title><description><![CDATA[
<p>Leslie Lamport gives a short oral history of the Bakery Algorithm in Episode 3 of "Algorithms at Work": <a href="https://www.audible.com/pd/Episode-3-Concurrency-How-to-Coordinate-Podcast/B09QXQXRWP" rel="nofollow">https://www.audible.com/pd/Episode-3-Concurrency-How-to-Coor...</a></p>
]]></description><pubDate>Sat, 20 Jan 2024 21:15:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=39072411</link><dc:creator>brchr</dc:creator><comments>https://news.ycombinator.com/item?id=39072411</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39072411</guid></item><item><title><![CDATA[New comment by brchr in "Misalignment Museum"]]></title><description><![CDATA[
<p>Author of "The Alignment Problem" here, to say: Of course this question depends on your semantics of "harm," "AI," and "alignment," but by most definitions (and certainly by mine) the answer is overwhelmingly yes, many.<p>These harms can be diffuse at massive scale, and acute at small scale.<p>One example of each:
(1) <a href="https://www.science.org/doi/abs/10.1126/science.aax2342" rel="nofollow">https://www.science.org/doi/abs/10.1126/science.aax2342</a>
One of USA’s largest health insurers builds ML system for patient triage. It optimizes for a proxy metric of health need (namely, cost) rather than health need itself; consequently it deprioritizes and systematically excludes millions of people from access to health care.<p>(2) <a href="https://en.wikipedia.org/wiki/Death_of_Elaine_Herzberg" rel="nofollow">https://en.wikipedia.org/wiki/Death_of_Elaine_Herzberg</a>
Autonomous Uber car builds their braking system on top of a vision model that optimizes for object classification accuracy using categories of {"pedestrian", "cyclist", "vehicle", "debris"}; consequently it fails to determine how to classify a woman <i>walking a bicycle</i> across the street, as a result killing her.<p>In both cases, optimizing for a naively sensible proxy metric of the thing that was truly desired turned out to be catastrophic.</p>
]]></description><pubDate>Tue, 18 Apr 2023 16:13:17 +0000</pubDate><link>https://news.ycombinator.com/item?id=35615959</link><dc:creator>brchr</dc:creator><comments>https://news.ycombinator.com/item?id=35615959</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=35615959</guid></item><item><title><![CDATA[New comment by brchr in "Mechanical Watch"]]></title><description><![CDATA[
<p>Watch movements are generally sensitive to magnetic fields, and can become magnetized and lose accuracy. Some watch models explicitly advertise their level of resistance to magnetism, for instance the Rolex Milgauss, which is designed to withstand 1,000 ("mille") gauss.</p>
]]></description><pubDate>Thu, 05 May 2022 04:50:23 +0000</pubDate><link>https://news.ycombinator.com/item?id=31269608</link><dc:creator>brchr</dc:creator><comments>https://news.ycombinator.com/item?id=31269608</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=31269608</guid></item><item><title><![CDATA[New comment by brchr in "The Antikythera mechanism reveals new secrets"]]></title><description><![CDATA[
<p>For the donation of a single dollar, you are given access to all of his videos. I would not describe that as "exclusive," although I understand what you are saying.</p>
]]></description><pubDate>Tue, 04 Jan 2022 22:08:04 +0000</pubDate><link>https://news.ycombinator.com/item?id=29801271</link><dc:creator>brchr</dc:creator><comments>https://news.ycombinator.com/item?id=29801271</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29801271</guid></item><item><title><![CDATA[New comment by brchr in "Algorithms to Live By"]]></title><description><![CDATA[
<p>I can see why you might think that on a first impression, but I genuinely think you’d be surprised! (Book has been discussed on HN quite a few times, e.g., <a href="https://news.ycombinator.com/item?id=25717949" rel="nofollow">https://news.ycombinator.com/item?id=25717949</a>.)</p>
]]></description><pubDate>Sun, 05 Dec 2021 16:36:58 +0000</pubDate><link>https://news.ycombinator.com/item?id=29450502</link><dc:creator>brchr</dc:creator><comments>https://news.ycombinator.com/item?id=29450502</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29450502</guid></item><item><title><![CDATA[New comment by brchr in "Peter Norvig Joins Stanford HAI"]]></title><description><![CDATA[
<p>Current title ("Peter Norvig Leaves Google to Join Stanford HAI") seems to overstate slightly. According to Peter: "I still have my affiliation with Google, but will spend most of my time at Stanford."</p>
]]></description><pubDate>Tue, 12 Oct 2021 00:24:11 +0000</pubDate><link>https://news.ycombinator.com/item?id=28834612</link><dc:creator>brchr</dc:creator><comments>https://news.ycombinator.com/item?id=28834612</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=28834612</guid></item><item><title><![CDATA[New comment by brchr in "If 'All Models Are Wrong,' Why Do We Give Them So Much Power?"]]></title><description><![CDATA[
<p>Oh no, are you getting hit with an adwall? I’m able to open the following links in incognito windows with no trouble:<p><a href="https://www.nytimes.com/2021/06/04/opinion/ezra-klein-podcast-brian-christian.html" rel="nofollow">https://www.nytimes.com/2021/06/04/opinion/ezra-klein-podcas...</a>?<p><a href="https://www.nytimes.com/2021/06/04/podcasts/transcript-ezra-klein-interviews-brian-christian.html" rel="nofollow">https://www.nytimes.com/2021/06/04/podcasts/transcript-ezra-...</a></p>
]]></description><pubDate>Fri, 04 Jun 2021 17:59:42 +0000</pubDate><link>https://news.ycombinator.com/item?id=27396662</link><dc:creator>brchr</dc:creator><comments>https://news.ycombinator.com/item?id=27396662</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=27396662</guid></item><item><title><![CDATA[New comment by brchr in "If 'All Models Are Wrong,' Why Do We Give Them So Much Power?"]]></title><description><![CDATA[
<p>Brian Christian here. Honored to be the guest on the Ezra Klein show this week and by Ezra’s kind words: "Brian Christian’s recent book The Alignment Problem is the best book on the key technical and moral questions of A.I. that I’ve read."<p>Happy to take any questions, etc., if folks are interested! AMA.</p>
]]></description><pubDate>Fri, 04 Jun 2021 17:49:04 +0000</pubDate><link>https://news.ycombinator.com/item?id=27396488</link><dc:creator>brchr</dc:creator><comments>https://news.ycombinator.com/item?id=27396488</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=27396488</guid></item><item><title><![CDATA[If 'All Models Are Wrong,' Why Do We Give Them So Much Power?]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.nytimes.com/2021/06/04/opinion/ezra-klein-podcast-brian-christian.html">https://www.nytimes.com/2021/06/04/opinion/ezra-klein-podcast-brian-christian.html</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=27396473">https://news.ycombinator.com/item?id=27396473</a></p>
<p>Points: 9</p>
<p># Comments: 5</p>
]]></description><pubDate>Fri, 04 Jun 2021 17:47:42 +0000</pubDate><link>https://www.nytimes.com/2021/06/04/opinion/ezra-klein-podcast-brian-christian.html</link><dc:creator>brchr</dc:creator><comments>https://news.ycombinator.com/item?id=27396473</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=27396473</guid></item><item><title><![CDATA[New comment by brchr in "Santa Cruz, California bans predictive policing in U.S. first"]]></title><description><![CDATA[
<p>There are some semantic issues, e.g., the distinction between "mandatory" and "discretionary" expenditures, but the data is pretty easy to explore.<p>Essentially you are "both right". > 50% of total spending is Social Security, Medicare and Medicaid. Whether that is "social services" is another semantic question.<p>And > 50% of the discretionary budget is defense.<p>But have a look for yourself: e.g., <a href="https://en.wikipedia.org/wiki/United_States_federal_budget" rel="nofollow">https://en.wikipedia.org/wiki/United_States_federal_budget</a></p>
]]></description><pubDate>Fri, 26 Jun 2020 17:28:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=23654530</link><dc:creator>brchr</dc:creator><comments>https://news.ycombinator.com/item?id=23654530</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=23654530</guid></item><item><title><![CDATA[New comment by brchr in "For black CEOs in Silicon Valley, humiliation is a part of doing business"]]></title><description><![CDATA[
<p>Five days ago, the National Association of Black Journalists revised their style guide:<p>'For the last year, the National Association of Black Journalists (NABJ) has been integrating the capitalization of the word "Black" into its communications.<p>However, it is equally important that the word is capitalized in news coverage and reporting about Black people, Black communities, Black culture, Black institutions, etc.<p>NABJ's Board of Directors has adopted this approach, as well as many of our members, and recommends that it be used across the industry.<p>We are updating the organization's style guidance to reflect this determination. The organization believes it is important to capitalize "Black" when referring to (and out of respect for) the Black diaspora.<p>NABJ also recommends that whenever a color is used to appropriately describe race then it should be capitalized, including White and Brown.'<p><a href="https://www.nabj.org/news/512370/NABJ-Statement-on-Capitalizing-Black-and-Other-Racial-Identifiers.htm" rel="nofollow">https://www.nabj.org/news/512370/NABJ-Statement-on-Capitaliz...</a><p>This appears to have been part of what prompted a large number of newspapers to change their style guides this past week, including USA Today, NBC News, MSNBC, the LA Times, the Seattle Times, the Boston Globe, the San Diego Union-Tribune, and the Washington Post.</p>
]]></description><pubDate>Tue, 16 Jun 2020 21:36:05 +0000</pubDate><link>https://news.ycombinator.com/item?id=23544512</link><dc:creator>brchr</dc:creator><comments>https://news.ycombinator.com/item?id=23544512</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=23544512</guid></item><item><title><![CDATA[New comment by brchr in "The impact of homelessness and the opioid crisis on San Francisco streets"]]></title><description><![CDATA[
<p>This comment is both unhelpful (dismisses the original claim using zero evidence) and completely incorrect.<p>Please look at the trendlines for "heroin deaths" and "synthetic opiod deaths" in the following graph of US CDC data, and note that from the turn of the millennium to 2017, opioid-related deaths in the US have increased more than 10x:<p><a href="https://www.drugabuse.gov/related-topics/trends-statistics/overdose-death-rates" rel="nofollow">https://www.drugabuse.gov/related-topics/trends-statistics/o...</a></p>
]]></description><pubDate>Thu, 27 Dec 2018 18:39:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=18771433</link><dc:creator>brchr</dc:creator><comments>https://news.ycombinator.com/item?id=18771433</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=18771433</guid></item><item><title><![CDATA[New comment by brchr in "How Bad Is Selfish Routing? (2001) [pdf]"]]></title><description><![CDATA[
<p>I have always found selfish routing to have interesting implications for a world in which traffic is more coordinated and centrally managed -- be it through present-day apps like Google Maps and Waze, or some near-future technology with autonomous cars communicating with one another. The happy Roughgarden/Tardos result that selfish routing is only 4/3 as bad as coordination is great, but it also means there’s not much slack to be picked up: fully coordinated routes would only be 3/4 as long as the status quo.<p>(Of course that's not the entire story on autonomous cars, for instance, because they will also get into fewer accidents, react to changing traffic conditions faster, can potentially drive more tightly at high speed, etc.)<p>Anyone interested in selfish routing should check out Braess's paradox, which is wonderfully unintuitive and strange:<p><a href="https://en.wikipedia.org/wiki/Braess's_paradox" rel="nofollow">https://en.wikipedia.org/wiki/Braess's_paradox</a></p>
]]></description><pubDate>Sun, 12 Aug 2018 01:40:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=17742514</link><dc:creator>brchr</dc:creator><comments>https://news.ycombinator.com/item?id=17742514</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=17742514</guid></item></channel></rss>