<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: hazard</title><link>https://news.ycombinator.com/user?id=hazard</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Fri, 17 Jul 2026 04:39:09 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=hazard" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by hazard in "Professor denounces mass AI fraud on an exam at Brown"]]></title><description><![CDATA[
<p>After being in the workforce for decades, this whole issue is just so incomprehensible to me.<p>I went an ungrad school that was top-5 in engineering. But my experience - and in the experience of other people I've talked to - formal undergrad education was, and always has been, a farce. At best, you learn through working on projects that are meaningful to you and learn "how to be an adult" (and later, you learn how to manage the enormous financial debt you acquired). But more typically, it's pure credentialism - no one cares what your grades were, only what school you graduated from.<p>The amount of actual learning that goes on from classes is minimal, but somehow we can't shift the overton window away from this silly game of grades that don't measure anything meaningful.<p>After graduating, I've was asked about my grades exactly twice in my life -- once when I applied to a master's program, and at one job interview (the company had a policy of asking about GPA for anyone who graduated less than 10 years ago).<p>I'm pro-education but anti-school, and all this nonsense makes me this way even more.</p>
]]></description><pubDate>Mon, 29 Jun 2026 03:42:11 +0000</pubDate><link>https://news.ycombinator.com/item?id=48714531</link><dc:creator>hazard</dc:creator><comments>https://news.ycombinator.com/item?id=48714531</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48714531</guid></item><item><title><![CDATA[New comment by hazard in "Modern GPU Programming for MLSys"]]></title><description><![CDATA[
<p>This looks great, but I'd really like to see associated exercises (and solutions) to make it useful for self-study</p>
]]></description><pubDate>Fri, 26 Jun 2026 20:14:45 +0000</pubDate><link>https://news.ycombinator.com/item?id=48691428</link><dc:creator>hazard</dc:creator><comments>https://news.ycombinator.com/item?id=48691428</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48691428</guid></item><item><title><![CDATA[New comment by hazard in "The Coming Layoffs and the Revenge of the Measurers"]]></title><description><![CDATA[
<p>> Some engineers, given a fixed token budget, generate exponentially more (and better) output. Other engineers waste their tokens. The variance is enormous, and unlike most performance variance, it is now directly measurable. HR has never had a clearer signal of leverage.<p>This doesn't make sense to me. "A clearer signal of leverage" implies an objective way to measure software engineering output, which has been the white whale of engineering management for the last 50 years.</p>
]]></description><pubDate>Mon, 25 May 2026 18:30:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=48270048</link><dc:creator>hazard</dc:creator><comments>https://news.ycombinator.com/item?id=48270048</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48270048</guid></item><item><title><![CDATA[New comment by hazard in "Show HN: I trained a chess engine to play like humans"]]></title><description><![CDATA[
<p>The 100-point buckets are fine-tuned on blitz games from users at that Lichess rating. Lichess ratings tend to be a bit high compared to FIDE/USDF/chess.com ratings. There's a good post at <a href="https://chessgoals.com/rating-comparison/" rel="nofollow">https://chessgoals.com/rating-comparison/</a> comparing them</p>
]]></description><pubDate>Mon, 11 May 2026 19:21:14 +0000</pubDate><link>https://news.ycombinator.com/item?id=48099476</link><dc:creator>hazard</dc:creator><comments>https://news.ycombinator.com/item?id=48099476</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48099476</guid></item><item><title><![CDATA[Show HN: I trained a chess engine to play like humans]]></title><description><![CDATA[
<p>I built 1e4.ai - a chess web app where you play against neural networks trained to mimic human Lichess players at specific Elo ranges. There's a separate model for each 100-point rating bucket from ~800 to 2200+, and the bots not only choose human-like moves but also burn clock time, play worse under time pressure, and blunder in human-like ways.<p>Live demo: <a href="https://1e4.ai" rel="nofollow">https://1e4.ai</a>
Code: <a href="https://github.com/thomasj02/1e4_ai" rel="nofollow">https://github.com/thomasj02/1e4_ai</a><p>A few things that might be interesting:<p>- Trained on almost a full year of Lichess blitz games, around 1B total games<p>- Architecture is an a small (~9MM parameters) transformer-based network that takes the board, recent move history, the player's rating, and remaining clock time as input. Three separate models per rating bucket: move, clock-usage, and win probability. The clock model is what makes the bots feel humanish under time pressure rather than instant. Because the move model takes the clock as one input parameter, it also learns to blunder under time pressure like a human might.<p>- Because the network is so tiny, no GPU is needed for inference - it runs easily on a local CPU<p>- Downside of the tiny network is that it's a bit weak as you turn up the rating past around 1700. It can spot short tactics but not long multi-move combinations.<p>- Initial training on a rented 8xH100 cluster, then fine-tunes on my local GPU for different rating ranges<p>- Inspired by Maia-2 and DeepMind's "Grandmaster-Level Chess Without Search". On a held-out Lichess blitz benchmark, the it beats Maia-2 blitz on top-1 move prediction (56.7% vs 52.7%) and pretty substantially on win-probability calibration (Brier 0.176 vs 0.272). Numbers and code in <a href="https://github.com/thomasj02/1e4_ai/tree/master/experiments/maia2_benchmark" rel="nofollow">https://github.com/thomasj02/1e4_ai/tree/master/experiments/...</a><p>- The data pipeline is C++ via nanobind, then training with Pytorch. Getting this right was actually the thing I spent the most time on. Pre-shuffling the dataset and then being able to read the shuffled dataset sequentially at training time kept the GPU utilization high. Without this it spent a huge percentage of time on I/O while the GPU sat idle.<p>Happy to answer questions about the rating-conditioning, the clock model, or the data pipeline.</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=48088819">https://news.ycombinator.com/item?id=48088819</a></p>
<p>Points: 14</p>
<p># Comments: 3</p>
]]></description><pubDate>Sun, 10 May 2026 22:31:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=48088819</link><dc:creator>hazard</dc:creator><comments>https://news.ycombinator.com/item?id=48088819</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48088819</guid></item><item><title><![CDATA[New comment by hazard in "Sam Vimes 'Boots' Theory of Socio-Economic Unfairness"]]></title><description><![CDATA[
<p>> The reason that the rich were so rich, Vimes reasoned, was because they managed to spend less money.<p>The premise is just false. The parable might be true when comparing, say, lower class vs lower-middle-class, or lower-middle-class to middle class. But the difference between upper class and middle class is not "spending less money." It's a vastly different net worth that comes from inheritance, building / running businesses, investments, etc.<p>The boots theory focuses on the costs, but the real difference comes from the income & net worth</p>
]]></description><pubDate>Wed, 15 Apr 2026 20:39:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=47784926</link><dc:creator>hazard</dc:creator><comments>https://news.ycombinator.com/item?id=47784926</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47784926</guid></item><item><title><![CDATA[New comment by hazard in "Ask HN: Is there any interest in a native Qt/C++ Discord client?"]]></title><description><![CDATA[
<p>I'm always a bit confused by "written in X" as a feature. Rust devs are the worst about this, but not the only offenders.<p>The language is not a feature!<p>I'm a C++ programmer, and even I don't care what language the applications I use are written in.<p>"Fast" is a feature, not that it's in C++</p>
]]></description><pubDate>Sun, 05 Apr 2026 16:56:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=47651325</link><dc:creator>hazard</dc:creator><comments>https://news.ycombinator.com/item?id=47651325</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47651325</guid></item><item><title><![CDATA[New comment by hazard in "Statement from Jerome Powell"]]></title><description><![CDATA[
<p>And of course equity futures immediately dropped on the news</p>
]]></description><pubDate>Mon, 12 Jan 2026 01:31:48 +0000</pubDate><link>https://news.ycombinator.com/item?id=46582680</link><dc:creator>hazard</dc:creator><comments>https://news.ycombinator.com/item?id=46582680</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46582680</guid></item><item><title><![CDATA[New comment by hazard in "Ask HN: What are you working on? (January 2026)"]]></title><description><![CDATA[
<p><a href="https://www.1e4.ai/" rel="nofollow">https://www.1e4.ai/</a><p>A transformer-based (but not LLM) chess model that plays like a human. 
The site right now is <i>very</i> rudimentary - no saving games, reviewing games, etc., just playing.<p>It uses three models:
* A move model for what move to make
* A clock model for how long to 'think' (inference takes milliseconds, the thinking time is just emulated based on the output of the clock model)
* A winner model that predicts the likelihood of each game outcome (white win / black win / draw). If you've seen eval bars when watching chess games online, this isn't quite the same. It's a percentage based outcome, rather than number of centipawns advantage that the usual eval bars use.<p>Right now it has a model trained on 1700-1800 rating level games from Lichess. You can turn it up and down past that, but I'm working on training models on a wide variety of other rating ranges.<p>If you're really into computer chess, this is similar to MAIA, but with some extra models and very slightly higher move prediction accuracy compared to the published results of the MAIA-2 paper</p>
]]></description><pubDate>Sun, 11 Jan 2026 21:36:41 +0000</pubDate><link>https://news.ycombinator.com/item?id=46580408</link><dc:creator>hazard</dc:creator><comments>https://news.ycombinator.com/item?id=46580408</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46580408</guid></item><item><title><![CDATA[New comment by hazard in "Resistance training load does not determine hypertrophy"]]></title><description><![CDATA[
<p>tldr appears to be that if you work to fatigue it doesn't matter if you fatigue out with high weights vs low weights</p>
]]></description><pubDate>Thu, 01 Jan 2026 00:06:18 +0000</pubDate><link>https://news.ycombinator.com/item?id=46449715</link><dc:creator>hazard</dc:creator><comments>https://news.ycombinator.com/item?id=46449715</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46449715</guid></item><item><title><![CDATA[New comment by hazard in "Endoscopist deskilling risk after exposure to AI in colonoscopy"]]></title><description><![CDATA[
<p>"We believe that continuous exposure to transportation support systems like cars may lead to the natural human tendency to over-rely on their engines, leading to travelers becoming less motivated, less focused, and less responsible when riding horses."</p>
]]></description><pubDate>Sun, 17 Aug 2025 20:53:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=44934857</link><dc:creator>hazard</dc:creator><comments>https://news.ycombinator.com/item?id=44934857</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44934857</guid></item><item><title><![CDATA[New comment by hazard in "Ask HN: Who is hiring? (November 2024)"]]></title><description><![CDATA[
<p>Kbit | Data Visualization Engineer + 2 other roles | Full time | 100% Remote, Hybrid available in certain locations if you prefer<p>Strong base salary plus quarterly cash bonuses depending on firm performance.<p>We're a digital asset hedge fund with a 7-year track record of delivering outstanding returns for our investors.<p>We're hiring a data visualization engineer to build C++ / Python / Qt applications for internal use by our researchers. Previous experience in real-time visualization of large data sets a plus. If you know what a DOM ladder is, that's a huge plus.<p>More details at <a href="https://kbit.pinpointhq.com/en/postings/3aa0f650-a80d-44e4-8099-289067884799" rel="nofollow">https://kbit.pinpointhq.com/en/postings/3aa0f650-a80d-44e4-8...</a><p>Also seeking Quant Traders and SREs, see <a href="https://kbit.pinpointhq.com/" rel="nofollow">https://kbit.pinpointhq.com/</a></p>
]]></description><pubDate>Tue, 05 Nov 2024 01:50:12 +0000</pubDate><link>https://news.ycombinator.com/item?id=42047934</link><dc:creator>hazard</dc:creator><comments>https://news.ycombinator.com/item?id=42047934</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42047934</guid></item><item><title><![CDATA[New comment by hazard in "Ask HN: What have you built with LLMs?"]]></title><description><![CDATA[
<p>A Twitter filter to take back control of your social media feed from recommendation engines. Put in natural language instructions like "Only show tweets about machine learning, artificial intelligence, and large language models. Hide everything else" and it will filter out all the tweets that you tell it to.<p>Runs on a local LLM, because even using GPT3 costs would have added up quickly.<p>Currently requires CUDA and uses a 10.7B model but if anyone wants to try a smaller one and report results let me know on github and I can give some help.<p><a href="https://github.com/thomasj02/AiFilter">https://github.com/thomasj02/AiFilter</a></p>
]]></description><pubDate>Mon, 05 Feb 2024 19:30:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=39265829</link><dc:creator>hazard</dc:creator><comments>https://news.ycombinator.com/item?id=39265829</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39265829</guid></item><item><title><![CDATA[Show HN: AI-Powered Twitter Filter]]></title><description><![CDATA[
<p>While exploring new applications for local LLMs, I built a Chrome extension that filters your Twitter feed based on natural language instructions.<p>For instance, you can instruct it to "Hide all tweets, except for tweets about machine learning (ML), artificial intelligence (AI) and large language models (LLMs)."<p>I've tested it and got good results with a 10B parameter model, but I suspect a high-quality small model like Phi-2 might work almost as well.<p>It's open source and available at https://github.com/thomasj02/AiFilter<p>Video demo: https://www.youtube.com/watch?v=CligVVTC5io</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=39210964">https://news.ycombinator.com/item?id=39210964</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Wed, 31 Jan 2024 23:29:20 +0000</pubDate><link>https://news.ycombinator.com/item?id=39210964</link><dc:creator>hazard</dc:creator><comments>https://news.ycombinator.com/item?id=39210964</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39210964</guid></item><item><title><![CDATA[New comment by hazard in "Ask HN: Best way to learn GPU programming?"]]></title><description><![CDATA[
<p>The best course by NVidia looks like "Fundamentals of Accelerated Computing with CUDA C/C++" which I think used to be publicly available, but is now offered "By invitation only"</p>
]]></description><pubDate>Tue, 02 Jan 2024 01:33:21 +0000</pubDate><link>https://news.ycombinator.com/item?id=38837100</link><dc:creator>hazard</dc:creator><comments>https://news.ycombinator.com/item?id=38837100</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=38837100</guid></item><item><title><![CDATA[Ask HN: Best way to learn GPU programming?]]></title><description><![CDATA[
<p>I'd like to learn GPU programming but I'm having difficulty finding high-quality resources. I tried a class at coursera and was severely disappointed by both quality and content.<p>What are the best resources for learning things like GPU architecture, CUDA, Triton, etc?<p>My goal is to do be able to do something like take a description of Flash Attention and implement it from scratch, or optimize existing CUDA code.</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=38835813">https://news.ycombinator.com/item?id=38835813</a></p>
<p>Points: 55</p>
<p># Comments: 10</p>
]]></description><pubDate>Mon, 01 Jan 2024 22:13:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=38835813</link><dc:creator>hazard</dc:creator><comments>https://news.ycombinator.com/item?id=38835813</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=38835813</guid></item><item><title><![CDATA[Ask HN: Do you homeschool?]]></title><description><![CDATA[
<p>Our middle-schooler is currently at a private school that we loved when we enrolled him. However in recent years it's gotten steadily worse, primarily due to high leadership turnover and faculty/leadership conflict.<p>We're thinking about homeschooling him for the remainder of grade school and then re-enrolling him into the traditional school system once he reaches high school. We're concerned however that we may not have the patience or pedagogical experience to effectively teach him.<p>Does anyone else have experience trying to homeschool? Success / failure stories, or best practices?</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=38256620">https://news.ycombinator.com/item?id=38256620</a></p>
<p>Points: 59</p>
<p># Comments: 56</p>
]]></description><pubDate>Mon, 13 Nov 2023 23:10:24 +0000</pubDate><link>https://news.ycombinator.com/item?id=38256620</link><dc:creator>hazard</dc:creator><comments>https://news.ycombinator.com/item?id=38256620</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=38256620</guid></item><item><title><![CDATA[New comment by hazard in "GitHub Copilot loses an average of $20 per user per month"]]></title><description><![CDATA[
<p>> Do you really think it's fine blowing 400 watts because you can't be arsed to think or do not have the creative intelligence to get over the blank page syndrome and have to lean on a crutch?<p>Yes, I think it is absolutely 100% fine.</p>
]]></description><pubDate>Tue, 10 Oct 2023 19:21:37 +0000</pubDate><link>https://news.ycombinator.com/item?id=37836284</link><dc:creator>hazard</dc:creator><comments>https://news.ycombinator.com/item?id=37836284</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=37836284</guid></item><item><title><![CDATA[New comment by hazard in "Ask HN: Parents: Best screen-time limiting software?"]]></title><description><![CDATA[
<p>This seems pretty interesting, do you have links that provide more details on this? Is it all functionality that's available by default on pihole or did you use some mods/custom blocklists/etc?</p>
]]></description><pubDate>Sun, 11 Dec 2022 23:13:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=33948679</link><dc:creator>hazard</dc:creator><comments>https://news.ycombinator.com/item?id=33948679</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=33948679</guid></item><item><title><![CDATA[Ask HN: Parents: Best screen-time limiting software?]]></title><description><![CDATA[
<p>Recently I set my nine year old up with an old Linux desktop as his first real computer. Of course he is set up in the living room, no headphones, and with a kids Google account that I can fully monitor.<p>Right now a pain point is trying to set time limits on websites (like youtubekids or lego.com) because although I don't object to them per se, I also don't want him to spend hours browsing the lego website, watching videos, etc.<p>On iOS devices there are good tools that allow granular level time blocking of websites, apps, etc. Does anyone know of any tools that allow even basic password-protected time blocking on desktop browsers, or a cross-platform (iOS/Linux) time limiter?</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=33947286">https://news.ycombinator.com/item?id=33947286</a></p>
<p>Points: 27</p>
<p># Comments: 24</p>
]]></description><pubDate>Sun, 11 Dec 2022 20:44:17 +0000</pubDate><link>https://news.ycombinator.com/item?id=33947286</link><dc:creator>hazard</dc:creator><comments>https://news.ycombinator.com/item?id=33947286</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=33947286</guid></item></channel></rss>