<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: andoando</title><link>https://news.ycombinator.com/user?id=andoando</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sat, 16 May 2026 12:24:38 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=andoando" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by andoando in "7 lines of code, 3 minutes: Implement a programming language (2010)"]]></title><description><![CDATA[
<p>Imagine you went back 100 years and someone was like "Come up with a mathematical system that can express any sequences of logical steps" do you imagine what you would deliver is a few primitives and a few simple rules and said "here you go!, this is fully complete". Its actually quite remarkable that Church/Turing didn't start off from primitives like if statements, loops, etc.<p>Lambda calculus is from the 1930s and predates computers, its point is that it is bare bones model of computation. It doesn't make much sense to compare it to modern languages in efficacy, as that seems to imagine someone came up with lambda calculus in 2010 along Java, C, Python, etc.<p>The super cool thing about it is that it is capable of expressing ALL the computation you know today, from the few primitives. An "If" statement for example is λb.λx.λy. b x y</p>
]]></description><pubDate>Mon, 11 May 2026 17:01:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=48097595</link><dc:creator>andoando</dc:creator><comments>https://news.ycombinator.com/item?id=48097595</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48097595</guid></item><item><title><![CDATA[New comment by andoando in "I returned to AWS and was reminded why I left"]]></title><description><![CDATA[
<p>No I just misremembered and mixed up the global and local.</p>
]]></description><pubDate>Mon, 11 May 2026 02:06:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=48090275</link><dc:creator>andoando</dc:creator><comments>https://news.ycombinator.com/item?id=48090275</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48090275</guid></item><item><title><![CDATA[New comment by andoando in "I returned to AWS and was reminded why I left"]]></title><description><![CDATA[
<p>At the beginning there was only one query, it got expanded over time with new features. It wasnt well thought out, no.<p>If you need high scale globally distributed persistent data, uniform distribution of hash reads/writes, dont care for schema,  and know your query will remain simple yeah its a fine choice.<p>I just wouldn't consider it outside of enterprise level</p>
]]></description><pubDate>Sun, 10 May 2026 21:48:03 +0000</pubDate><link>https://news.ycombinator.com/item?id=48088447</link><dc:creator>andoando</dc:creator><comments>https://news.ycombinator.com/item?id=48088447</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48088447</guid></item><item><title><![CDATA[New comment by andoando in "I returned to AWS and was reminded why I left"]]></title><description><![CDATA[
<p>You spin up a second host and load balance</p>
]]></description><pubDate>Sun, 10 May 2026 17:19:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=48085829</link><dc:creator>andoando</dc:creator><comments>https://news.ycombinator.com/item?id=48085829</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48085829</guid></item><item><title><![CDATA[New comment by andoando in "I returned to AWS and was reminded why I left"]]></title><description><![CDATA[
<p>With AI now writing queries is a joke. But you can just create a two column table: key, JSONB and call it a day and you get your easy document store + indexes, json search, relationsl goodness, and atomicity, consistency for free</p>
]]></description><pubDate>Sun, 10 May 2026 16:48:59 +0000</pubDate><link>https://news.ycombinator.com/item?id=48085506</link><dc:creator>andoando</dc:creator><comments>https://news.ycombinator.com/item?id=48085506</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48085506</guid></item><item><title><![CDATA[New comment by andoando in "I returned to AWS and was reminded why I left"]]></title><description><![CDATA[
<p>We used DynamoDB pretty much exclusively at Tinder, cause it was the founders choice early on. Horrible horrible choice and after 4 years working on it I dont see why you would.<p>1. you have a limited number of global supported indexes, 5 iirc, which means your queries are very limited. If your use case ever expands beyond that you're pretty screwed. 
2. You will have race conditions. Strong consistency is 2x the cost, and not supported on global indexes.
3. Data is split into 10GB partitions and all the read/write quotas are split evenly by the number of partitions. 100 reads you're paying for is actually 10 reads per partition if you have 10 partition. Hot sharding becomes a real problem.<p>Take your document data, stick it in a JSONB and you get the same performance way cheaper + query able/indexable columns. The only time Dynamo wins I think is it scales well globally, but you probably dont need it</p>
]]></description><pubDate>Sun, 10 May 2026 16:46:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=48085479</link><dc:creator>andoando</dc:creator><comments>https://news.ycombinator.com/item?id=48085479</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48085479</guid></item><item><title><![CDATA[New comment by andoando in "Microsoft and OpenAI end their exclusive and revenue-sharing deal"]]></title><description><![CDATA[
<p>Uhh what, I speak to llms in broken english with minimal details and they figure it out better than I would have if you told me the same garbage</p>
]]></description><pubDate>Mon, 27 Apr 2026 19:37:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=47926282</link><dc:creator>andoando</dc:creator><comments>https://news.ycombinator.com/item?id=47926282</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47926282</guid></item><item><title><![CDATA[New comment by andoando in "Show HN: Linux Desktops in the Browser"]]></title><description><![CDATA[
<p>Yeah it is, I am just not sure if its worth doing so. I haven't got much feedback/interest.</p>
]]></description><pubDate>Fri, 24 Apr 2026 16:07:40 +0000</pubDate><link>https://news.ycombinator.com/item?id=47892106</link><dc:creator>andoando</dc:creator><comments>https://news.ycombinator.com/item?id=47892106</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47892106</guid></item><item><title><![CDATA[New comment by andoando in "I am building a cloud"]]></title><description><![CDATA[
<p>Yes, with a lot of reviewing what its doing/asking questions, 100%</p>
]]></description><pubDate>Thu, 23 Apr 2026 08:17:19 +0000</pubDate><link>https://news.ycombinator.com/item?id=47873376</link><dc:creator>andoando</dc:creator><comments>https://news.ycombinator.com/item?id=47873376</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47873376</guid></item><item><title><![CDATA[Show HN: Linux Desktops in the Browser]]></title><description><![CDATA[
<p>I wanted to try making a better DistroSea with cloud gaming streaming tech, low boot times, and much nicer/modern desktop interfaces. Honestly I expect hackernews to find a ton of issues with it, and I stopped working on the project weeks ago but just want to put it out there instead of letting all my projects hide.</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47872628">https://news.ycombinator.com/item?id=47872628</a></p>
<p>Points: 2</p>
<p># Comments: 3</p>
]]></description><pubDate>Thu, 23 Apr 2026 05:54:27 +0000</pubDate><link>https://vmpixel.com/</link><dc:creator>andoando</dc:creator><comments>https://news.ycombinator.com/item?id=47872628</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47872628</guid></item><item><title><![CDATA[New comment by andoando in "Over-editing refers to a model modifying code beyond what is necessary"]]></title><description><![CDATA[
<p>There is a million things in between a C compiler and a non-trivial product. They do make a ton of horrible architectural decisions, but I only need to review the output/ask questions to guide that, not review every diff.</p>
]]></description><pubDate>Wed, 22 Apr 2026 21:41:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=47869644</link><dc:creator>andoando</dc:creator><comments>https://news.ycombinator.com/item?id=47869644</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47869644</guid></item><item><title><![CDATA[New comment by andoando in "Over-editing refers to a model modifying code beyond what is necessary"]]></title><description><![CDATA[
<p>Because its SO much faster not to have to do all that. I think 10x is no joke, and if you're doing MVP, its just not worth the mental effort.</p>
]]></description><pubDate>Wed, 22 Apr 2026 19:00:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=47867806</link><dc:creator>andoando</dc:creator><comments>https://news.ycombinator.com/item?id=47867806</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47867806</guid></item><item><title><![CDATA[New comment by andoando in "Claude Design"]]></title><description><![CDATA[
<p>I don't either, but I really think Im just burnt out. The simplest things piss me off.</p>
]]></description><pubDate>Sat, 18 Apr 2026 08:05:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=47814119</link><dc:creator>andoando</dc:creator><comments>https://news.ycombinator.com/item?id=47814119</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47814119</guid></item><item><title><![CDATA[New comment by andoando in "Codex for almost everything"]]></title><description><![CDATA[
<p>Totally agree, AI interfaces will become the norm.<p>Even all the websites, desktop/mobile apps will become obsolete.</p>
]]></description><pubDate>Thu, 16 Apr 2026 19:01:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=47797927</link><dc:creator>andoando</dc:creator><comments>https://news.ycombinator.com/item?id=47797927</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47797927</guid></item><item><title><![CDATA[New comment by andoando in "Codex for Almost Everything"]]></title><description><![CDATA[
<p>I want it yes. I already feel like Im the one doing the dumb work for the AI of manually clicking windows and typing in a command here or there it cant do.<p>Ive also been getting increasingly annoyed with how tedious it is to do the same repetitive actions for simple tasks.</p>
]]></description><pubDate>Thu, 16 Apr 2026 18:59:17 +0000</pubDate><link>https://news.ycombinator.com/item?id=47797901</link><dc:creator>andoando</dc:creator><comments>https://news.ycombinator.com/item?id=47797901</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47797901</guid></item><item><title><![CDATA[New comment by andoando in "Want to write a compiler? Just read these two papers (2008)"]]></title><description><![CDATA[
<p>Most books have so much nonsense details that I cant help but skip most of it.<p>On the other hand technical books can be so overwhelmingly difficult that you need to go outside and do hours of learning to understand one tidbit of it</p>
]]></description><pubDate>Wed, 15 Apr 2026 20:46:36 +0000</pubDate><link>https://news.ycombinator.com/item?id=47785011</link><dc:creator>andoando</dc:creator><comments>https://news.ycombinator.com/item?id=47785011</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47785011</guid></item><item><title><![CDATA[New comment by andoando in "Claude.ai down"]]></title><description><![CDATA[
<p>The big thing is here is more training and that comes in two flavors:<p>1. Using AI helps as part of the training process.<p>2. All the prompts going to openai/claude is a gold mine.</p>
]]></description><pubDate>Mon, 13 Apr 2026 18:26:04 +0000</pubDate><link>https://news.ycombinator.com/item?id=47756026</link><dc:creator>andoando</dc:creator><comments>https://news.ycombinator.com/item?id=47756026</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47756026</guid></item><item><title><![CDATA[New comment by andoando in "Issue: Claude Code is unusable for complex engineering tasks with Feb updates"]]></title><description><![CDATA[
<p>I mean whatever part of the code that is read by the AI has to be in the content window at some point or another nSprewd throughout your sessions Id think even with a huge codebase, 90% of it is going to be there</p>
]]></description><pubDate>Thu, 09 Apr 2026 04:14:14 +0000</pubDate><link>https://news.ycombinator.com/item?id=47699197</link><dc:creator>andoando</dc:creator><comments>https://news.ycombinator.com/item?id=47699197</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47699197</guid></item><item><title><![CDATA[New comment by andoando in "Issue: Claude Code is unusable for complex engineering tasks with Feb updates"]]></title><description><![CDATA[
<p>Isnt the codebase in the context window?</p>
]]></description><pubDate>Tue, 07 Apr 2026 00:30:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=47669208</link><dc:creator>andoando</dc:creator><comments>https://news.ycombinator.com/item?id=47669208</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47669208</guid></item><item><title><![CDATA[New comment by andoando in "Claude Code is unusable for complex engineering tasks with the Feb updates"]]></title><description><![CDATA[
<p>?</p>
]]></description><pubDate>Mon, 06 Apr 2026 16:57:18 +0000</pubDate><link>https://news.ycombinator.com/item?id=47663538</link><dc:creator>andoando</dc:creator><comments>https://news.ycombinator.com/item?id=47663538</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47663538</guid></item></channel></rss>