<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: egnehots</title><link>https://news.ycombinator.com/user?id=egnehots</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Tue, 14 Apr 2026 11:09:58 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=egnehots" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by egnehots in "Cloudflare outage on December 5, 2025"]]></title><description><![CDATA[
<p>From a customer perspective, I think there should be an option:<p>- prioritize security: get patchs ASAP<p>- prioritize availability: get patchs after a cooldown period<p>Because ultimately, it's a tradeoff that cannot be handled by Cloudflare.
It depends on your business, your threat model.</p>
]]></description><pubDate>Sat, 06 Dec 2025 07:31:19 +0000</pubDate><link>https://news.ycombinator.com/item?id=46171427</link><dc:creator>egnehots</dc:creator><comments>https://news.ycombinator.com/item?id=46171427</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46171427</guid></item><item><title><![CDATA[New comment by egnehots in "PDF to Text, a challenging problem"]]></title><description><![CDATA[
<p>I don't think so, pdf.js is able to <i>render</i> a pdf content.<p>Which is different from extracting "text".  
Text in PDF can be encoded in many ways, in an actual image, in shapes (think, segments, quadratic bezier curves...), or in an XML format (really easy to process).<p>PDF viewers are able to render text, like a printer would work, processing  
command to show pixels on the screen at the end.<p>But often, paragraph, text layout, columns, tables are lost in the process.  
Even though, you see them, so close yet so far.  
That is why AI is quite strong at this task.</p>
]]></description><pubDate>Tue, 13 May 2025 16:05:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=43974428</link><dc:creator>egnehots</dc:creator><comments>https://news.ycombinator.com/item?id=43974428</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43974428</guid></item><item><title><![CDATA[New comment by egnehots in "Better text rendering in Chromium-based browsers on Windows"]]></title><description><![CDATA[
<p>What about all the designers that used to handle this issue by tweaking their font weights, colors...?
Changing a long standing issue with a lot of users will break things for some people (using edge, with an eyes for these details..)</p>
]]></description><pubDate>Thu, 13 Feb 2025 17:13:24 +0000</pubDate><link>https://news.ycombinator.com/item?id=43038403</link><dc:creator>egnehots</dc:creator><comments>https://news.ycombinator.com/item?id=43038403</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43038403</guid></item><item><title><![CDATA[New comment by egnehots in "OmniHuman-1: Human Animation Models"]]></title><description><![CDATA[
<p>this could be used as an incredible low bitrate codec for some streaming use cases.
(video conferencing/podcasts on <3G for ex, just use some keyframes + the audio).</p>
]]></description><pubDate>Tue, 04 Feb 2025 18:27:20 +0000</pubDate><link>https://news.ycombinator.com/item?id=42936555</link><dc:creator>egnehots</dc:creator><comments>https://news.ycombinator.com/item?id=42936555</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42936555</guid></item><item><title><![CDATA[New comment by egnehots in "Notes on the New Deepseek v3"]]></title><description><![CDATA[
<p>If you understand how LLMs work, you should disregard tests such as:<p>- How many 'r's are in Strawberry?<p>- Finding the fourth word of the response<p>These tests are at odds with the tokenizer and next-word prediction model.
They do not accurately represent an LLM's capabilities. 
It's akin to asking a blind person to identify colors.</p>
]]></description><pubDate>Thu, 02 Jan 2025 18:36:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=42577275</link><dc:creator>egnehots</dc:creator><comments>https://news.ycombinator.com/item?id=42577275</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42577275</guid></item><item><title><![CDATA[The Sourdough Framework]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.the-sourdough-framework.com">https://www.the-sourdough-framework.com</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=42267459">https://news.ycombinator.com/item?id=42267459</a></p>
<p>Points: 2</p>
<p># Comments: 1</p>
]]></description><pubDate>Thu, 28 Nov 2024 18:22:47 +0000</pubDate><link>https://www.the-sourdough-framework.com</link><dc:creator>egnehots</dc:creator><comments>https://news.ycombinator.com/item?id=42267459</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42267459</guid></item><item><title><![CDATA[New comment by egnehots in "Lazy Docker: The lazier way to manage everything Docker"]]></title><description><![CDATA[
<p>here is their Elevator Pitch:<p>> Minor rant incoming: Something's not working? Maybe a service is down. docker-compose ps. Yep, it's that microservice that's still buggy. No issue, I'll just restart it: docker-compose restart. Okay now let's try again. Oh wait the issue is still there. Hmm. docker-compose ps. Right so the service must have just stopped immediately after starting. I probably would have known that if I was reading the log stream, but there is a lot of clutter in there from other services. I could get the logs for just that one service with docker compose logs --follow myservice but that dies everytime the service dies so I'd need to run that command every time I restart the service. I could alternatively run docker-compose up myservice and in that terminal window if the service is down I could just up it again, but now I've got one service hogging a terminal window even after I no longer care about its logs. I guess when I want to reclaim the terminal realestate I can do ctrl+P,Q, but... wait, that's not working for some reason. Should I use ctrl+C instead? I can't remember if that closes the foreground process or kills the actual service.<p>What a headache!<p>Memorising docker commands is hard. Memorising aliases is slightly less hard. Keeping track of your containers across multiple terminal windows is near impossible. What if you had all the information you needed in one terminal window with every common command living one keypress away (and the ability to add custom commands as well). Lazydocker's goal is to make that dream a reality.</p>
]]></description><pubDate>Sat, 23 Nov 2024 16:18:56 +0000</pubDate><link>https://news.ycombinator.com/item?id=42221631</link><dc:creator>egnehots</dc:creator><comments>https://news.ycombinator.com/item?id=42221631</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42221631</guid></item><item><title><![CDATA[New comment by egnehots in "How Tailscale's infra team stays small"]]></title><description><![CDATA[
<p>yeah, I wonder if there's room for a different networking abstraction that could address most of complex orgs networking issues, I, for sure, don't think that we should still think about cidr range limitations when making networks, for ex.<p>that said, I'm not sure the tailscale approach scales well in typical modern corporate environments, where you've got a small army of junior devops often overlooking security or cost implications (don't forget about egress costs!).<p>the traditional, meticulous approach of segmenting networks into VPCs, subnets, etc., with careful planning of auth, firewall rules and routes, helps limit the blast radius of mistakes.<p>tailscale's networking & security model feels simple and flat, which is great for usability, but it lacks the comforting "defense in depth" that will be asked in most big corps.</p>
]]></description><pubDate>Sat, 23 Nov 2024 08:25:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=42219805</link><dc:creator>egnehots</dc:creator><comments>https://news.ycombinator.com/item?id=42219805</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42219805</guid></item><item><title><![CDATA[Intuitive desktop API client, alternative to Postman and Insomnia]]></title><description><![CDATA[
<p>Article URL: <a href="https://github.com/mountain-loop/yaak">https://github.com/mountain-loop/yaak</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=42209254">https://news.ycombinator.com/item?id=42209254</a></p>
<p>Points: 3</p>
<p># Comments: 0</p>
]]></description><pubDate>Thu, 21 Nov 2024 22:16:24 +0000</pubDate><link>https://github.com/mountain-loop/yaak</link><dc:creator>egnehots</dc:creator><comments>https://news.ycombinator.com/item?id=42209254</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42209254</guid></item><item><title><![CDATA[New comment by egnehots in "NotebookLlama: An open source version of NotebookLM"]]></title><description><![CDATA[
<p>It might be a mistake since it's different from what's stated in their readme:<p><a href="https://github.com/meta-llama/llama-models/blob/main/models/llama3_2/USE_POLICY.md">https://github.com/meta-llama/llama-models/blob/main/models/...</a><p>(which is referring to the license of Meta Llama 3.2)</p>
]]></description><pubDate>Mon, 28 Oct 2024 07:44:36 +0000</pubDate><link>https://news.ycombinator.com/item?id=41968615</link><dc:creator>egnehots</dc:creator><comments>https://news.ycombinator.com/item?id=41968615</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41968615</guid></item><item><title><![CDATA[Quantized Llama models with increased speed and a reduced memory footprint]]></title><description><![CDATA[
<p>Article URL: <a href="https://ai.meta.com/blog/meta-llama-quantized-lightweight-models/?_fb_noscript=1">https://ai.meta.com/blog/meta-llama-quantized-lightweight-models/?_fb_noscript=1</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=41938473">https://news.ycombinator.com/item?id=41938473</a></p>
<p>Points: 508</p>
<p># Comments: 122</p>
]]></description><pubDate>Thu, 24 Oct 2024 18:52:44 +0000</pubDate><link>https://ai.meta.com/blog/meta-llama-quantized-lightweight-models/?_fb_noscript=1</link><dc:creator>egnehots</dc:creator><comments>https://news.ycombinator.com/item?id=41938473</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41938473</guid></item><item><title><![CDATA[Ichigo: Local real-time voice AI]]></title><description><![CDATA[
<p>There was an announcement on LocalLLaMA: <a href="https://www.reddit.com/r/LocalLLaMA/comments/1g38e9s/ichigollama31_local_realtime_voice_ai/" rel="nofollow">https://www.reddit.com/r/LocalLLaMA/comments/1g38e9s/ichigol...</a><p>There were several links:<p>- Blog for details: <a href="https://homebrew.ltd/blog/llama-learns-to-talk" rel="nofollow">https://homebrew.ltd/blog/llama-learns-to-talk</a><p>- Code: <a href="https://github.com/homebrewltd/ichigo">https://github.com/homebrewltd/ichigo</a><p>- Run locally: <a href="https://github.com/homebrewltd/ichigo-demo/tree/docker">https://github.com/homebrewltd/ichigo-demo/tree/docker</a><p>- Demo on a single 3090: <a href="https://ichigo.homebrew.ltd/" rel="nofollow">https://ichigo.homebrew.ltd/</a></p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=41839686">https://news.ycombinator.com/item?id=41839686</a></p>
<p>Points: 217</p>
<p># Comments: 40</p>
]]></description><pubDate>Mon, 14 Oct 2024 17:25:50 +0000</pubDate><link>https://github.com/homebrewltd/ichigo</link><dc:creator>egnehots</dc:creator><comments>https://news.ycombinator.com/item?id=41839686</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41839686</guid></item><item><title><![CDATA[New comment by egnehots in "PostgreSQL Streaming Replication (WAL); What It Is and How to Configure One"]]></title><description><![CDATA[
<p>> How do I check how many seconds the replica is lagging behind the master?<p>Use PostgreSQL administrative functions, specifically: pg_last_xact_replay_timestamp.
(<a href="https://www.postgresql.org/docs/current/functions-admin.html#FUNCTIONS-RECOVERY-INFO-TABLE" rel="nofollow">https://www.postgresql.org/docs/current/functions-admin.html...</a>)<p>> How would I monitor the replica?
A simple cron task that pings a health check if everything is OK (lag is < x) would be a good start.<p>There are many solutions, highly dependent on your context and the scale of your business. Options range from simple cron jobs with email alerts to more sophisticated setups like ELK/EFK, or managed services such as Datadog.<p>> How do I failover to the replica if the primary goes down?<p>> Should I handle failover automatically or manually?<p>> Do I need two replicas to avoid a split-brain scenario? My head hurts already.<p>While it may be tempting to automate failover with a tool, I strongly recommend manual failover if your business can tolerate some downtime.<p>This approach allows you to understand why the primary went down, preventing the same issue from affecting the replica. It's often not trivial to restore the primary or convert it to a replica.
YOU become the concensus algorithm, the observer, deciding which instance become the primary.<p>Two scenarios to avoid:<p>* Falling back to a replica only for it to fail (e.g., due to a full disk).<p>* Successfully switching over so transparently that you will not notice that you're now running without a replica.<p>> After a failover (whether automatic or manual), how do I reconfigure the primary to be the primary again, and the replica to be the replica?<p>It's easier to switch roles and configure the former primary as the new replica. It will then automatically synchronize with the current primary.<p>You might also want to use the replica for:<p>* Some read-only queries. However, for long-running queries, you will need to configure the replication delay to avoid timeouts.<p>* Backups or point-in-time recovery.<p>If you manage yourself a database, I strongly recommand to gain confidence first in your backups and your ability to restore them quickly. Then you can play with replication, they are tons of little settings to configure (async for perf, large enough wall size to restore quickly, ...).<p>It's not that hard, but you want to have the confidence and the procedure written down before you have to do it in a production incident.</p>
]]></description><pubDate>Sat, 12 Oct 2024 14:35:36 +0000</pubDate><link>https://news.ycombinator.com/item?id=41819376</link><dc:creator>egnehots</dc:creator><comments>https://news.ycombinator.com/item?id=41819376</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41819376</guid></item><item><title><![CDATA[New comment by egnehots in "Proposal: JavaScript Structs"]]></title><description><![CDATA[
<p>Try Go. 
Go is really stable as a language and have a very small core feature set.</p>
]]></description><pubDate>Thu, 10 Oct 2024 19:58:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=41802878</link><dc:creator>egnehots</dc:creator><comments>https://news.ycombinator.com/item?id=41802878</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41802878</guid></item><item><title><![CDATA[New comment by egnehots in "My negative views on Rust (2023)"]]></title><description><![CDATA[
<p>Some points resonate with me:<p>> People don't want "to have to play Chess against the compiler"<p>Things that are easy to express in other languages become very hard in Rust due to the languages constraints on ownership, async...<p>> Rust has arrived at the complexity of Haskell and C++, each year requiring more knowledge to keep up with the latest and greatest.<p>It's indeed hard to keep up.<p>> Async is highly problematic.<p>Yes, more complexity, more fragmentation and feel like another language.<p>But one point feels unfair:<p>> the excellent tooling and dev team for Rust [..] pulls the wool over people’s eyes and convinces them that this is a good language that is simple and worth investing in.<p>What? No. The main appeal was the safety. It's still a distinctive feature of Rust.
To almost eliminate a whole class of safety issues. It has been proven by several lengthy reports such as <a href="https://security.googleblog.com/2024/09/eliminating-memory-safety-vulnerabilities-Android.html" rel="nofollow">https://security.googleblog.com/2024/09/eliminating-memory-s...</a>.<p>They are many projects for which the reliability and efficiency are worth the trouble.</p>
]]></description><pubDate>Wed, 09 Oct 2024 20:53:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=41792494</link><dc:creator>egnehots</dc:creator><comments>https://news.ycombinator.com/item?id=41792494</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41792494</guid></item><item><title><![CDATA[New comment by egnehots in "Optimizing Postgres table layout for maximum efficiency"]]></title><description><![CDATA[
<p>As mentioned in the article, it's a good idea to consider this when creating a new table, since it's essentially a free optimization. However, it's probably not worth the hassle of reordering a production table for that.<p>> Disk is cheap, memory is plentiful, but your time is expensive, etc.<p>One thing to keep in mind, though, is that while you often have plenty of disk space, RAM is still relatively expensive. It's also divided into many smaller buffers, such as working memory and shared buffers, which are not that large. These optimizations help to fit more data into cache.<p>However, what the article said about alignment being important for indexes is somewhat misleading. Reordering an index field is not the same as reordering columns in a table. Beside having to rewrite queries, it also changes the access pattern and the time required to access the data, which is often much more significant than the space saved. Indexes are, by nature, a tradeoff where you give up space to gain time, so this mindset doesn't really apply there.</p>
]]></description><pubDate>Mon, 07 Oct 2024 19:34:41 +0000</pubDate><link>https://news.ycombinator.com/item?id=41770032</link><dc:creator>egnehots</dc:creator><comments>https://news.ycombinator.com/item?id=41770032</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41770032</guid></item><item><title><![CDATA[New comment by egnehots in "Show HN: Compiling C in the browser using WebAssembly"]]></title><description><![CDATA[
<p>It's pretty misleading not to mention the performance overhead. That's an obvious downside and quite easy to benchmark. Skipping any discussion of performance feels like sweeping it under the marketing rug :/</p>
]]></description><pubDate>Mon, 07 Oct 2024 19:16:21 +0000</pubDate><link>https://news.ycombinator.com/item?id=41769856</link><dc:creator>egnehots</dc:creator><comments>https://news.ycombinator.com/item?id=41769856</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41769856</guid></item><item><title><![CDATA[New comment by egnehots in "Stephen Fry – AI: A Means to an End or a Means to Our End?"]]></title><description><![CDATA[
<p>well it's human nature to struggle with collective action when the risks are unclear, vague and not shared. stakeholders are juggling immediate, tangible concerns, like climate change, economic stability, and political issues, making it tough to justify moving AI up the priority list.</p>
]]></description><pubDate>Mon, 16 Sep 2024 16:09:14 +0000</pubDate><link>https://news.ycombinator.com/item?id=41557540</link><dc:creator>egnehots</dc:creator><comments>https://news.ycombinator.com/item?id=41557540</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41557540</guid></item><item><title><![CDATA[New comment by egnehots in "Neurotechnology numbers worth knowing (2022)"]]></title><description><![CDATA[
<p>I would be interested in a computer science only version.<p>A quick search didn't bring up an already existing one :(</p>
]]></description><pubDate>Sun, 25 Aug 2024 13:44:17 +0000</pubDate><link>https://news.ycombinator.com/item?id=41347263</link><dc:creator>egnehots</dc:creator><comments>https://news.ycombinator.com/item?id=41347263</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41347263</guid></item><item><title><![CDATA[New comment by egnehots in "How far should a programming language aware diff go?"]]></title><description><![CDATA[
<p>There is also the function scope vs block scope...<p>var x = 3 will escape the latter.</p>
]]></description><pubDate>Mon, 22 Jul 2024 18:57:20 +0000</pubDate><link>https://news.ycombinator.com/item?id=41038335</link><dc:creator>egnehots</dc:creator><comments>https://news.ycombinator.com/item?id=41038335</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41038335</guid></item></channel></rss>