<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: nessex</title><link>https://news.ycombinator.com/user?id=nessex</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Mon, 22 Jun 2026 22:48:56 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=nessex" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by nessex in "There is minimal downside to switching to open models"]]></title><description><![CDATA[
<p>Forgot to mention, but it was after the 4.7 release when I was still using 4.6 that I saw those loops too... Before that, 4.6 had been a pretty seamless experience.</p>
]]></description><pubDate>Mon, 22 Jun 2026 07:32:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=48626949</link><dc:creator>nessex</dc:creator><comments>https://news.ycombinator.com/item?id=48626949</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48626949</guid></item><item><title><![CDATA[New comment by nessex in "There is minimal downside to switching to open models"]]></title><description><![CDATA[
<p>They would quantize the model. That'd make it cheaper to run, and have slightly worse output but it would still generate outputs with a similar feel, derived from a compressed version of the same knowledge base etc.<p>They wouldn't even need to do this uniformly, quantized versions of the model could be routed only a subset of the requests. They could do this to nerf the old model, or more likely just to give themselves more hardware to run the new one on by handling more requests on less hardware. Or to handle increased request volume as traffic ramps up faster than hardware can be provisioned.<p>Playing with local models at various quants, the degradation can be hard to spot. Sometimes it's only noticeable in aggregate. And even then, you never really know if you just got unlucky with a bad response due to RNG.<p>I've had Opus 4.6 fall into some weirdly incoherent loops that I rarely see from even Sonnet, that felt like the kind of thing I got frequently with Qwen3.5 9B on local. And the above applies... Was that just bad RNG? Or was my request to Opus routed to some lower quality variant? There's no great way for me to tell for any given request, nor any way to guarantee Anthropic _didn't_ do that.</p>
]]></description><pubDate>Mon, 22 Jun 2026 05:38:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=48626136</link><dc:creator>nessex</dc:creator><comments>https://news.ycombinator.com/item?id=48626136</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48626136</guid></item><item><title><![CDATA[New comment by nessex in "Local Qwen isn't a worse Opus, it's a different tool"]]></title><description><![CDATA[
<p>This is a great post that covers a lot of the recent ground. I have a very similar setup after a very similar journey, minus the RTX6000. Worth noting though that a lot of the recent changes make a single 3090/4090 much more viable here too. MTP and the recent improvements to kv quantization in particular, as well as model-specific template & quant fixes. I run a 4090 with the 4-bit quantized variant of the same model now and have had a great experience. Qwen3.5 was already a big step up, but with 3.6 and the rest of the improvements it's substantially more reliable as a daily use tool and I find myself reaching for hosted models a lot less. Feels like I could work entirely without them if they were to disappear without going back to typing every line of code myself.<p>To make 4-bit fit on one card with reasonable (100k+) context needs a bit more care though. And tuning can be highly specific to your machine, gpu and use-case. But I use a headless server, offload multi-modal to CPU, use fit-target to reduce wasted memory and use q8_0 kv since the 4090 performs well with it... In addition to most of the same config as the author elsewhere. I get 50-60tps generation with a power limit of 275W (450W is default), more than enough to offer a roughly an Opus-speed feedback loop.<p>I haven't seen many of the issues with looping the author mentions. But I did with Qwen3.5 and in particular other 4-bit quants in the past. But the difference is probably a mix of the improvements above, as well as habits changing to avoid cases where models will loop. For what I'm doing, it seems like I loop Qwen3.6 on the same kind of prompts I'll make Haiku or Sonnet loop on (the latter hide some of their existential loops behind "thinking"). Usually it's cause I was too vague about some aspect of what I'm wanting them to do or I forgot to include some context that smaller models just don't have access to in their smaller knowledge base. But at least for what I'm doing (Rust, React, kubernetes) it's not been a notable problem at all with the latest iteration of this whole stack. And knowledge of standard libraries and default k8s resource kinds has been almost flawless.<p>There's still plenty of more complex stuff where I'll choose to jump straight to Claude or GLM-5.2, but if it's not worth that jump I've stopped paying for the middle ground as it's usually not much better than just one more iteration through qwen.<p>All this to say, if you have a 3090/4090, feel free to give the same setup a go. It's come a long way in recent weeks.</p>
]]></description><pubDate>Thu, 18 Jun 2026 07:08:41 +0000</pubDate><link>https://news.ycombinator.com/item?id=48581854</link><dc:creator>nessex</dc:creator><comments>https://news.ycombinator.com/item?id=48581854</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48581854</guid></item><item><title><![CDATA[New comment by nessex in "Redis is fast – I'll cache in Postgres"]]></title><description><![CDATA[
<p>I've got a similar setup with a k3s homelab and a bunch of small projects that need basic data storage and caching. One thing worth considering is that if someone wants to run both redis and postgres, they need to allocate enough memory for both including enough overhead that they don't suddenly OOM.<p>In that sense, seeing if the latency impact of postgres is tolerable is pretty reasonable. You may be able to get away with postgres putting things on disk (yes, redis can too), and only paying the overhead cost of allocating sufficient excess RAM to one pod rather than two.<p>But if making tradeoffs like that, for a low-traffic service in a small homelab, I do wonder if you even need a remote cache. It's always worth considering if you can just have the web server keep it's own cache in-memory or even on-disk. If using go like in the article, you'd likely only need a map and a mutex. That'd be an order of magnitude faster, and be even less to manage... Of course it's not persistent, but then neither was Redis (excl. across web server restarts).</p>
]]></description><pubDate>Fri, 26 Sep 2025 07:17:03 +0000</pubDate><link>https://news.ycombinator.com/item?id=45383709</link><dc:creator>nessex</dc:creator><comments>https://news.ycombinator.com/item?id=45383709</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45383709</guid></item><item><title><![CDATA[New comment by nessex in "M8.7 earthquake in Western Pacific, tsunami warning issued"]]></title><description><![CDATA[
<p>Sure, but if you insist it's like a tide you downplay the risk of the initial hit of the wavefronts and the potential for it to slam up the coast or a seawall becoming a larger local wave. And if you insist it's like a wave, you downplay the persistent risk of both follow-up waves and ongoing flooding that won't subside quickly.<p>So saying it's not waves is dangerous, and saying it's not a sea level rise is dangerous. It's not useful to try and delineate between a tsunami being one of the two when it's in reality an event that consists of both.<p>(Ignoring that a sea level rise and a long-wavelength wave are the same thing)</p>
]]></description><pubDate>Wed, 30 Jul 2025 06:14:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=44731300</link><dc:creator>nessex</dc:creator><comments>https://news.ycombinator.com/item?id=44731300</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44731300</guid></item><item><title><![CDATA[New comment by nessex in "M8.7 earthquake in Western Pacific, tsunami warning issued"]]></title><description><![CDATA[
<p>It's a distinction without value I think. There are waves, and many of them. There is a rise in the sea level. For anywhere affected, both certainly matter. Like you mentioned, tsunami isn't a brief event. And here in Japan, they are talking about tsunami waves, not a singular tsunami. And talking about sea level rise and checking the local power poles for sea level indicators from previous tsunami events and floods.</p>
]]></description><pubDate>Wed, 30 Jul 2025 05:40:56 +0000</pubDate><link>https://news.ycombinator.com/item?id=44731158</link><dc:creator>nessex</dc:creator><comments>https://news.ycombinator.com/item?id=44731158</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44731158</guid></item><item><title><![CDATA[New comment by nessex in "M8.7 earthquake in Western Pacific, tsunami warning issued"]]></title><description><![CDATA[
<p>There are planes, buoys and other things being mentioned on the news here in Japan as ways things are being tracked. Maybe not what you meant, but tracking the wave isn't necessarily correct. There are many waves, and the initial wave is often (in this case also) not the largest.<p>The news mentioned a previous similar event where the largest wave was 4 hours later.</p>
]]></description><pubDate>Wed, 30 Jul 2025 05:29:20 +0000</pubDate><link>https://news.ycombinator.com/item?id=44731120</link><dc:creator>nessex</dc:creator><comments>https://news.ycombinator.com/item?id=44731120</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44731120</guid></item><item><title><![CDATA[New comment by nessex in "M8.7 earthquake in Western Pacific, tsunami warning issued"]]></title><description><![CDATA[
<p>Not true. As the news reporters here in Japan are repeating every few minutes, there will be many waves and they can get bigger over time. They already have, 20-30cm initial waves had 40-60cm later waves.<p>Waves can get bigger due to earthquakes not being instantaneous or necessarily a single movement, due to amplification by geography, by reflections, by aftershocks, and many other things. The news is suggesting waves lasted about a day for a previous event in a similar area.</p>
]]></description><pubDate>Wed, 30 Jul 2025 04:59:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=44731008</link><dc:creator>nessex</dc:creator><comments>https://news.ycombinator.com/item?id=44731008</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44731008</guid></item><item><title><![CDATA[New comment by nessex in "Apple says it will add 20k jobs, spend $500B, produce AI servers in US"]]></title><description><![CDATA[
<p>If you haven't tried OpenAI's advanced voice mode, it's a mind blowing version of exactly what things like Siri really ought to become with a little more development. If that's what you mean by LLM Siri, I totally agree.<p>Being able to chat casually with low latency, correct yourself, switch languages mid-sentence, incorporate context throughout a back-and-forth conversation etc. turns talking to these kinds of systems from a painful chore into something that can actually add value.</p>
]]></description><pubDate>Mon, 24 Feb 2025 12:29:17 +0000</pubDate><link>https://news.ycombinator.com/item?id=43158751</link><dc:creator>nessex</dc:creator><comments>https://news.ycombinator.com/item?id=43158751</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43158751</guid></item><item><title><![CDATA[New comment by nessex in "How Tokyo became an anti-car paradise"]]></title><description><![CDATA[
<p>> Because there are so few of them. Most of the time you can walk in the middle of the street, so rare is the traffic<p>This is a bit of a stretch. There are cars everywhere you go in Tokyo, it's pretty well set up for driving given the size and population. That said, I've lived here without a license for years, and rarely had the need to hop into any cars. Speed limits are generally low, and lights are everywhere, which often makes the train or sometimes even a bike a faster option than a car or a bus.<p>It's only when you have multiple connections in your route or when you get well outside the city that you start to see consistent benefit from a car.<p>One reason it's so easy to get by without a car in most of Tokyo is that the shops and attractions are distributed well. Zoning means there are tiny shops everywhere, and the bigger shops are present at many of the train stations in the city. You are pretty much always within walking distance of everything essential. One more reason is that the postal system is excellent. If you order something from Amazon, you'll receive it about 24 hours later in most parts of Tokyo. Who needs a car when you pick up everything essential on a 10 minute walk from your house, and everything you want will be at your door tomorrow?</p>
]]></description><pubDate>Mon, 15 May 2023 11:07:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=35946338</link><dc:creator>nessex</dc:creator><comments>https://news.ycombinator.com/item?id=35946338</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=35946338</guid></item><item><title><![CDATA[New comment by nessex in "How Tokyo became an anti-car paradise"]]></title><description><![CDATA[
<p>I ride in Tokyo and surrounding areas often. There are bike lanes scattered around, though some places have far more than others. In general though, there is a lot of patience on the part of drivers here in the city (at least relative to Australia) that makes riding a bike on roads without a bike lane generally a fairly safe option.<p>Also, there are plenty of terraces to have a nice coffee on. The difficult thing in Tokyo is you need to search in advance for what you want. It's so crammed full of options, that you might never realize all the interesting things you're walking past. It's a very three-dimensional city, there's stuff hidden everywhere.</p>
]]></description><pubDate>Mon, 15 May 2023 10:42:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=35946123</link><dc:creator>nessex</dc:creator><comments>https://news.ycombinator.com/item?id=35946123</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=35946123</guid></item><item><title><![CDATA[New comment by nessex in "We updated our RSA SSH host key"]]></title><description><![CDATA[
<p>It's not mentioned in the blog post or keys page, but the _old_ value[1] you'll find in known_hosts is:<p><pre><code>  github.com ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ==
</code></pre>
You can search for this in your codebases, hosts etc. to see if there are any areas that need updating. The new value is linked from the blog post, you can find it here:
<a href="https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/githubs-ssh-key-fingerprints" rel="nofollow">https://docs.github.com/en/authentication/keeping-your-accou...</a><p>[1] <a href="https://github.blog/changelog/2022-01-18-githubs-ssh-host-keys-are-now-published-in-the-api/" rel="nofollow">https://github.blog/changelog/2022-01-18-githubs-ssh-host-ke...</a></p>
]]></description><pubDate>Fri, 24 Mar 2023 08:33:28 +0000</pubDate><link>https://news.ycombinator.com/item?id=35286504</link><dc:creator>nessex</dc:creator><comments>https://news.ycombinator.com/item?id=35286504</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=35286504</guid></item><item><title><![CDATA[New comment by nessex in "Resource efficient Thread Pools with Zig"]]></title><description><![CDATA[
<p>This is not the case, it measures the time between two points in the code at runtime and prints that[1].<p>[1] <a href="https://github.com/kprotty/zap/blob/blog/benchmarks/rust/rayon_qsort.rs#L14-L17" rel="nofollow">https://github.com/kprotty/zap/blob/blog/benchmarks/rust/ray...</a></p>
]]></description><pubDate>Tue, 14 Sep 2021 06:00:16 +0000</pubDate><link>https://news.ycombinator.com/item?id=28520818</link><dc:creator>nessex</dc:creator><comments>https://news.ycombinator.com/item?id=28520818</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=28520818</guid></item><item><title><![CDATA[New comment by nessex in "Scaleway announces measures against abusive Chia plotting and farming"]]></title><description><![CDATA[
<p>Most of the work happens in C++[1]<p>[1] <a href="https://github.com/Chia-Network/chiapos" rel="nofollow">https://github.com/Chia-Network/chiapos</a></p>
]]></description><pubDate>Fri, 21 May 2021 09:36:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=27232046</link><dc:creator>nessex</dc:creator><comments>https://news.ycombinator.com/item?id=27232046</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=27232046</guid></item><item><title><![CDATA[New comment by nessex in "I’ve had the same supper for 10 years"]]></title><description><![CDATA[
<p>That's pretty much the exact philosophy I live by. I've definitely found no bed frame to be a hard-sell to family and friends, and it's hard to see why once you've tried all the options. A mattress makes a lot of sense, but a bed frame adds little value unless you are short on storage and one has storage built in, or you aren't mobile enough to get to the ground. But maybe I'm missing some utility that others have found in their bedframes!<p>Living in Japan now, I had a few months with a padded mat + quilt on the floor as is tradition (and a damn cheap one), but upgraded to a mattress on the floor because the floor was too cold in winter as you mentioned.<p>There's as much to be gained from taking stuff away that isn't useful, as there is from adding useful stuff to your life.</p>
]]></description><pubDate>Sat, 08 May 2021 06:48:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=27084577</link><dc:creator>nessex</dc:creator><comments>https://news.ycombinator.com/item?id=27084577</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=27084577</guid></item><item><title><![CDATA[New comment by nessex in "I’ve had the same supper for 10 years"]]></title><description><![CDATA[
<p>Sorry if you saw my original comment, I misread this as a dismissal through exaggeration, but after double checking my comprehension I realise I was both wrong and missing the fact that I can relate to most of this.
 I've tried many of the things you mention, and while I don't do all of those things still, many of them do make my life easier and more stress free. It's interesting how many of the things I've just stopped thinking about as I tried them and subsequently rid my conscious mind of other more time consuming or stressful options.<p>There are so many better things to spend time on than the mundane parts of life.</p>
]]></description><pubDate>Sat, 08 May 2021 06:23:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=27084449</link><dc:creator>nessex</dc:creator><comments>https://news.ycombinator.com/item?id=27084449</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=27084449</guid></item><item><title><![CDATA[New comment by nessex in "I’ve had the same supper for 10 years"]]></title><description><![CDATA[
<p>I'm in Japan so I use nosh.jp. It's decent and surprisingly cheap, not much more than food from the supermarket here which is expensive regardless.</p>
]]></description><pubDate>Sat, 08 May 2021 05:43:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=27084268</link><dc:creator>nessex</dc:creator><comments>https://news.ycombinator.com/item?id=27084268</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=27084268</guid></item><item><title><![CDATA[New comment by nessex in "I’ve had the same supper for 10 years"]]></title><description><![CDATA[
<p>Right, it's about eliminating the mundane parts, not about having nothing in my life. It's a balance that will be different for everyone.</p>
]]></description><pubDate>Sat, 08 May 2021 05:42:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=27084259</link><dc:creator>nessex</dc:creator><comments>https://news.ycombinator.com/item?id=27084259</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=27084259</guid></item><item><title><![CDATA[New comment by nessex in "I’ve had the same supper for 10 years"]]></title><description><![CDATA[
<p>Yeah absolutely, that's kind of what I'm talking about. Though even then, managing different contract durations across many different companies for many different bills each month is annoying, and there are companies that can do that part for you as well. Haven't ever tried it, nor checked the cost, but it sounds like something that might be beneficial to not worry about. They can send me a summary each month to make sure I'm not spending too much.<p>The index fund investing with scheduled transfers is exactly what I meant by automated financial services. I probably micro-manage it a little too much right now for no real benefit.</p>
]]></description><pubDate>Sat, 08 May 2021 05:33:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=27084203</link><dc:creator>nessex</dc:creator><comments>https://news.ycombinator.com/item?id=27084203</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=27084203</guid></item><item><title><![CDATA[New comment by nessex in "I’ve had the same supper for 10 years"]]></title><description><![CDATA[
<p>I've found a lot of freedom in similar decisions. Not sure I could take it to the same level, but even just having a small set of meals to eat every week makes shopping, cooking and planning around expiry dates so much easier. Clothes can be similarly hacked such that everything goes together and every combination is something you are comfortable wearing, leaving you never needing to consider what to wear. I've optimised these to the point that they take up nearly zero mental space and generate no stress. In my case, I use pre-prepared frozen meal delivery service, but I know some meal preppers who find similar freedom that way. Don't cook or order anything you won't eat at any arbitrary time, and you'll never be stuck with wasted food or indecision. And for clothes I found a small set that works for me and can be worn in any given situation (except formal, though that doesn't impact me in any way).<p>I see a lot of comments that seem to see all the things you miss out on in this situation. But in my mind, it frees up a lot of mental effort, time and stress. If I ever get bored I can go to a restaurant and eat something wild and it will be all the more exciting given I don't optimize for excitement or luxury in my everyday steady-state.<p>When Soylent came out I was super excited about this idea. Don't think about three meals a day that you normally fuss over, and instead have two predictable, quick meals and optimize to make the third one amazing. Soylent was OK, and DIY soylent offered some hope too. The third meal WAS always amazing, in a relative sense, and tasted better somehow than when I had the same thing before this diet. Unfortunately liquid diets are just not satisfying to me and so frozen meals won out.<p>I'd love to find other areas of my life that can be similarly optimized. I have hope for bill management services to take the annoyance out of juggling payments  etc., and roboinvestors or similar automated financial services. Doing these things manually offers no excitement and no added value beyond the transitively provided service so I don't think they should take up my life.<p>The amount of time wasted across the whole human population on things like preparing meals, choosing outfits and managing everyday responsibilities must be huge and that is all time that could be spent doing other exciting or valuable things.</p>
]]></description><pubDate>Sat, 08 May 2021 02:50:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=27083297</link><dc:creator>nessex</dc:creator><comments>https://news.ycombinator.com/item?id=27083297</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=27083297</guid></item></channel></rss>