<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: jensb1</title><link>https://news.ycombinator.com/user?id=jensb1</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Thu, 17 Sep 2026 16:28:47 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=jensb1" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by jensb1 in "GLM Built Its Own Inference Infrastructure"]]></title><description><![CDATA[
<p>What is "illegal" about it?</p>
]]></description><pubDate>Thu, 17 Sep 2026 10:20:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=49738680</link><dc:creator>jensb1</dc:creator><comments>https://news.ycombinator.com/item?id=49738680</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49738680</guid></item><item><title><![CDATA[New comment by jensb1 in "Ask HN: Is it just me or is Claude Code getting worse?"]]></title><description><![CDATA[
<p>Not more stupid IMO, but significnatly less token efficient or they have decreased tokens for subscription users, difficult to know.</p>
]]></description><pubDate>Fri, 01 May 2026 10:50:37 +0000</pubDate><link>https://news.ycombinator.com/item?id=47973241</link><dc:creator>jensb1</dc:creator><comments>https://news.ycombinator.com/item?id=47973241</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47973241</guid></item><item><title><![CDATA[Claude Code driver using PTY (proof of concept)]]></title><description><![CDATA[
<p>Article URL: <a href="https://github.com/jensb1/jensagent">https://github.com/jensb1/jensagent</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47297416">https://news.ycombinator.com/item?id=47297416</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 08 Mar 2026 14:05:26 +0000</pubDate><link>https://github.com/jensb1/jensagent</link><dc:creator>jensb1</dc:creator><comments>https://news.ycombinator.com/item?id=47297416</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47297416</guid></item><item><title><![CDATA[New comment by jensb1 in "Toy Lisp compiler using LLVM done with AI in 8hrs"]]></title><description><![CDATA[
<p>Hi, always wanted to create a toy lisp compiler in LLVM for some reason, but never had the time to  get it working.<p>Took a new stab at it with Claude 3.7. Got a working version up in less than 8hrs in total with passing tests! Never wrote a single line of code. I would estimate the number of cursor iterations to about 500.<p>Process was: 
1. Ask Claude to create a boiler plate JIT in LLVM (see below shared chat)
2. Asked Claude on the architecture and what classes should be created (did this in cursor):
 - lexer
 - parser
 - AST
 - Code gen
3. Implemented each part separately, lexer, parser and AST took 1hr, codegen took ~7hrs.<p>It can define variables, functions and do some basic stuff:
try: (defn factorial [n] (if (= n 0) 1 (* n (factorial (- n 1))))) (factorial 5)<p>Hope you like it!<p>Here are some chats if you are interested in the first part of the coding (the rest was done in cursor):<p>LLVM
- <a href="https://claude.ai/share/3c5a1f92-389f-4274-8348-dcceaee8f140" rel="nofollow">https://claude.ai/share/3c5a1f92-389f-4274-8348-dcceaee8f140</a><p>Lexer
- <a href="https://claude.ai/share/fa32b8bd-0b8e-4faa-bc09-fc3dd9bb5ad3" rel="nofollow">https://claude.ai/share/fa32b8bd-0b8e-4faa-bc09-fc3dd9bb5ad3</a></p>
]]></description><pubDate>Mon, 17 Mar 2025 17:02:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=43390522</link><dc:creator>jensb1</dc:creator><comments>https://news.ycombinator.com/item?id=43390522</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43390522</guid></item><item><title><![CDATA[Toy Lisp compiler using LLVM done with AI in 8hrs]]></title><description><![CDATA[
<p>Article URL: <a href="https://github.com/jensb1/lisp_llvm">https://github.com/jensb1/lisp_llvm</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=43390521">https://news.ycombinator.com/item?id=43390521</a></p>
<p>Points: 1</p>
<p># Comments: 1</p>
]]></description><pubDate>Mon, 17 Mar 2025 17:02:09 +0000</pubDate><link>https://github.com/jensb1/lisp_llvm</link><dc:creator>jensb1</dc:creator><comments>https://news.ycombinator.com/item?id=43390521</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43390521</guid></item><item><title><![CDATA[New comment by jensb1 in "Exllamav2: Inference library for running LLMs locally on consumer-class GPUs"]]></title><description><![CDATA[
<p>typo</p>
]]></description><pubDate>Wed, 13 Sep 2023 09:43:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=37494477</link><dc:creator>jensb1</dc:creator><comments>https://news.ycombinator.com/item?id=37494477</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=37494477</guid></item><item><title><![CDATA[New comment by jensb1 in "Exllamav2: Inference library for running LLMs locally on consumer-class GPUs"]]></title><description><![CDATA[
<p>Could someone explain how token generation speed relates to latency for the first token to be outputted?<p>And if anyone have any metrics on latency on a 4090 for the 70B model, that would be very helpful.</p>
]]></description><pubDate>Wed, 13 Sep 2023 09:09:44 +0000</pubDate><link>https://news.ycombinator.com/item?id=37494184</link><dc:creator>jensb1</dc:creator><comments>https://news.ycombinator.com/item?id=37494184</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=37494184</guid></item></channel></rss>