<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: chriskw</title><link>https://news.ycombinator.com/user?id=chriskw</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sat, 29 Aug 2026 08:57:38 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=chriskw" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by chriskw in "Experiments with Plotter Art"]]></title><description><![CDATA[
<p>In my experience plotter art is a fantastic creative outlet for programmers/people with math backgrounds, especially if your day job doesn't produce anything physical in the real world. Shameless self-plug but I recently animated some old plotter pieces which was surprisingly easy since most of my plots were just piles of math that could be parameterized over time without too much hassle: <a href="https://chriskw.xyz/art/" rel="nofollow">https://chriskw.xyz/art/</a><p>Also big shout out to Michael Fogleman who's pieces inspired me to impulse buy an Axidraw at the beginning of quarantine: <a href="https://www.michaelfogleman.com/plotter/" rel="nofollow">https://www.michaelfogleman.com/plotter/</a></p>
]]></description><pubDate>Sat, 29 Aug 2026 04:12:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=49486810</link><dc:creator>chriskw</dc:creator><comments>https://news.ycombinator.com/item?id=49486810</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49486810</guid></item><item><title><![CDATA[Incomplete Open Dodecahedra]]></title><description><![CDATA[
<p>Article URL: <a href="https://chriskw.xyz/2026/07/07/Dodecahedra/">https://chriskw.xyz/2026/07/07/Dodecahedra/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=48819029">https://news.ycombinator.com/item?id=48819029</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Tue, 07 Jul 2026 15:17:39 +0000</pubDate><link>https://chriskw.xyz/2026/07/07/Dodecahedra/</link><dc:creator>chriskw</dc:creator><comments>https://news.ycombinator.com/item?id=48819029</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48819029</guid></item><item><title><![CDATA[Platonic Hydrocarbons]]></title><description><![CDATA[
<p>Article URL: <a href="https://en.wikipedia.org/wiki/Platonic_hydrocarbon">https://en.wikipedia.org/wiki/Platonic_hydrocarbon</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=48765394">https://news.ycombinator.com/item?id=48765394</a></p>
<p>Points: 16</p>
<p># Comments: 0</p>
]]></description><pubDate>Thu, 02 Jul 2026 18:18:31 +0000</pubDate><link>https://en.wikipedia.org/wiki/Platonic_hydrocarbon</link><dc:creator>chriskw</dc:creator><comments>https://news.ycombinator.com/item?id=48765394</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48765394</guid></item><item><title><![CDATA[New comment by chriskw in "Correlated randomness in Slay the Spire 2"]]></title><description><![CDATA[
<p>Breaking old seeds is probably not too big a deal since the game is currently in early access, and the biweekly patches mean that seeds are already pretty inconsistent. For example, adding new cards/relics/combats to the pool throws off the generation for all cards/relics/combats anyway</p>
]]></description><pubDate>Tue, 16 Jun 2026 21:58:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=48562732</link><dc:creator>chriskw</dc:creator><comments>https://news.ycombinator.com/item?id=48562732</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48562732</guid></item><item><title><![CDATA[New comment by chriskw in "Correlated randomness in Slay the Spire 2"]]></title><description><![CDATA[
<p>Random thing I ran into while trying to seed search for a challenge run, but since the seed is passed through a 32-bit hash function it means there's effectively only 4 billion seeds (as opposed to the first game, which had 64 bit seeds). This is great if you wanna do something like prove/disprove whether there are unwinnable seeds since its trivial to brute force all of them, but it does mean the potential for fun "high roll" seeded runs is much lower, which is a shame since the new game has so much more variance than the original.<p>This was the challenge run I ended up with (Ascension 10 win without taking any cards) <a href="https://youtu.be/PbP284CZrZ4?is=iL1E7gIzj_kgx0MS" rel="nofollow">https://youtu.be/PbP284CZrZ4?is=iL1E7gIzj_kgx0MS</a></p>
]]></description><pubDate>Tue, 16 Jun 2026 21:55:20 +0000</pubDate><link>https://news.ycombinator.com/item?id=48562696</link><dc:creator>chriskw</dc:creator><comments>https://news.ycombinator.com/item?id=48562696</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48562696</guid></item><item><title><![CDATA[New comment by chriskw in "I Spent Three Nights Solving Listen Labs Berghain Challenge (and Got #16)"]]></title><description><![CDATA[
<p>The trick for Scenarios 2 and 3 is that most of the constraints don't end up being bottlenecks. For example in Scenario 2, well-connected pretty much always gets satisfied while doing the other constraints, so the DP table only needs 4 dimensions (space, Berlin local, techno lover, creative).<p>My other trick was to only build the full DP table for the latter half of the game (i.e. when all the constraints are at least 50% satisfied) which across 4 dimensions reduces the size by a factor of 16. For the beginning half of the game I combined Berlin and techno into a single parameter, which technically isn't perfect but doesn’t matter too much in the early game. I wrote up my approach here if you want more details: <a href="https://chriskw.xyz/2025/09/16/Berghain/" rel="nofollow">https://chriskw.xyz/2025/09/16/Berghain/</a><p>Re: optimizing for best case vs expected case, I thought about that but in simulations my strategy mostly performed the same as a "perfect knowledge" strategy where you could see all of the people in line ahead of time and retroactively accept people. When it under performed it was usually because some miraculous string of people showed up near the end, but betting on that happening seemed like it would do more harm than good, i.e. it would throw away more best case scenarios than it would salvage.</p>
]]></description><pubDate>Wed, 24 Sep 2025 20:20:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=45365495</link><dc:creator>chriskw</dc:creator><comments>https://news.ycombinator.com/item?id=45365495</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45365495</guid></item><item><title><![CDATA[New comment by chriskw in "I Spent Three Nights Solving Listen Labs Berghain Challenge (and Got #16)"]]></title><description><![CDATA[
<p>The tricky thing is the code for making decisions runs locally on the contestants machine, so the first time they submit they can record the sequence locally and compute the best set of actions for the next time they submit. Even if the sequence is somehow tied to a user's account so they can't resubmit against the same sequence, they could do the same thing with an alt account and feed the sequence to a main account.<p>Sites like Kaggle usually get around this problem by running contestant code in a containerized environment server side, but even then you can get clever with tricks to leak info.</p>
]]></description><pubDate>Wed, 24 Sep 2025 17:38:04 +0000</pubDate><link>https://news.ycombinator.com/item?id=45363535</link><dc:creator>chriskw</dc:creator><comments>https://news.ycombinator.com/item?id=45363535</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45363535</guid></item><item><title><![CDATA[Spatial Sequence Synesthesia]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.thesynesthesiatree.com/2021/03/spatial-sequence-synesthesia.html">https://www.thesynesthesiatree.com/2021/03/spatial-sequence-synesthesia.html</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=45350988">https://news.ycombinator.com/item?id=45350988</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Tue, 23 Sep 2025 18:31:10 +0000</pubDate><link>https://www.thesynesthesiatree.com/2021/03/spatial-sequence-synesthesia.html</link><dc:creator>chriskw</dc:creator><comments>https://news.ycombinator.com/item?id=45350988</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45350988</guid></item><item><title><![CDATA[New comment by chriskw in "I Spent Three Nights Solving Listen Labs Berghain Challenge (and Got #16)"]]></title><description><![CDATA[
<p>Nice to see another participant's thinking process for the puzzles! I ended up getting 5th place using dynamic programming for all of the scenarios, but I'm under the impression that almost everybody in the top 20 had almost equally good strategies and most of the variance in scores was due to luck with the sequence of people they got.<p>A quick sanity check is in Scenario 2, you needed 300 creative people each with a ~6.2% chance of showing up. The odds of getting a sequence of people where that's even possible for the first place score (2906 rejections + 1000 accepts = 3906 total people) is on the order of 1 in 10000, and that's without even factoring in the other constraints.</p>
]]></description><pubDate>Tue, 23 Sep 2025 08:19:24 +0000</pubDate><link>https://news.ycombinator.com/item?id=45344264</link><dc:creator>chriskw</dc:creator><comments>https://news.ycombinator.com/item?id=45344264</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45344264</guid></item><item><title><![CDATA[Pokémon or Startup?]]></title><description><![CDATA[
<p>Article URL: <a href="https://chriskw.xyz/2025/09/02/Startup-Or-Pokemon/">https://chriskw.xyz/2025/09/02/Startup-Or-Pokemon/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=45139899">https://news.ycombinator.com/item?id=45139899</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Fri, 05 Sep 2025 15:45:50 +0000</pubDate><link>https://chriskw.xyz/2025/09/02/Startup-Or-Pokemon/</link><dc:creator>chriskw</dc:creator><comments>https://news.ycombinator.com/item?id=45139899</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45139899</guid></item><item><title><![CDATA[New comment by chriskw in "Playing every game of Wordle simultaneously"]]></title><description><![CDATA[
<p>You can check the diff on the file wordlist_hidden here: <a href="https://github.com/alex1770/wordle/commit/85c4a7e6" rel="nofollow">https://github.com/alex1770/wordle/commit/85c4a7e6</a></p>
]]></description><pubDate>Mon, 25 Aug 2025 22:52:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=45020129</link><dc:creator>chriskw</dc:creator><comments>https://news.ycombinator.com/item?id=45020129</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45020129</guid></item><item><title><![CDATA[New comment by chriskw in "Playing every game of Wordle simultaneously"]]></title><description><![CDATA[
<p>I could see it being handy to estimate probability where each word is to better inform each guess. The tricky thing is I'm not sure if each run of wave function collapse (with randomness injected) would be an accurate sampling method for the real distribution of possible permutations. While doing this writeup I tried to find ways to analyze permutations with restriction, but it turns out most general methods are pretty intractable: <a href="https://en.wikipedia.org/wiki/Permanent_(mathematics)#Enumeration" rel="nofollow">https://en.wikipedia.org/wiki/Permanent_(mathematics)#Enumer...</a></p>
]]></description><pubDate>Mon, 25 Aug 2025 20:02:21 +0000</pubDate><link>https://news.ycombinator.com/item?id=45018313</link><dc:creator>chriskw</dc:creator><comments>https://news.ycombinator.com/item?id=45018313</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45018313</guid></item><item><title><![CDATA[New comment by chriskw in "Playing every game of Wordle simultaneously"]]></title><description><![CDATA[
<p>Good catch! I didn't know about this, I'll update the footnote. Anecdotally everyone I know was very surprised by KEFIR the other day.</p>
]]></description><pubDate>Mon, 25 Aug 2025 19:42:11 +0000</pubDate><link>https://news.ycombinator.com/item?id=45018085</link><dc:creator>chriskw</dc:creator><comments>https://news.ycombinator.com/item?id=45018085</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45018085</guid></item><item><title><![CDATA[Playing every game of Wordle simultaneously]]></title><description><![CDATA[
<p>Article URL: <a href="https://chriskw.xyz/2025/08/24/Hyper-Wordle/">https://chriskw.xyz/2025/08/24/Hyper-Wordle/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=45005016">https://news.ycombinator.com/item?id=45005016</a></p>
<p>Points: 65</p>
<p># Comments: 28</p>
]]></description><pubDate>Sun, 24 Aug 2025 15:34:26 +0000</pubDate><link>https://chriskw.xyz/2025/08/24/Hyper-Wordle/</link><dc:creator>chriskw</dc:creator><comments>https://news.ycombinator.com/item?id=45005016</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45005016</guid></item><item><title><![CDATA[New comment by chriskw in "Sixteen bottles of wine riddle"]]></title><description><![CDATA[
<p>Yeah, I really like the sorting formulation! I didn't notice until after I'd written out the intended solution, but it's basically radix sort going from most significant to least significant bit.</p>
]]></description><pubDate>Thu, 21 Aug 2025 16:02:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=44974404</link><dc:creator>chriskw</dc:creator><comments>https://news.ycombinator.com/item?id=44974404</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44974404</guid></item><item><title><![CDATA[New comment by chriskw in "Sixteen bottles of wine riddle"]]></title><description><![CDATA[
<p>Before publishing I found this while trying to see if there was a already a riddle like it out there (closest I could find was the 1000 barrels of wine riddle mentioned at the beginning): <a href="https://puzzles.nigelcoldwell.co.uk/" rel="nofollow">https://puzzles.nigelcoldwell.co.uk/</a><p>You can also think of this riddle as a very symmetric version of Wordle, where instead of trying to solve for a permutation of letters you're solving for a permutation of years.</p>
]]></description><pubDate>Thu, 21 Aug 2025 15:51:37 +0000</pubDate><link>https://news.ycombinator.com/item?id=44974291</link><dc:creator>chriskw</dc:creator><comments>https://news.ycombinator.com/item?id=44974291</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44974291</guid></item><item><title><![CDATA[New comment by chriskw in "Sixteen bottles of wine riddle"]]></title><description><![CDATA[
<p>I originally set it up like that, but felt having to explain that you need to subtract 2000 before doing the binary conversion was unnecessary and kind of distracting</p>
]]></description><pubDate>Thu, 21 Aug 2025 15:44:45 +0000</pubDate><link>https://news.ycombinator.com/item?id=44974211</link><dc:creator>chriskw</dc:creator><comments>https://news.ycombinator.com/item?id=44974211</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44974211</guid></item><item><title><![CDATA[Sixteen bottles of wine riddle]]></title><description><![CDATA[
<p>Article URL: <a href="https://chriskw.xyz/2025/08/11/Wine/">https://chriskw.xyz/2025/08/11/Wine/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=44933019">https://news.ycombinator.com/item?id=44933019</a></p>
<p>Points: 70</p>
<p># Comments: 32</p>
]]></description><pubDate>Sun, 17 Aug 2025 16:57:50 +0000</pubDate><link>https://chriskw.xyz/2025/08/11/Wine/</link><dc:creator>chriskw</dc:creator><comments>https://news.ycombinator.com/item?id=44933019</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44933019</guid></item><item><title><![CDATA[New comment by chriskw in "That fractal that's been up on my wall for years"]]></title><description><![CDATA[
<p>Good catch, corrected the formula!</p>
]]></description><pubDate>Mon, 02 Jun 2025 03:48:52 +0000</pubDate><link>https://news.ycombinator.com/item?id=44155695</link><dc:creator>chriskw</dc:creator><comments>https://news.ycombinator.com/item?id=44155695</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44155695</guid></item><item><title><![CDATA[New comment by chriskw in "That fractal that's been up on my wall for years"]]></title><description><![CDATA[
<p>That's really cool! I tried to get something to work last week on pen and paper but couldn't get anything to stick. Is there a strategy you used or did you just go by feel?<p>Edit: just noticed how you encoded a flip (AB <--> CD) between iterations like how the matrix flips the orientation of space. Super neat!</p>
]]></description><pubDate>Fri, 23 May 2025 16:19:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=44074169</link><dc:creator>chriskw</dc:creator><comments>https://news.ycombinator.com/item?id=44074169</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44074169</guid></item></channel></rss>