<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: granra</title><link>https://news.ycombinator.com/user?id=granra</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Fri, 11 Sep 2026 03:18:31 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=granra" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by granra in "Neverclick: Desktop application for performing mouse actions with your keyboard"]]></title><description><![CDATA[
<p>This looks cool! How is the planned Linux support (the website says "Coming soon for Linux") suppose to work? X11 only? Wayland? Gnome only (or any other DE)?</p>
]]></description><pubDate>Wed, 15 Jul 2026 10:50:04 +0000</pubDate><link>https://news.ycombinator.com/item?id=48918878</link><dc:creator>granra</dc:creator><comments>https://news.ycombinator.com/item?id=48918878</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48918878</guid></item><item><title><![CDATA[New comment by granra in "Neverclick: Desktop application for performing mouse actions with your keyboard"]]></title><description><![CDATA[
<p>I mean, it can make mouse movements and clicks but you can't be suggesting it can do on-screen hints, which makes it a way better experience.</p>
]]></description><pubDate>Wed, 15 Jul 2026 10:46:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=48918847</link><dc:creator>granra</dc:creator><comments>https://news.ycombinator.com/item?id=48918847</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48918847</guid></item><item><title><![CDATA[New comment by granra in "Karp: Anthropic/OpenAI are stealing customer IP and their tokens have low value"]]></title><description><![CDATA[
<p>If you invented god that can make you billions, why wouldn't you extract that value yourself instead of leasing it in form of an API access.<p>No one claims their showels find gold for you.</p>
]]></description><pubDate>Thu, 02 Jul 2026 13:10:11 +0000</pubDate><link>https://news.ycombinator.com/item?id=48761008</link><dc:creator>granra</dc:creator><comments>https://news.ycombinator.com/item?id=48761008</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48761008</guid></item><item><title><![CDATA[New comment by granra in "What's wrong with EU age verification? (Nothing)"]]></title><description><![CDATA[
<p>But now kids grow up with social media and fake news. I too grew up seeing stuff I shouldn't have online and I turned out fine but I see the online landscape today as much scarier place and as a recent father I'm scared of what it can do to my child and will need to police it.</p>
]]></description><pubDate>Wed, 01 Jul 2026 14:41:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=48747628</link><dc:creator>granra</dc:creator><comments>https://news.ycombinator.com/item?id=48747628</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48747628</guid></item><item><title><![CDATA[New comment by granra in "GLM-5.2 is the new leading open weights model on Artificial Analysis"]]></title><description><![CDATA[
<p>I'm not entirely sure what an agentic workflow could mean today but I think so. I use a coding agent (crush), prompt it to brainstorm an implementation with me (or sometimes I know exactly how I want to implement it but ask it to challenge it), correct any wrong assumptions or request the implementation to look differently than suggested if I don't like it. Then finally when I'm positive I've cleared the most important assumptions I ask it to actually write and edit files and run tests and such (this just ends up being a "implement this").<p>With any model I've tried I've found it to be a huge pain to have it fix things where it made a wrong assumption without the code becoming a mess and burning a lot of tokens. I'm aware that not everyone works like this but I'm still very opinionated on what the end result should look like so I can still work on it without an LLM.</p>
]]></description><pubDate>Wed, 17 Jun 2026 17:36:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=48573803</link><dc:creator>granra</dc:creator><comments>https://news.ycombinator.com/item?id=48573803</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48573803</guid></item><item><title><![CDATA[New comment by granra in "GLM-5.2 is the new leading open weights model on Artificial Analysis"]]></title><description><![CDATA[
<p>With a claude code plan, can you generate as many tokens with Opus as you can with Haiku before filling your 5 hour window? The same is going on here.</p>
]]></description><pubDate>Wed, 17 Jun 2026 17:23:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=48573579</link><dc:creator>granra</dc:creator><comments>https://news.ycombinator.com/item?id=48573579</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48573579</guid></item><item><title><![CDATA[New comment by granra in "GLM-5.2 is the new leading open weights model on Artificial Analysis"]]></title><description><![CDATA[
<p>That's what I've been doing. I use crush normally. While the codebase are by no means huge, they're not tiny either.</p>
]]></description><pubDate>Wed, 17 Jun 2026 16:35:37 +0000</pubDate><link>https://news.ycombinator.com/item?id=48572892</link><dc:creator>granra</dc:creator><comments>https://news.ycombinator.com/item?id=48572892</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48572892</guid></item><item><title><![CDATA[New comment by granra in "GLM-5.2 is the new leading open weights model on Artificial Analysis"]]></title><description><![CDATA[
<p>How are you using it? I have the lite plan and I've only ever maxed my weekly usage a few hours before reset. I will concede that I'm not a super heavy LLM user but it's been really good for me.<p>My workflow is usually:<p>- read file. I want to achieve X, how do? Do not implement anything.<p>- I would do a, b and c<p>- sketch a brief implementation of your suggestion<p>- <code> (not writing files yet)<p>- instead of your approach x, wouldn't it make sense to instead do z? What would that look like?<p>- <code><p>- nice, implement this<p>- starts writing files, run tests, etc.</p>
]]></description><pubDate>Wed, 17 Jun 2026 12:30:08 +0000</pubDate><link>https://news.ycombinator.com/item?id=48569477</link><dc:creator>granra</dc:creator><comments>https://news.ycombinator.com/item?id=48569477</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48569477</guid></item><item><title><![CDATA[New comment by granra in "CSS: Unavoidable Bad Parts"]]></title><description><![CDATA[
<p>I remember that there were these talks called "Linux sucks" (IIRC) and the premise wasn't that we should start using Windows but more like "we can do better and improve it." Not every complaint needs to come with a solution or better alternative.</p>
]]></description><pubDate>Thu, 11 Jun 2026 13:25:12 +0000</pubDate><link>https://news.ycombinator.com/item?id=48490035</link><dc:creator>granra</dc:creator><comments>https://news.ycombinator.com/item?id=48490035</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48490035</guid></item><item><title><![CDATA[New comment by granra in "xAI is looking more like a datacentre REIT than a frontier lab"]]></title><description><![CDATA[
<p>More like most European countries.</p>
]]></description><pubDate>Mon, 08 Jun 2026 21:38:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=48452544</link><dc:creator>granra</dc:creator><comments>https://news.ycombinator.com/item?id=48452544</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48452544</guid></item><item><title><![CDATA[New comment by granra in "xAI is looking more like a datacentre REIT than a frontier lab"]]></title><description><![CDATA[
<p>> Until someone can come up with a better option though...<p>A welfare state maybe?</p>
]]></description><pubDate>Mon, 08 Jun 2026 19:56:38 +0000</pubDate><link>https://news.ycombinator.com/item?id=48450922</link><dc:creator>granra</dc:creator><comments>https://news.ycombinator.com/item?id=48450922</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48450922</guid></item><item><title><![CDATA[Introduction to nixidy – Kubernetes GitOps with Nix]]></title><description><![CDATA[
<p>Article URL: <a href="https://codedbearder.com/posts/nixidy-part-1-introduction/">https://codedbearder.com/posts/nixidy-part-1-introduction/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=48446465">https://news.ycombinator.com/item?id=48446465</a></p>
<p>Points: 3</p>
<p># Comments: 1</p>
]]></description><pubDate>Mon, 08 Jun 2026 15:16:19 +0000</pubDate><link>https://codedbearder.com/posts/nixidy-part-1-introduction/</link><dc:creator>granra</dc:creator><comments>https://news.ycombinator.com/item?id=48446465</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48446465</guid></item><item><title><![CDATA[New comment by granra in "Taking a walk may lead to more creativity than sitting, study finds (2014)"]]></title><description><![CDATA[
<p>I made an MCP server that basically implements all the tools an agent harness would provide. The code is checked out on my server, the MCP server creates git worktrees on "activation" and it can read, modify files, run bash commands etc. I have this setup in typingmind so I can do everything from my phone :p The only problem is that typingmind needs to be in the foreground on my phone, otherwise it will kill the connection.<p>There was a time where I was often stuck for an hour with nothing but my phone and I kept copying file contents into chat for context so I made this and it works surprisingly well.</p>
]]></description><pubDate>Tue, 26 May 2026 11:55:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=48278475</link><dc:creator>granra</dc:creator><comments>https://news.ycombinator.com/item?id=48278475</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48278475</guid></item><item><title><![CDATA[New comment by granra in "Eric Schmidt speech about AI booed during graduation"]]></title><description><![CDATA[
<p>Exactly. Maybe the ultra rich shouldn't be allowed to accumulate all the wealth and assets and "the outsiders" are just scapegoats. ¯\_(ツ)_/¯</p>
]]></description><pubDate>Mon, 18 May 2026 13:12:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=48179359</link><dc:creator>granra</dc:creator><comments>https://news.ycombinator.com/item?id=48179359</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48179359</guid></item><item><title><![CDATA[Show HN: Crushout – A PreToolUse Bash hook that auto-approves read-only commands]]></title><description><![CDATA[
<p>Article URL: <a href="https://github.com/arnarg/crushout">https://github.com/arnarg/crushout</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=48036503">https://news.ycombinator.com/item?id=48036503</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Wed, 06 May 2026 14:10:53 +0000</pubDate><link>https://github.com/arnarg/crushout</link><dc:creator>granra</dc:creator><comments>https://news.ycombinator.com/item?id=48036503</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48036503</guid></item><item><title><![CDATA[Show HN: Nixidy – Kubernetes GitOps with Nix and Argo CD]]></title><description><![CDATA[
<p>Article URL: <a href="https://nixidy.dev/">https://nixidy.dev/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47601601">https://news.ycombinator.com/item?id=47601601</a></p>
<p>Points: 4</p>
<p># Comments: 1</p>
]]></description><pubDate>Wed, 01 Apr 2026 14:39:43 +0000</pubDate><link>https://nixidy.dev/</link><dc:creator>granra</dc:creator><comments>https://news.ycombinator.com/item?id=47601601</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47601601</guid></item><item><title><![CDATA[New comment by granra in "Nixtml: Static website and blog generator written in Nix"]]></title><description><![CDATA[
<p>Too bad I don't write PHP then</p>
]]></description><pubDate>Wed, 03 Dec 2025 05:34:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=46130635</link><dc:creator>granra</dc:creator><comments>https://news.ycombinator.com/item?id=46130635</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46130635</guid></item><item><title><![CDATA[New comment by granra in "Nixtml: Static website and blog generator written in Nix"]]></title><description><![CDATA[
<p>Out of curiousity, having never worked in the business of making websites, what would be accessible to a designer? Jinja2?</p>
]]></description><pubDate>Tue, 02 Dec 2025 19:48:00 +0000</pubDate><link>https://news.ycombinator.com/item?id=46125837</link><dc:creator>granra</dc:creator><comments>https://news.ycombinator.com/item?id=46125837</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46125837</guid></item><item><title><![CDATA[New comment by granra in "Nixtml: Static website and blog generator written in Nix"]]></title><description><![CDATA[
<p>Generally I think you have a point when making landing pages or things of that sort. I however basically only use static site generators for blogging and I think markdown/asciidoc/whatever + metadata is nicer for writing content than directly in HTML.<p>I made nixtml and I take no offence :)</p>
]]></description><pubDate>Tue, 02 Dec 2025 18:52:26 +0000</pubDate><link>https://news.ycombinator.com/item?id=46124958</link><dc:creator>granra</dc:creator><comments>https://news.ycombinator.com/item?id=46124958</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46124958</guid></item><item><title><![CDATA[New comment by granra in "Nixtml: Static website and blog generator written in Nix"]]></title><description><![CDATA[
<p>Yeah it would probably be more efficient to do the templating as a build step in the derivation that parses the markdown. But after making nixidy[1] I wanted to have a crack at making a static site generator _in nix_. I'm open to expanding it though of course :)<p>[1]: <a href="https://github.com/arnarg/nixidy" rel="nofollow">https://github.com/arnarg/nixidy</a></p>
]]></description><pubDate>Tue, 02 Dec 2025 18:46:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=46124858</link><dc:creator>granra</dc:creator><comments>https://news.ycombinator.com/item?id=46124858</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46124858</guid></item></channel></rss>