The 12 Days of Devlog Christmas Devlog video about "Homegrown", a casual farming game I'm creating using my own engine. An extra long devlog video this week as I filmed every day for the first 12 days of December. Support the channel on Patreon and get access to the game & code for Ho...
This open problem taught me what topology is A beautiful solution to the inscribed rectangle problem. Playlist with more neat proofs: https://www.youtube.com/playlist?list=PLZHQObOWTQDPSKntUcMArGheySM4gL7wS Instead of sponsored ad reads, these lessons are funded directly by viewers: https://3b1b.co/...
ChatGPT vs. Advent of Code 2024 Day 25: Code Chronicle ChatGPT finishes Advent of Code 2024 in style! #openai #chatgpt #python #ai #codeinterpreter #adventofcode Contents: 0:00 - Intro 0:10 - Problem solving 1:00 - Summary
GitHub - Jaennaet/pISSStream: macOS menu bar app that shows how full the International Space Station's urine tank is in real time macOS menu bar app that shows how full the International Space Station's urine tank is in real time - Jaennaet/pISSStream
Jujutsu Megamerges and jj absorb — Sympolymathesy, by Chris Krycho A really handy approach for splitting apart changes into multiple branches but working on their combination.
Talking To Your Mailserver Is Not as Hard as You Think! Learning how the IMAP protocol actually works
RAG + Semantic Markup Build documentation-powered features using retrieval-augmented generation and semantic markup
Ways to use torch.export : ezyang’s blog Previously, I discussed the value proposition of torch.compile. While doing so, I observed a number of downsides (long compile time, complicated operational model, lack of packaging) that were intrinsic to torch.compile's API contract, which emphasized b...
Symbolic Execution by Overloading __bool__ A few months ago I saw a talk on buildit, https://buildit.so/ a really neat project that achieves staged metaprogramming as a C++ library. I love the central tenets of being in a mainstream language and not requiring a modified compiler. Right on, brother...
a society-level forever clinical trial – Kyunghyun Cho when i got tenure earlier, i thought that would change how i work and live. it was true, but it wasn’t because of tenure but because of my thyroid cancer (see https://kyunghyuncho.me/sharing-some-good-news-and-some-bad-news/ if you’re curious.) when i was...
Finetuning CLIP to Predict Art Styles in Image Generation Websites This past week, I came across the dataset curated by the Polo Club of Data Science at Georgia Tech. They scraped over 14 million image-prompt pairs collecte...
Charity Calculator Introduction With holiday season in full swing, people may be more enticed to give to charity. However, there is a question of how to optimize your charitable donations. Specifically, I would like to optimize charitable donations for maximum impact. It se...
Trying out QvQ—Qwen’s new visual reasoning model I thought we were done for major model releases in 2024, but apparently not: Alibaba’s Qwen team just dropped the Apache 2.0 licensed QvQ-72B-Preview, “an experimental research model focusing on …
Idempotent database inserts: Getting it right Idempotence is the basis of resilient distributed systems. This blog post explores a common solution for idempotent database inserts and its flaws and proposes an improved version.