<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: ibgeek</title><link>https://news.ycombinator.com/user?id=ibgeek</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Thu, 09 Apr 2026 15:42:14 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=ibgeek" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by ibgeek in "ARM AGI CPU: Specs and SKUs"]]></title><description><![CDATA[
<p>Yes, but they function as sister companies right now rather than one company.</p>
]]></description><pubDate>Tue, 24 Mar 2026 20:31:38 +0000</pubDate><link>https://news.ycombinator.com/item?id=47508752</link><dc:creator>ibgeek</dc:creator><comments>https://news.ycombinator.com/item?id=47508752</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47508752</guid></item><item><title><![CDATA[New comment by ibgeek in "ARM AGI CPU: Specs and SKUs"]]></title><description><![CDATA[
<p>Agreed.  The ARM AGI CPU supports a newer version of the vectorized instructions and has matrix math extensions that the AmpereOne M doesn’t. Also has almost twice the memory bandwidth. One paper at least, the AGI CPU seems like a better choice for AI workloads.  Ampere is really pushing the AI workload use cases for the AmpereOne M, so this really makes their lives a lot harder.</p>
]]></description><pubDate>Tue, 24 Mar 2026 20:31:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=47508746</link><dc:creator>ibgeek</dc:creator><comments>https://news.ycombinator.com/item?id=47508746</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47508746</guid></item><item><title><![CDATA[New comment by ibgeek in "Nvidia Launches Vera CPU, Purpose-Built for Agentic AI"]]></title><description><![CDATA[
<p>I own one of these systems.  My interpretation is the Ampere systems are targeted at lower cost scale out.  The Ampere Altra CPUs are limited to DDR4.  The raw single core performance doesn’t match Intel or AMD offerings.  You get a lot of cores for a lower hardware cost and at lower energy usage.<p>The Nvidia CPUs are designed for a very specific use case.  They are designed for high performance with less concern about cost control.<p>The newer AmpereOne CPUs use DDR5 with the AmpereOne M supporting even higher memory bandwidth.  Even then, I doubt the AmpereOne CPUs will match the performance of the Nvidia Rubin CPUs.  But the Ampere processors are available for general use.  I am guessing that Nvidia is only going to sell the complete rack system and only to high-volume customers.</p>
]]></description><pubDate>Tue, 17 Mar 2026 04:31:04 +0000</pubDate><link>https://news.ycombinator.com/item?id=47408633</link><dc:creator>ibgeek</dc:creator><comments>https://news.ycombinator.com/item?id=47408633</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47408633</guid></item><item><title><![CDATA[New comment by ibgeek in "Launch HN: IonRouter (YC W26) – High-throughput, low-cost inference"]]></title><description><![CDATA[
<p>Since you are very focused on specific Nvidia hardware, I wonder if Nvidia would either buy you out to benefit from your tech or implement their own version without your involvement.  Seems risky to me as a potential customer.</p>
]]></description><pubDate>Thu, 12 Mar 2026 23:42:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=47358845</link><dc:creator>ibgeek</dc:creator><comments>https://news.ycombinator.com/item?id=47358845</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47358845</guid></item><item><title><![CDATA[New comment by ibgeek in "D Programming Language"]]></title><description><![CDATA[
<p>I used to think of D as the same category as C# and Java, but I realized that it has two important differences.  (I am much more experienced with Java/JVM than C#/.Net, so this may not all apply.)<p>1. Very load overhead calling of native libraries.  Wrapping native libraries from Java using JNI requires quite a bit of complex code, configuring the build system, and the overhead of the calls.  So, most projects only use libraries written in a JVM-language -- the integration is not nearly as widespread as seen in the Python world.  The Foreign Function and Memory (FFM) API is supposed to make this a lot easier and faster.  We'll see if projects start to integrate native libraries more frequently.  My understanding is that foreign function calls in Go are also expensive.<p>2. Doesn't require a VM.  Java and C# require a VM.  D (like Go) generate native binaries.<p>As such, D is a really great choice when you need to write glue code around native libraries.  D makes it easy, the calls are low overhead, and there isn't much need for data marshaling and un-marshaling because the data type representations are consistent.  D has lower cognitive overhead, more guardrails  (which are useful when quickly prototyping code), and a faster / more convenient  compile-debug loop, especially wrt to C++ templates versus D generics.</p>
]]></description><pubDate>Fri, 13 Feb 2026 02:12:18 +0000</pubDate><link>https://news.ycombinator.com/item?id=46998092</link><dc:creator>ibgeek</dc:creator><comments>https://news.ycombinator.com/item?id=46998092</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46998092</guid></item><item><title><![CDATA[New comment by ibgeek in "Ask HN: What are the recommender systems papers from 2024-2025?"]]></title><description><![CDATA[
<p>The ACM Recommender Systems conference is one of the leading venues in the field.  You might check out what papers were accepted for the 2024 and 2025 conferences:<p><a href="https://recsys.acm.org/" rel="nofollow">https://recsys.acm.org/</a></p>
]]></description><pubDate>Wed, 21 Jan 2026 02:23:02 +0000</pubDate><link>https://news.ycombinator.com/item?id=46700418</link><dc:creator>ibgeek</dc:creator><comments>https://news.ycombinator.com/item?id=46700418</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46700418</guid></item><item><title><![CDATA[New comment by ibgeek in "Rust's Block Pattern"]]></title><description><![CDATA[
<p>This seems like a great way to group semantically-related statements, reduce variable leakage, and reduce the potential to silently introduce additional dependencies on variables.  Seems lighter weight (especially from a cognitive load perspective) than lambdas.  Appropriate for when there is a single user of the block -- avoids polluting the namespace with additional functions.  Can be easily turned into a separate function once there are multiple users.</p>
]]></description><pubDate>Fri, 19 Dec 2025 20:54:39 +0000</pubDate><link>https://news.ycombinator.com/item?id=46330787</link><dc:creator>ibgeek</dc:creator><comments>https://news.ycombinator.com/item?id=46330787</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46330787</guid></item><item><title><![CDATA[New comment by ibgeek in "The universal weight subspace hypothesis"]]></title><description><![CDATA[
<p>They are analyzing models trained on classification tasks.  At the end of the day, classification is about (a) engineering features that separate the classes and (b) finding a way to represent the boundary.  It's not surprising to me that they would find these models can be described using a small number of dimensions and that they would observe similar structure across classification problems.  The number of dimensions needed is basically a function of the number of classes.  Embeddings in 1 dimension can linearly separate 2 classes, 2 dimensions can linearly separate 4 classes, 3 dimensions can linearly separate 8 classes, etc.</p>
]]></description><pubDate>Tue, 09 Dec 2025 01:42:28 +0000</pubDate><link>https://news.ycombinator.com/item?id=46200314</link><dc:creator>ibgeek</dc:creator><comments>https://news.ycombinator.com/item?id=46200314</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46200314</guid></item><item><title><![CDATA[New comment by ibgeek in "MinIO is now in maintenance-mode"]]></title><description><![CDATA[
<p>Time to fork and bring back removed features.  :). An advantage of it being AGPL licensed.</p>
]]></description><pubDate>Wed, 03 Dec 2025 17:35:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=46137413</link><dc:creator>ibgeek</dc:creator><comments>https://news.ycombinator.com/item?id=46137413</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46137413</guid></item><item><title><![CDATA[New comment by ibgeek in "Arduino published updated terms and conditions: no longer an open commons"]]></title><description><![CDATA[
<p>Maybe two different things here: SBCs that run Linux versus microcontrollers (MCUs).<p>MCUs are lower power, have less overhead, and can perform hard real-time tasks.  Most of what Arduino focuses on are MCUs.  The equivalent is the Raspberry Pi Pico.<p>In my experience, the key thing is the library ecosystem for the C++ runtime environment.  There are a large number of Arduino and third-party high-level libraries provided through their package management system that make it really easy to use sensors and other hardware without needing to write intermediate level code that uses SPI or I2C.  And it all integrates and works together.  The Pico C/C++ SDK is lower level and doesn’t have a good library / package management story, so you have to read vendor data sheets to figure out how to communicate with hardware and then write your own libraries.<p>It’s much more common for less experienced users to use MicroPython.  It has a package management and library ecosystem.  But it’s also harder to write anything of any complexity that fits within the small RAM available without calling gc.collect() in every other line.</p>
]]></description><pubDate>Fri, 21 Nov 2025 18:39:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=46007434</link><dc:creator>ibgeek</dc:creator><comments>https://news.ycombinator.com/item?id=46007434</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46007434</guid></item><item><title><![CDATA[New comment by ibgeek in "Feature Extraction with KNN"]]></title><description><![CDATA[
<p>I'm not sure if I'm understanding correctly, but it reminds me of the kernel trick.  The distances between the training samples and a target sample are computed, the distances are scaled through a kernel function, and the scaled distances are used as features.<p><a href="https://en.wikipedia.org/wiki/Kernel_method" rel="nofollow">https://en.wikipedia.org/wiki/Kernel_method</a></p>
]]></description><pubDate>Sun, 16 Nov 2025 00:59:42 +0000</pubDate><link>https://news.ycombinator.com/item?id=45941845</link><dc:creator>ibgeek</dc:creator><comments>https://news.ycombinator.com/item?id=45941845</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45941845</guid></item><item><title><![CDATA[New comment by ibgeek in "Show HN: DBOS Java – Postgres-Backed Durable Workflows"]]></title><description><![CDATA[
<p>I really wish you guys would change the name since the product has moved so far away from the goals and concepts in the original publication.  :). I love the product and what you are doing -- it's definitely needed and valuable.</p>
]]></description><pubDate>Fri, 14 Nov 2025 01:51:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=45922951</link><dc:creator>ibgeek</dc:creator><comments>https://news.ycombinator.com/item?id=45922951</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45922951</guid></item><item><title><![CDATA[New comment by ibgeek in "Bcachefs Goes to "Externally Maintained""]]></title><description><![CDATA[
<p>This isn’t BTRFS</p>
]]></description><pubDate>Sat, 30 Aug 2025 18:08:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=45076793</link><dc:creator>ibgeek</dc:creator><comments>https://news.ycombinator.com/item?id=45076793</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45076793</guid></item><item><title><![CDATA[New comment by ibgeek in "Ask HN: What are the biggest PITAs about managing VMs and containers?"]]></title><description><![CDATA[
<p>Thanks!  I’ll take a look at quadlet.<p>I find that I tend to package one-off tasks as containers as well.  For example, create database tables and users.  Compose supports these sort of things.  Ansible actually makes it easy to use and block on container tasks that you don’t detach.<p>I’m not interested in running kubernetes, even locally.</p>
]]></description><pubDate>Thu, 09 Jan 2025 04:00:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=42641471</link><dc:creator>ibgeek</dc:creator><comments>https://news.ycombinator.com/item?id=42641471</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42641471</guid></item><item><title><![CDATA[New comment by ibgeek in "Ask HN: What are the biggest PITAs about managing VMs and containers?"]]></title><description><![CDATA[
<p>Ok one more to add that is a kind-of an abuse of containers:  Some compute cluster solutions (like those used for HPC) are using containers to manage software installations on the clusters.  They are trying to unify containers with the standard Unix environment, however, so that users still see their home directory (mounted in the container) and other paths so that running applications in the container is the same experience as running it directly on the host OS.  This is just a TERRIBLE solution.  I much prefer Environment Modules or something like Python's virtual environments (if it worked for arbitrary software installs) as a solution.<p><a href="https://en.wikipedia.org/wiki/Environment_Modules_(software)" rel="nofollow">https://en.wikipedia.org/wiki/Environment_Modules_(software)</a></p>
]]></description><pubDate>Wed, 08 Jan 2025 21:47:44 +0000</pubDate><link>https://news.ycombinator.com/item?id=42638802</link><dc:creator>ibgeek</dc:creator><comments>https://news.ycombinator.com/item?id=42638802</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42638802</guid></item><item><title><![CDATA[New comment by ibgeek in "Ask HN: What are the biggest PITAs about managing VMs and containers?"]]></title><description><![CDATA[
<p>One of the goals of containers are to unify the development and deployment environments.  I hate developing and testing code in containers, so I develop and test code outside them and then package and test it again in a container.<p>Containerized apps need a lot of special boilerplate to determine how much CPU and memory they are allowed to use.  It’s a lot easier to control resource limits with virtual machines because the application in the system resources are all dedicated to the application.<p>Orchestration of multiple containers for dev environments is just short of feature complete.  With Compose, it’s hard to bring down specific services and their dependencies so you can then rebuild and rerun.  I end up writing Ansible playbooks to start and stop components that are designed to be executed in particular sequences.  Ansible makes it hard to detach a container, wait a specified time, and see if it’s running.  Compose just needs to be updated to support management of shutting down and restarting containers, so I can move away from Ansible.<p>Services like Kafka that query the host name and broadcast it are difficult to containerize since the host name inside the container doesn’t match the external host name.  Requires manual overrides which are hard to specify at run time because the orchestrators don’t make it easy to pass in the host name to the container.  (This is more of a Kafka issue, though.)</p>
]]></description><pubDate>Wed, 08 Jan 2025 21:06:16 +0000</pubDate><link>https://news.ycombinator.com/item?id=42638434</link><dc:creator>ibgeek</dc:creator><comments>https://news.ycombinator.com/item?id=42638434</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42638434</guid></item><item><title><![CDATA[How WFH Can Strengthen Bonds Between Coworkers]]></title><description><![CDATA[
<p>Article URL: <a href="https://hbr.org/2024/11/research-how-wfh-can-actually-strengthen-bonds-between-coworkers">https://hbr.org/2024/11/research-how-wfh-can-actually-strengthen-bonds-between-coworkers</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=42638275">https://news.ycombinator.com/item?id=42638275</a></p>
<p>Points: 3</p>
<p># Comments: 0</p>
]]></description><pubDate>Wed, 08 Jan 2025 20:47:36 +0000</pubDate><link>https://hbr.org/2024/11/research-how-wfh-can-actually-strengthen-bonds-between-coworkers</link><dc:creator>ibgeek</dc:creator><comments>https://news.ycombinator.com/item?id=42638275</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42638275</guid></item><item><title><![CDATA[New comment by ibgeek in "Should you ditch Spark for DuckDB or Polars?"]]></title><description><![CDATA[
<p>Good write up.  The only real bias I can detect is that the author seems to conflate their (lack of) familiarity with ease of use.  I bet if they spent a few months using DuckDB and Polars on a daily basis, they might find some of the tasks just as easy or easier to implement.</p>
]]></description><pubDate>Sun, 15 Dec 2024 22:03:14 +0000</pubDate><link>https://news.ycombinator.com/item?id=42426288</link><dc:creator>ibgeek</dc:creator><comments>https://news.ycombinator.com/item?id=42426288</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42426288</guid></item><item><title><![CDATA[New comment by ibgeek in "8 months of OCaml after 8 years of Haskell in production (2023)"]]></title><description><![CDATA[
<p>The Meta post is particularly interesting.  Thanks for sharing!</p>
]]></description><pubDate>Thu, 05 Dec 2024 03:36:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=42324671</link><dc:creator>ibgeek</dc:creator><comments>https://news.ycombinator.com/item?id=42324671</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42324671</guid></item><item><title><![CDATA[New comment by ibgeek in "8 months of OCaml after 8 years of Haskell in production (2023)"]]></title><description><![CDATA[
<p>I think the title is misleading.  This isn't really about either language in production environments.  As other commenters mentioned, a post about production would cover topics like whether there were any tooling / dependency updates that broke a build, whether they encountered any noticeable bugs in production caused by libraries / run time, and how efficiently the run times handle high load (e.g., with GC).<p>This is more about syntax differences.  Even then, I'd be curious how well both languages accommodate themselves to teams and long term projects.  In both cases, you will have multiple people working on parts of the code base.  Are people able to read and modify code they haven't written -- for example, when fixing bugs?  When incorporating new sub components, how well did the type systems prevent errors due to refactoring?  It would be interesting to know if Haskell prevents a number of practical problems that occurred with OCaml or if, in practice, there was no difference for the types of bugs they encountered.<p>This blog post feels more like someone is comparing basic language features found in reviews for new users rather than sharing deep experience and gotchas that only come from long-term use.</p>
]]></description><pubDate>Tue, 03 Dec 2024 23:45:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=42312985</link><dc:creator>ibgeek</dc:creator><comments>https://news.ycombinator.com/item?id=42312985</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42312985</guid></item></channel></rss>