<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: el_isma</title><link>https://news.ycombinator.com/user?id=el_isma</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sat, 09 May 2026 03:10:08 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=el_isma" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by el_isma in "Accelerating Gemma 4: faster inference with multi-token prediction drafters"]]></title><description><![CDATA[
<p>How is this different from the speculative decoding that we had before?<p>You could pair a big and small model like qwen 32b with qwen 4b and had that same dynamic of the small model generating tokens and the big one "certifiying" them.<p>The blog says something about re-using the big model's data?</p>
]]></description><pubDate>Tue, 05 May 2026 19:38:00 +0000</pubDate><link>https://news.ycombinator.com/item?id=48027446</link><dc:creator>el_isma</dc:creator><comments>https://news.ycombinator.com/item?id=48027446</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48027446</guid></item><item><title><![CDATA[New comment by el_isma in "A Verilog to Factorio Compiler and Simulator (Working RISC-V CPU)"]]></title><description><![CDATA[
<p>* "small" as measured by estimated lifetime duration</p>
]]></description><pubDate>Sun, 29 Mar 2026 11:18:26 +0000</pubDate><link>https://news.ycombinator.com/item?id=47562179</link><dc:creator>el_isma</dc:creator><comments>https://news.ycombinator.com/item?id=47562179</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47562179</guid></item><item><title><![CDATA[New comment by el_isma in "Show HN: Webact – token-efficient browser control for AI agents (GitHub)"]]></title><description><![CDATA[
<p>How does it compare to <a href="https://github.com/vercel-labs/agent-browser" rel="nofollow">https://github.com/vercel-labs/agent-browser</a> ? Which also provides token efficient way to interact with the browser.</p>
]]></description><pubDate>Tue, 03 Mar 2026 22:25:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=47239958</link><dc:creator>el_isma</dc:creator><comments>https://news.ycombinator.com/item?id=47239958</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47239958</guid></item><item><title><![CDATA[New comment by el_isma in "Show HN: Convince DeepSeek R1 to send you $1000 USDC with 50 tokens"]]></title><description><![CDATA[
<p>Can you share how you beat it?</p>
]]></description><pubDate>Wed, 12 Feb 2025 20:31:45 +0000</pubDate><link>https://news.ycombinator.com/item?id=43029451</link><dc:creator>el_isma</dc:creator><comments>https://news.ycombinator.com/item?id=43029451</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43029451</guid></item><item><title><![CDATA[New comment by el_isma in "Computing Inside an AI"]]></title><description><![CDATA[
<p>0.6/1$ per M tokens in groq/cerebras vs 0.3$ per M tokens in deepinfra (for llama 3.3 70b)<p>But note the free tiers for groq and cerebras are <i>very</i> generous.</p>
]]></description><pubDate>Sun, 15 Dec 2024 13:35:52 +0000</pubDate><link>https://news.ycombinator.com/item?id=42423311</link><dc:creator>el_isma</dc:creator><comments>https://news.ycombinator.com/item?id=42423311</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42423311</guid></item><item><title><![CDATA[New comment by el_isma in "Ask HN: Anyone looking for a free PM/QA engineer?"]]></title><description><![CDATA[
<p>Don't know if this fits, but given your background you might find it interesting. I work at a startup which works with structured video, video which has a certain structure and so allows for reuse of segments. Our challenge is how to show the user this structure, when videos can quickly grow in complexity and end up having multiple thousands of possible variations. Contact me at ismael at lont.ai if you're interested.</p>
]]></description><pubDate>Tue, 11 Jun 2024 14:34:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=40646640</link><dc:creator>el_isma</dc:creator><comments>https://news.ycombinator.com/item?id=40646640</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40646640</guid></item><item><title><![CDATA[New comment by el_isma in "Almost every infrastructure decision I endorse or regret"]]></title><description><![CDATA[
<p>In ECS I <i>had</i> to recreate the cluster from scratch because some of the changes I wanted to do, CDK/CF wouldn't do.<p>My approach on Azure has been to rely as little as possible in their Infra-as-code, and do everything I can to setup the cluster using K8s native stuff. So, add-ons, RBAC, metrics, all I'd try to handle with Helm. That way if I ever need to change K8s provider, it "should" be easy.</p>
]]></description><pubDate>Mon, 12 Feb 2024 19:17:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=39349006</link><dc:creator>el_isma</dc:creator><comments>https://news.ycombinator.com/item?id=39349006</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39349006</guid></item><item><title><![CDATA[New comment by el_isma in "Almost every infrastructure decision I endorse or regret"]]></title><description><![CDATA[
<p>I started with ECS (because I wanted to avoid the complexity of K8s) and regret it. I feel I wasted a lot of time there.<p>In ECS, service updates would take 15 min or more (vs basically instant in K8s).<p>ECS has weird limits on how many containers you can run on one instance [0]. And in the network mode where you can run more containers on a host, then the DNS is a mess (you need to lookup SRV records to find out the port).<p>Using ECS with CDK/Cloudformation is very painful. They don't support everything (specially regarding Blue/Green deployments), and sometimes they can't apply changes you do to a service. When initially setting up everything, I had to recreate the whole cluster from scratch several times. You can argue that's because I didn't know enough, but if that ever happened to me on prod I'd be screwed.<p>I haven't used EKS (I switched to Azure), so maybe EKS has their own complex painful points. I'm trying to keep my K8s as vanilla as possible to avoid the cloud lock-in.<p>[0] <a href="https://docs.aws.amazon.com/AmazonECS/latest/bestpracticesguide/networking-networkmode.html" rel="nofollow">https://docs.aws.amazon.com/AmazonECS/latest/bestpracticesgu...</a></p>
]]></description><pubDate>Sun, 11 Feb 2024 14:16:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=39335122</link><dc:creator>el_isma</dc:creator><comments>https://news.ycombinator.com/item?id=39335122</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39335122</guid></item><item><title><![CDATA[New comment by el_isma in "On letting go of spite"]]></title><description><![CDATA[
<p>Indeed. You can build a system to mitigate most other things, but infinite procastination and the associated guilt is awful.<p>I live by my calendar. I try to write everything I have to do down. I put my things always in the same place. But procastination...<p>Meds do help a bit.</p>
]]></description><pubDate>Mon, 06 Nov 2023 18:10:28 +0000</pubDate><link>https://news.ycombinator.com/item?id=38166291</link><dc:creator>el_isma</dc:creator><comments>https://news.ycombinator.com/item?id=38166291</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=38166291</guid></item><item><title><![CDATA[New comment by el_isma in "Show HN: EnfinBref- {GPT3-5|Mistral-7B} YouTube summaries, segment by segment"]]></title><description><![CDATA[
<p>How do you break down the segments/sections? Is it just fixed time? What happens if there are more than one topic discussed in the segment?<p>Are you using both chatgpt and mistral? Do you use them for different tasks?</p>
]]></description><pubDate>Tue, 31 Oct 2023 14:40:20 +0000</pubDate><link>https://news.ycombinator.com/item?id=38085573</link><dc:creator>el_isma</dc:creator><comments>https://news.ycombinator.com/item?id=38085573</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=38085573</guid></item><item><title><![CDATA[New comment by el_isma in "ElevenLabs Launches Voice Translation Tool to Break Down Language Barriers"]]></title><description><![CDATA[
<p>At least for their other offerings, you can't set the specific language:<p><a href="https://help.elevenlabs.io/hc/en-us/articles/14888868300177-Can-I-use-the-same-cloned-designed-voice-across-languages-" rel="nofollow noreferrer">https://help.elevenlabs.io/hc/en-us/articles/14888868300177-...</a><p><a href="https://help.elevenlabs.io/hc/en-us/articles/14888917355409-Why-are-some-numbers-and-words-not-properly-pronounced-in-the-correct-language-" rel="nofollow noreferrer">https://help.elevenlabs.io/hc/en-us/articles/14888917355409-...</a></p>
]]></description><pubDate>Tue, 10 Oct 2023 21:45:36 +0000</pubDate><link>https://news.ycombinator.com/item?id=37838029</link><dc:creator>el_isma</dc:creator><comments>https://news.ycombinator.com/item?id=37838029</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=37838029</guid></item><item><title><![CDATA[New comment by el_isma in "ElevenLabs Launches Voice Translation Tool to Break Down Language Barriers"]]></title><description><![CDATA[
<p>I've found their system tries to guess the language of the text, but there are many languages that use the same words, and so it will speak in the wrong language (or accent, even). I hope they make a solution for this, otherwise I don't think it will be suitable for production use cases.</p>
]]></description><pubDate>Tue, 10 Oct 2023 17:09:52 +0000</pubDate><link>https://news.ycombinator.com/item?id=37834703</link><dc:creator>el_isma</dc:creator><comments>https://news.ycombinator.com/item?id=37834703</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=37834703</guid></item><item><title><![CDATA[New comment by el_isma in "SudoLang: a programming language designed to collaborate with AI language models"]]></title><description><![CDATA[
<p>But among colleages we use certain jargon which varies by industry and probably by country. Could LLMs have their own preffered jargon?<p>I usually write pseudocode when I'm thinking about a problem to solve, so in a way I'm "thinking with pseudocode" instead of plain language. Pseudocode is probably more accurate than plain language, and it's something I'd use when explaining to other humans what I want them to code (along with diagrams, which seems ChatGPT would understand now). So, to me, speccing this pseudocode to something the LLMs find easier to understand sounds reasonable. It's like understanding how a fellow programmer prefers to get his requirements.</p>
]]></description><pubDate>Fri, 06 Oct 2023 20:36:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=37796054</link><dc:creator>el_isma</dc:creator><comments>https://news.ycombinator.com/item?id=37796054</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=37796054</guid></item><item><title><![CDATA[New comment by el_isma in "SudoLang: a programming language designed to collaborate with AI language models"]]></title><description><![CDATA[
<p>I find it intriguing. It makes sense that this new kind of "thing" (LLMs) could be "programmed", and that you could craft a language specifically for it's abilities.
I've read the tutorials but I still find it hard to wrap my head around it.<p>Have you heard of any other language like this? Or had success using SudoLang?</p>
]]></description><pubDate>Fri, 06 Oct 2023 17:19:59 +0000</pubDate><link>https://news.ycombinator.com/item?id=37793461</link><dc:creator>el_isma</dc:creator><comments>https://news.ycombinator.com/item?id=37793461</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=37793461</guid></item><item><title><![CDATA[New comment by el_isma in "Add an AI Code Copilot to your product using GPT-4"]]></title><description><![CDATA[
<p><a href="https://codeium.com/" rel="nofollow noreferrer">https://codeium.com/</a><p>I find it very helpful, does code completion too and has a chat interface. You can select code and ask for refactorings, comments and whatever.</p>
]]></description><pubDate>Fri, 04 Aug 2023 21:19:52 +0000</pubDate><link>https://news.ycombinator.com/item?id=37006039</link><dc:creator>el_isma</dc:creator><comments>https://news.ycombinator.com/item?id=37006039</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=37006039</guid></item><item><title><![CDATA[New comment by el_isma in "Sourcegraph is no longer open source"]]></title><description><![CDATA[
<p>I usually switch the url from github.com/whatever to github.dev/whatever<p>That will load a web version of VS Code, and you can then use the search from there.</p>
]]></description><pubDate>Tue, 04 Jul 2023 15:42:26 +0000</pubDate><link>https://news.ycombinator.com/item?id=36588166</link><dc:creator>el_isma</dc:creator><comments>https://news.ycombinator.com/item?id=36588166</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=36588166</guid></item><item><title><![CDATA[New comment by el_isma in "DeArrow – Solving clickbait on YouTube"]]></title><description><![CDATA[
<p>You could generate titles from the subtitles! Even auto-generated subtitles are pretty good nowadays, feed it to AI and get it to summarize them in one phrase?</p>
]]></description><pubDate>Thu, 22 Jun 2023 21:21:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=36439193</link><dc:creator>el_isma</dc:creator><comments>https://news.ycombinator.com/item?id=36439193</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=36439193</guid></item><item><title><![CDATA[New comment by el_isma in "Civilization II"]]></title><description><![CDATA[
<p>In some ways it is, but the main difference for me is that things <i>work</i>. It's like only having the good parts of the job :)</p>
]]></description><pubDate>Sat, 25 Mar 2023 14:35:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=35303029</link><dc:creator>el_isma</dc:creator><comments>https://news.ycombinator.com/item?id=35303029</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=35303029</guid></item><item><title><![CDATA[New comment by el_isma in "What to do when you are empty inside and the only thing you think is end it up"]]></title><description><![CDATA[
<p>As another commenter said, get to a doctor ASAP. In my country you should even go to the Emergency door for issues like this. Don't know what's best in your country.<p>When I was depressed, these posts helped:<p><a href="http://hyperboleandahalf.blogspot.com/2011/10/adventures-in-depression.html" rel="nofollow">http://hyperboleandahalf.blogspot.com/2011/10/adventures-in-...</a><p><a href="http://hyperboleandahalf.blogspot.com/2013/05/depression-part-two.html" rel="nofollow">http://hyperboleandahalf.blogspot.com/2013/05/depression-par...</a><p>And if you like them, I find everything by her extremely funny, so go ahead and read up.<p>Good luck and hope you get better soon!</p>
]]></description><pubDate>Fri, 17 Mar 2023 19:43:19 +0000</pubDate><link>https://news.ycombinator.com/item?id=35201874</link><dc:creator>el_isma</dc:creator><comments>https://news.ycombinator.com/item?id=35201874</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=35201874</guid></item><item><title><![CDATA[New comment by el_isma in "Ask HN: How to restore cognition after years of trauma? I feel slow and dumb"]]></title><description><![CDATA[
<p>ADHD medication has helped me, but I wouldn't know if that's applicable to you. I think I had it before the trauma and I lost my handle on it, and meds helped me recover.</p>
]]></description><pubDate>Fri, 06 Jan 2023 19:30:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=34279650</link><dc:creator>el_isma</dc:creator><comments>https://news.ycombinator.com/item?id=34279650</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34279650</guid></item></channel></rss>