<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: kenerwin88</title><link>https://news.ycombinator.com/user?id=kenerwin88</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Mon, 17 Aug 2026 23:57:52 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=kenerwin88" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by kenerwin88 in "Auto-research with codex: How I achieved a 232x Faster Kernel"]]></title><description><![CDATA[
<p>Oh wow, this is almost exactly what I’ve been doing with Zelda LTTP.  I have it in rust now, but just finished the “first pass” you reference.  Mine is still not really readable, second step is the modernizing the actual code.  I’ve really struggled with needing to handhold it though, I’ll see if I can plagiarize from you!</p>
]]></description><pubDate>Sat, 15 Aug 2026 15:51:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=49311586</link><dc:creator>kenerwin88</dc:creator><comments>https://news.ycombinator.com/item?id=49311586</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49311586</guid></item><item><title><![CDATA[New comment by kenerwin88 in "A level up on voice interaction with agents – and local"]]></title><description><![CDATA[
<p>0 cloud inference is the part that sticks out for me.  I’d love to not be shipping my voice off to someone (not that anyone is going to want to clone it lol).  I’ll try it out and let you know my thoughts.</p>
]]></description><pubDate>Tue, 21 Jul 2026 13:23:11 +0000</pubDate><link>https://news.ycombinator.com/item?id=48992000</link><dc:creator>kenerwin88</dc:creator><comments>https://news.ycombinator.com/item?id=48992000</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48992000</guid></item><item><title><![CDATA[New comment by kenerwin88 in "Show HN: A canvas-based note taking and organizer app"]]></title><description><![CDATA[
<p>really well done!!</p>
]]></description><pubDate>Mon, 20 Jul 2026 00:35:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=48973095</link><dc:creator>kenerwin88</dc:creator><comments>https://news.ycombinator.com/item?id=48973095</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48973095</guid></item><item><title><![CDATA[New comment by kenerwin88 in "A Dumb Introduction to Z3 (2025)"]]></title><description><![CDATA[
<p>This is such weird timing, for the last few weeks I’ve been messing around with Z3 and other solvers for the first time and they’re so cool.  In many ways more magical than LLMs to me in some ways.  Great intro!</p>
]]></description><pubDate>Sat, 18 Apr 2026 23:59:12 +0000</pubDate><link>https://news.ycombinator.com/item?id=47820608</link><dc:creator>kenerwin88</dc:creator><comments>https://news.ycombinator.com/item?id=47820608</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47820608</guid></item><item><title><![CDATA[New comment by kenerwin88 in "Show HN: LogicPearl – Synthesizing deterministic executable logic from traces"]]></title><description><![CDATA[
<p>thank you very much!! :). Let me know if you run into any issues if you test it out on anything!</p>
]]></description><pubDate>Tue, 14 Apr 2026 13:27:42 +0000</pubDate><link>https://news.ycombinator.com/item?id=47765388</link><dc:creator>kenerwin88</dc:creator><comments>https://news.ycombinator.com/item?id=47765388</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47765388</guid></item><item><title><![CDATA[New comment by kenerwin88 in "Show HN: LogicPearl – Synthesizing deterministic executable logic from traces"]]></title><description><![CDATA[
<p>TLDR: If you take the inputs and outputs of a system, pass them to LogicPearl, it will figure out the logic & rules automatically, giving you a deterministic, more easily human readable, replacement executable artifact.  You can use it to distill the behavior of legacy codebases, or replace probabilistic LLM prompts with a 0-token, very fast portable WASM artifact (or native binary, or if someone wants a diff format tell me, but it’s still going to be a bitmask underneath).<p>It works really well for systems where the inputs are known, the possible outcomes are known, and given an input, you want to always get the same result AND know why.  Which isn’t every system, but I think it’s a lot more than I even realize.<p>Oddly it doesn’t depend on AI, which is an odd thing to build at the moment.  However, aside from existing systems, it also seems to work really well when you couple it with an LLM to generate synthetic traces (or ingesting data that you’d normally store in a RAG).  From those, you distill the logic into something deterministic, repeatable, and improvable.  And the nicest part is once you have the logic saved, you can reuse it without ever needing to call the LLM again.  The behavior itself is stored in very human readable rules, so if you want to change it, the diff is very easy to understand.<p>It’s kind of hard to explain without an example.  The best one I have is a real life use case.  One of my friends/mentors unfortunately was recently diagnosed with a Glioblastoma, and over the last month or so I’ve learned that cancer is so unique per person in a ton of different ways.  He had his removed, the genome of it mapped, and I asked him if I could try to help find medical trials for him.  It turns out EVERY clinical trial is available via API (which is amazing!!), so I downloaded them (579,831, counting completed trials not just open, and 67,918 research papers).  The next step normally I’d grep, filter, write a bunch of code etc.  Instead, I used 25 features (the unique inputs, in this case that’s the genomics, demographics, HLA type, methylation type, medications, history, etc.), and ran it through logicpearl so it could generate the optimal rules for the best outcome for his specific variables.  Because of the counterfactuals, for studies that looked ALMOST perfect but didn’t match, we could see exactly why (it turns out there are a ton of ways to be disqualified for a study).  But it gave him several that DO look like perfect fits, one of which he only had one more week left that he could apply (because it had a cutoff for X days from surgery date).  He told his doctors, none of them had known about it (they had found several other clinical trials), but they agreed it was probably the best one for him to try to get into.  Sorry for the long novel, but the part that was unique, was that yes I had to write the logic to pull all the data down, parse a PDF he had with the genome data, but finding the optimal rules to map to the best trial I didn’t have to do anything other than get the data.<p>Ok, how it works:<p>Input data (CSV or JSON) -> ingested as decision traces -> infer feature schema -> generates simple candidate predicates -> scores candidates against observed decisions -> selects a compact rule set using greedy and/or solver-backed search (z3 so far has worked best) -> emit an intermediate representation -> evaluates that artifact deterministically at runtime -> returns stable JSON with matched rules and explanation metadata -> supports semantic diffs between artifact versions.  The rules are stored as a bitmask and evaluated simultaneously (which is why it’s often faster than whatever the original system is), and the best part is it tells us exactly what did or didn’t flip.  Meaning we get counterfactuals, so you don’t just get the answer but the why (this part is what makes it really helpful).<p>Thank you for reading!!  Everything is open source (MIT), I’d love to get any feedback!</p>
]]></description><pubDate>Tue, 14 Apr 2026 11:58:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=47764458</link><dc:creator>kenerwin88</dc:creator><comments>https://news.ycombinator.com/item?id=47764458</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47764458</guid></item><item><title><![CDATA[Show HN: LogicPearl – Synthesizing deterministic executable logic from traces]]></title><description><![CDATA[
<p>Article URL: <a href="https://github.com/LogicPearlHQ/logicpearl">https://github.com/LogicPearlHQ/logicpearl</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47764455">https://news.ycombinator.com/item?id=47764455</a></p>
<p>Points: 4</p>
<p># Comments: 4</p>
]]></description><pubDate>Tue, 14 Apr 2026 11:58:34 +0000</pubDate><link>https://github.com/LogicPearlHQ/logicpearl</link><dc:creator>kenerwin88</dc:creator><comments>https://news.ycombinator.com/item?id=47764455</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47764455</guid></item><item><title><![CDATA[New comment by kenerwin88 in "Retrobot: A Discord bot that plays emulated games with friends over chat"]]></title><description><![CDATA[
<p>Super cool, ty for sharing!  Will definitely be trying this asap.</p>
]]></description><pubDate>Sat, 17 Sep 2022 03:40:23 +0000</pubDate><link>https://news.ycombinator.com/item?id=32874555</link><dc:creator>kenerwin88</dc:creator><comments>https://news.ycombinator.com/item?id=32874555</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=32874555</guid></item><item><title><![CDATA[New comment by kenerwin88 in "Show HN: Vibes.art Generative Art on Ethereum"]]></title><description><![CDATA[
<p>Hi!  Love it, really neat work.  Thanks for sharing!!</p>
]]></description><pubDate>Sat, 09 Oct 2021 23:59:39 +0000</pubDate><link>https://news.ycombinator.com/item?id=28814459</link><dc:creator>kenerwin88</dc:creator><comments>https://news.ycombinator.com/item?id=28814459</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=28814459</guid></item><item><title><![CDATA[New comment by kenerwin88 in "Terraform vs. AWS CloudFormation"]]></title><description><![CDATA[
<p>As a former AWS employee, Terraform is MUCH better at scale for AWS resources than Cloudformation or even AWS CDK.  CDKs reliance on CloudFormation underneath means being limited to the exact same problems that are mentioned in the article, as well as managing resources at enormous scale incredibly painful.</p>
]]></description><pubDate>Wed, 06 Oct 2021 23:48:44 +0000</pubDate><link>https://news.ycombinator.com/item?id=28779939</link><dc:creator>kenerwin88</dc:creator><comments>https://news.ycombinator.com/item?id=28779939</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=28779939</guid></item><item><title><![CDATA[New comment by kenerwin88 in "Terraform is not the golden hammer"]]></title><description><![CDATA[
<p>Hmm, as a former AWS employee who has used both heavily, my experience has been the opposite.<p>Terraform’s AWS provider calls the APIs directly, whereas CDK generates Cloudformation, an abstraction on top of the AWS APIs.  For me, using Terraform was significantly faster than applying the same stack via CDK.<p>Or do you mean you’re able to iterate faster writing CDK vs TF?</p>
]]></description><pubDate>Sun, 19 Sep 2021 12:34:56 +0000</pubDate><link>https://news.ycombinator.com/item?id=28583818</link><dc:creator>kenerwin88</dc:creator><comments>https://news.ycombinator.com/item?id=28583818</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=28583818</guid></item><item><title><![CDATA[New comment by kenerwin88 in "Shitlist Driven Development (2016)"]]></title><description><![CDATA[
<p>Such a great idea, thank you for sharing!</p>
]]></description><pubDate>Tue, 15 Dec 2020 13:26:19 +0000</pubDate><link>https://news.ycombinator.com/item?id=25430060</link><dc:creator>kenerwin88</dc:creator><comments>https://news.ycombinator.com/item?id=25430060</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=25430060</guid></item><item><title><![CDATA[New comment by kenerwin88 in "Ask HN: Trying to find emulator that loads PNGs"]]></title><description><![CDATA[
<p>YES! It was this <a href="https://www.lexaloffle.com/bbs/?sub=2&cat=7" rel="nofollow">https://www.lexaloffle.com/bbs/?sub=2&cat=7</a> - Thank you so much, how on earth did you find it so fast.  Much appreciated!!</p>
]]></description><pubDate>Tue, 13 Oct 2020 14:35:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=24765936</link><dc:creator>kenerwin88</dc:creator><comments>https://news.ycombinator.com/item?id=24765936</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=24765936</guid></item><item><title><![CDATA[Ask HN: Trying to find emulator that loads PNGs]]></title><description><![CDATA[
<p>Hi,<p>I remember someone had posted on here awhile ago about an intentionally limited emulator that loads games that are entirely stored within their own cover art.  I have Google'd everywhere and can't seem to find it.  Kind of like the js1kb competition, but the important thing was that the WHOLE game had to be within it's own PNG file.  Thank you!</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=24765818">https://news.ycombinator.com/item?id=24765818</a></p>
<p>Points: 3</p>
<p># Comments: 4</p>
]]></description><pubDate>Tue, 13 Oct 2020 14:25:17 +0000</pubDate><link>https://news.ycombinator.com/item?id=24765818</link><dc:creator>kenerwin88</dc:creator><comments>https://news.ycombinator.com/item?id=24765818</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=24765818</guid></item><item><title><![CDATA[Jenkins Templates Tutorial]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.devopslibrary.com/lessons/jenkins-templates">https://www.devopslibrary.com/lessons/jenkins-templates</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=14179666">https://news.ycombinator.com/item?id=14179666</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 23 Apr 2017 18:42:58 +0000</pubDate><link>https://www.devopslibrary.com/lessons/jenkins-templates</link><dc:creator>kenerwin88</dc:creator><comments>https://news.ycombinator.com/item?id=14179666</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=14179666</guid></item><item><title><![CDATA[DevOps Library Newsletter: Issue 10]]></title><description><![CDATA[
<p>Article URL: <a href="http://us12.campaign-archive1.com/?u=b9d4b3cf6023fb8a6f8e40447&id=e14c92d201">http://us12.campaign-archive1.com/?u=b9d4b3cf6023fb8a6f8e40447&id=e14c92d201</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=12688036">https://news.ycombinator.com/item?id=12688036</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Tue, 11 Oct 2016 20:01:26 +0000</pubDate><link>http://us12.campaign-archive1.com/?u=b9d4b3cf6023fb8a6f8e40447&amp;id=e14c92d201</link><dc:creator>kenerwin88</dc:creator><comments>https://news.ycombinator.com/item?id=12688036</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=12688036</guid></item><item><title><![CDATA[Jenkins Security Tutorial – Episode #15]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.devopslibrary.com/lessons/jenkins-security">https://www.devopslibrary.com/lessons/jenkins-security</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=12678397">https://news.ycombinator.com/item?id=12678397</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Mon, 10 Oct 2016 17:09:52 +0000</pubDate><link>https://www.devopslibrary.com/lessons/jenkins-security</link><dc:creator>kenerwin88</dc:creator><comments>https://news.ycombinator.com/item?id=12678397</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=12678397</guid></item><item><title><![CDATA[Jenkins Analytics Tutorial – DevOps Library CCJPE #14]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.devopslibrary.com/lessons/jenkins-analytics">https://www.devopslibrary.com/lessons/jenkins-analytics</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=12539670">https://news.ycombinator.com/item?id=12539670</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Tue, 20 Sep 2016 14:18:28 +0000</pubDate><link>https://www.devopslibrary.com/lessons/jenkins-analytics</link><dc:creator>kenerwin88</dc:creator><comments>https://news.ycombinator.com/item?id=12539670</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=12539670</guid></item><item><title><![CDATA[Jenkins Operations Center Tutorial (CJOC) – DevOps Library CCJPE #13]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.devopslibrary.com/lessons/jenkins-cjoc">https://www.devopslibrary.com/lessons/jenkins-cjoc</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=12436802">https://news.ycombinator.com/item?id=12436802</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Tue, 06 Sep 2016 15:41:54 +0000</pubDate><link>https://www.devopslibrary.com/lessons/jenkins-cjoc</link><dc:creator>kenerwin88</dc:creator><comments>https://news.ycombinator.com/item?id=12436802</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=12436802</guid></item><item><title><![CDATA[Jenkins High Availability Tutorial and Overview – DevOps Library CCJPE #12]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.devopslibrary.com/lessons/jenkins-ha">https://www.devopslibrary.com/lessons/jenkins-ha</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=12352021">https://news.ycombinator.com/item?id=12352021</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Wed, 24 Aug 2016 13:57:19 +0000</pubDate><link>https://www.devopslibrary.com/lessons/jenkins-ha</link><dc:creator>kenerwin88</dc:creator><comments>https://news.ycombinator.com/item?id=12352021</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=12352021</guid></item></channel></rss>