<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: _huayra_</title><link>https://news.ycombinator.com/user?id=_huayra_</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Wed, 10 Jun 2026 21:29:37 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=_huayra_" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by _huayra_ in "If you are useful, it doesn't mean you are valued"]]></title><description><![CDATA[
<p>The other thing I would encourage folks here to do is self-advocate.<p>We may deride the bloviations of the folks who are "all talk and no code" and how they seemingly ride the coattails of folks actually in the trenches, but honestly a lot of people do great work and sorta expect it to get "naturally noticed" in the corporate environment.<p>Not saying ditch your IDE and just throw around buzzwords in boring could've-been-an-email "sync meetings", but don't forget that demonstrating the value you have is also important and often neglected skill.<p>If a clever PR hotfix merges in the forest, does it make a sound?<p>I am telling on myself here, in a way, as this article hit hard and with great serendipity: I was part of a RIF at a well-known company this very morning, and I most definitely did not advocate very well for myself despite really holding the projects I was on together technically in the background / shadows.</p>
]]></description><pubDate>Tue, 03 Jun 2025 06:36:18 +0000</pubDate><link>https://news.ycombinator.com/item?id=44167041</link><dc:creator>_huayra_</dc:creator><comments>https://news.ycombinator.com/item?id=44167041</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44167041</guid></item><item><title><![CDATA[New comment by _huayra_ in "Compiler Explorer and the promise of URLs that last forever"]]></title><description><![CDATA[
<p>I frankly don't know how I'd collect any useful info without it.<p>I'm sure there are bookmark services that also allow notes, but the tagging, linking related things, etc, all in the app is awesome, plus the ability to export bib tex for writing a paper!</p>
]]></description><pubDate>Thu, 29 May 2025 03:37:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=44122879</link><dc:creator>_huayra_</dc:creator><comments>https://news.ycombinator.com/item?id=44122879</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44122879</guid></item><item><title><![CDATA[New comment by _huayra_ in "Zig's new LinkedList API (it's time to learn fieldParentPtr)"]]></title><description><![CDATA[
<p>At the byte level, it's quite possible the layouts are the same. However, an "intrusive data structure" means that the nodes themselves are the data.<p>In other words, intrusive is like this:<p>struct T : NodeType<T>
{
// T data
NodeType<T> <i>next, </i>prev;
};<p>whereas non-intrusive data structures the T's are <i>not</i> the nodes themselves<p>struct NodeType<T>
{
NodeType<T> <i>next, </i>prev;
T t;
};<p>Doing non-intrusive means you need to own the lifecycle of the nodes (and make them copyable, move-constructible, or some combo thereof). Intrusive means that the caller can manage the nodes' lifecycles and just say "here's a node, I promise it'll live while the list is still alive" and have that node be on the stack, heap, static, etc.</p>
]]></description><pubDate>Mon, 14 Apr 2025 21:11:39 +0000</pubDate><link>https://news.ycombinator.com/item?id=43686385</link><dc:creator>_huayra_</dc:creator><comments>https://news.ycombinator.com/item?id=43686385</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43686385</guid></item><item><title><![CDATA[New comment by _huayra_ in "Googler... ex-Googler"]]></title><description><![CDATA[
<p>Funny how they're bad at this from start to end. Most of these comments talk about the "end" part, but don't forget: Google has a notoriously laggy hiring process with extreme delays and an unacceptably high level of silence on important issues from recruiters.<p>I have been ghosted so heavily from recruiters TWICE at Google when I was literally telling them "Hey I have offers from $x and $y and I need to decide in 2 weeks. Is there any chance I can get an offer from Google beforehand?" only to receive complete silence and had to go with a different offer. 1-2 months later, the recruiter gets back to me with an offer, I have to decline.<p>The most hilarious part about it: after I decline, I get interviewed by some team at G that tries to figure out why people declined. I guess they're expecting some teachable moment, some nuance and insight. My answer both times started with "lemme show you an email thread that is very one-sided..."</p>
]]></description><pubDate>Mon, 14 Apr 2025 14:58:48 +0000</pubDate><link>https://news.ycombinator.com/item?id=43682040</link><dc:creator>_huayra_</dc:creator><comments>https://news.ycombinator.com/item?id=43682040</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43682040</guid></item><item><title><![CDATA[New comment by _huayra_ in "Zig's new LinkedList API (it's time to learn fieldParentPtr)"]]></title><description><![CDATA[
<p>At least in C++ land, that is not quite what is referred to as intrusive lists. It's basically the opposite / inside-out of what you wrote:<p>```C++
struct MyType : Node<MyType>
{
Node<MyType> <i>next, </i>prev;
// rest of data
};
```<p>I usually reach for Boost.Intrusive when I need this [0].<p>[0] <a href="https://www.boost.org/doc/libs/1_88_0/doc/html/intrusive/usage.html" rel="nofollow">https://www.boost.org/doc/libs/1_88_0/doc/html/intrusive/usa...</a></p>
]]></description><pubDate>Mon, 14 Apr 2025 14:52:39 +0000</pubDate><link>https://news.ycombinator.com/item?id=43681962</link><dc:creator>_huayra_</dc:creator><comments>https://news.ycombinator.com/item?id=43681962</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43681962</guid></item><item><title><![CDATA[New comment by _huayra_ in "Linux Kernel Defence Map – Security Hardening Concepts"]]></title><description><![CDATA[
<p>Mothy Roscoe, the Barrelfish PI, gave a really great talk at ATC 2021 [0]. A lot of OS research is basically "here's a clever way we bypassed Linux to touch hardware directly", but his argument is that the "VAX model" of hardware that Linux still uses has ossified, and CPU manufacturers have to build complexity to support that.<p>Concretely, there are a lot of things that are getting more "NOC-y" (network-on-chip). I'm not an OS expert, but deal with a lot of forthcoming features from hardware vendors at my current role. Most are abstracted as some sorta PCI device that does a little "mailbox protocol" to get some values (perhaps directly, perhaps read out of memory upon success). Examples are HSMP from AMD and OOBMSM from Intel. In both, the OS doesn't directly configure a setting, but asks some other chunk of code (provided by the CPU vendor) to configure the setting. Mothy's argument is that that is an architectural failure, and we should create OSes that can deal with this NOC-y heterogeneous architecture.<p>Even if one disagrees with Mothy's premise, this is a banger of a talk, well worth watching and easy to understand.<p>[0] <a href="https://www.usenix.org/conference/atc21/presentation/fri-keynote" rel="nofollow">https://www.usenix.org/conference/atc21/presentation/fri-key...</a></p>
]]></description><pubDate>Wed, 09 Apr 2025 15:13:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=43633064</link><dc:creator>_huayra_</dc:creator><comments>https://news.ycombinator.com/item?id=43633064</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43633064</guid></item><item><title><![CDATA[New comment by _huayra_ in "SpacetimeDB"]]></title><description><![CDATA[
<p>This is indeed interesting, but FYI this is a BSL-covered project with somewhat onerous times: only one instance per service (i.e. don't scale out, if I understand correctly) [0].<p>[0] <a href="https://github.com/ClockworkLabs/SpacetimeDB?tab=License-1-ov-file#readme">https://github.com/ClockworkLabs/SpacetimeDB?tab=License-1-o...</a></p>
]]></description><pubDate>Wed, 09 Apr 2025 14:50:44 +0000</pubDate><link>https://news.ycombinator.com/item?id=43632796</link><dc:creator>_huayra_</dc:creator><comments>https://news.ycombinator.com/item?id=43632796</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43632796</guid></item><item><title><![CDATA[New comment by _huayra_ in "Amazon introduces Nova Chat"]]></title><description><![CDATA[
<p>Still can't seem to do RAG or otherwise answer questions about a specific URL. Seems kinda useless compared to even copilot or Gemini 2.5 unless I'm missing something.<p>I asked it to summarize this thread [0] and it just said "that thread is about the monthly "who's hiring"' on HN", not even close.<p>[0] <a href="https://news.ycombinator.com/item?id=43533516">https://news.ycombinator.com/item?id=43533516</a></p>
]]></description><pubDate>Mon, 31 Mar 2025 15:18:26 +0000</pubDate><link>https://news.ycombinator.com/item?id=43536035</link><dc:creator>_huayra_</dc:creator><comments>https://news.ycombinator.com/item?id=43536035</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43536035</guid></item><item><title><![CDATA[New comment by _huayra_ in "Use Long Options in Scripts"]]></title><description><![CDATA[
<p>Thanks, this is interesting. I have done a lot of this sorta stuff (glob expanding giant directories) without a thought for this `ARG_MAX` libc parameter, but now I know I need to keep it in mind!</p>
]]></description><pubDate>Sat, 22 Mar 2025 16:54:24 +0000</pubDate><link>https://news.ycombinator.com/item?id=43447030</link><dc:creator>_huayra_</dc:creator><comments>https://news.ycombinator.com/item?id=43447030</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43447030</guid></item><item><title><![CDATA[New comment by _huayra_ in "Use Long Options in Scripts"]]></title><description><![CDATA[
<p>On my system, `getconf ARG_MAX` is over 2m.<p>I have seen some heinously long cmdline strings, but nothing close to that. Usually when invocations have creeped up into the O(1k) character limit at places I've worked, I've implemented a "yaml as cmdline args" option to just pass a config file instead.<p>Have you seen scenarios where this is actually limiting?</p>
]]></description><pubDate>Sat, 22 Mar 2025 14:54:21 +0000</pubDate><link>https://news.ycombinator.com/item?id=43446083</link><dc:creator>_huayra_</dc:creator><comments>https://news.ycombinator.com/item?id=43446083</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43446083</guid></item><item><title><![CDATA[New comment by _huayra_ in "How to Be Good at Dating"]]></title><description><![CDATA[
<p>You've definitely called me out: I currently live in an area where I can do a bunch of different hobbies year round for the most part, and happen to enjoy them.<p>I totally agree that if one goes all in for their D&D hobby, meeting women directly is not likely, but it's totally possible to connect to other people via that hobby (e.g. to the dungeon master's single female friend, etc).<p>I guess the point I was trying to make is don't singular focus on "finding a girlfriend" and then contort oneself into doing things they don't find enjoyable for extended periods (e.g. cooking classes, volunteering with pets, salsa dancing. Those are great hobbies, but too often my awkward male friends begrudgingly do those even though they hate them because they think "that's where the women are").</p>
]]></description><pubDate>Fri, 21 Mar 2025 06:40:03 +0000</pubDate><link>https://news.ycombinator.com/item?id=43432457</link><dc:creator>_huayra_</dc:creator><comments>https://news.ycombinator.com/item?id=43432457</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43432457</guid></item><item><title><![CDATA[New comment by _huayra_ in "How to Be Good at Dating"]]></title><description><![CDATA[
<p>This advice is thorough, but as the author admits a bit autistic. It approaches a relationship as a specific highly-fixated goal that requires reps / practice.<p>In general, I think any guy trying to do this is not going to find what they want.<p>I can only give my own (likely more applicable) advice to other straight men on here (which I suspect is a very high % of the users), but I would ignore much of this advice and do the following:<p>* Live your own life to the fullest. Don't even worry about dating / the apps. Just do activities you love and develop a passion (or more than one!). The apps are basically designed to mess with your psychology and the yield of your time spent on them is very low unless you are extremely attractive (not me lol!). Start rock climbing and go to a bunch of meetups for it, meet new people, and be the one who asks people (men and women) to meet up for climbing. Copy-paste this onto whatever activity you want (I've done it with skiing, climbing, mountain biking, and sailing). You will eventually meet a partner through these group activities and you won't waste any time trying to "date", and often you'll be able to vet your partner in a less intense "setting" than a date. For example, you can talk about what money "means" to each of you while walking to the crag and realize that although she might be attractive, you'll probably just fight about money all the time.<p>* As part of a full life, maintain your friendships. You need to be able to lean on your friendships to fulfill specific needs that your partner shouldn't need to or be able to do. I talk about code with my coding friends, not a girlfriend. I nerd out about sailing with my crewmates, not a girlfriend. I talk about espresso with a bunch of deep-pocketed coffee nerds on discord, not a girlfriend. Think of spending time with friends in the same way you do the gym: it might be tough to fit in on any single "session", but if you stop doing it after a while, you'll find yourself really behind the 8 ball. If you think you can't afford the time, I can almost assure you that the time spent in the company of friends will so vastly reduce your mental rumination / anxiety / depression you fight when you spend so much time alone that the "friend time" will more than "pay" for itself.<p>* Know what you want, and communicate it clearly. If you're looking for something low-key, be clear to your partner. If you are angling to get serious and move in faster, be clear about that. Most of the friction in relationships comes from when each individual is on different pages about the trajectory of where they want things to go.<p>* Talk about money. I see so many couples don't do this and perpetually fight over things that come down to "what does money mean to you?". For example, if your partner gets a tax refund and thinks "oh boy! let me buy a new computer" while you think "give me my interest-free loan back, US government, so I can shove this into an index fund and have greater financial security to tell my employer to kick rocks if things get too terrible", you're gonna have problems reconciling that unless you're very explicit.<p>* Table stakes are similar to the article though: stay fit, eat well, avoid mental numbing mechanism and substance abuse</p>
]]></description><pubDate>Thu, 20 Mar 2025 20:12:18 +0000</pubDate><link>https://news.ycombinator.com/item?id=43428323</link><dc:creator>_huayra_</dc:creator><comments>https://news.ycombinator.com/item?id=43428323</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43428323</guid></item><item><title><![CDATA[New comment by _huayra_ in "SoftBank Group to Acquire Ampere Computing for 6.5B"]]></title><description><![CDATA[
<p>Even if Ampere could afford to undercut the internal development of these hyperscalar ARM chips (which to my knowledge they cannot), there is more value in in-housing ARM chips like Amazon / Microsoft are doing: you can more easily try out wacky ideas in chip / firmware design.<p>Often times these companies might have an idea for how to save power / tweak cores in a weird way on a CPU, but have a chicken-and-egg problem with not knowing exactly how much it'll reduce COGS. Not knowing that and having to negotiate with a vendor (who will often want to charge more for the feature) means that it's difficult to do unless it's an obvious slam-dunk.<p>By bringing chip development in-house, adding new features skews more towards a political decision that requires less rigorous financial calculations (e.g. "how much power will this save relative to the vendor_cost++ and our own developer cost?" for 3rd-party chips). It basically allows these cloud providers to ship new features more quickly in their CPUs.</p>
]]></description><pubDate>Thu, 20 Mar 2025 15:11:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=43424493</link><dc:creator>_huayra_</dc:creator><comments>https://news.ycombinator.com/item?id=43424493</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43424493</guid></item><item><title><![CDATA[New comment by _huayra_ in "A bear case: My predictions regarding AI progress"]]></title><description><![CDATA[
<p>Ultimately, every AI thing I've tried in this era seems to want to make me happy, even if it's wrong, instead of helping me.<p>I describe it like "an eager intern who can summarize a 20-min web search session instantly, but ultimately has insufficient insight to actually help you". (Note to current interns: I'm mostly describing myself some years ago; you may be fantastic so don't take it personally!)<p>Most of my interactions with it via text prompt or builtin code suggestions go like this:<p>1. Me: I want to do X in C++. Show me how to do it only using stdlib components (no external libraries).<p>2. LLM: Gladly! Here is solution X<p>3. Me: Remove the undefined behavior from foo() and fix the methods that call it<p>4. LLM: Sure! Here it is (produces solution X again)<p>5. Me: No you need to remove the use of uninitialized variables as the out parameters.<p>6. LLM: Oh certainly! Here is the correct solution (produces a completely different solution that also has issues)<p>7. Me: No go back to the first one<p>etc<p>For the ones that suggest code, it can at least suggest some very simple boilerplate very easily (e.g. gtest and gmock stuff for C++), but asking it to do anything more significant is a real gamble. Often I end up spending more time scrutinizing the suggested code than writing a version of it myself.</p>
]]></description><pubDate>Mon, 10 Mar 2025 15:03:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=43321451</link><dc:creator>_huayra_</dc:creator><comments>https://news.ycombinator.com/item?id=43321451</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43321451</guid></item><item><title><![CDATA[New comment by _huayra_ in "Volkswagen reintroducing physical controls for vital functions"]]></title><description><![CDATA[
<p>I remember reading that book when it clicked how frustrating the doors at my grad school uni could be: they had what is clearly a "pull" handle on both sides, but it only opened one way. They just added signs that said "Poussez" (push in French) on the push side because clearly no one thought about the design before installing it! It's unbelievable in the decades since that building my office was in was built, no one thought "hey let's put plates on this side so you CAN'T pull".</p>
]]></description><pubDate>Sun, 09 Mar 2025 05:58:36 +0000</pubDate><link>https://news.ycombinator.com/item?id=43306651</link><dc:creator>_huayra_</dc:creator><comments>https://news.ycombinator.com/item?id=43306651</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43306651</guid></item><item><title><![CDATA[New comment by _huayra_ in "Executive wealth as a factor in return-to-office"]]></title><description><![CDATA[
<p>> Yes it's still better to talk to people next to a physical whiteboard, but it only matters very occasionally.<p>Though I love a good whiteboard sess, a tablet with a stylus and one of many "interactive whiteboard applications" can also be pretty useful. Hard to have a whiteboard session good enough to compensate for the grueling traffic of most HCOL regions a good portion of us likely work in.</p>
]]></description><pubDate>Mon, 03 Mar 2025 16:43:58 +0000</pubDate><link>https://news.ycombinator.com/item?id=43243624</link><dc:creator>_huayra_</dc:creator><comments>https://news.ycombinator.com/item?id=43243624</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43243624</guid></item><item><title><![CDATA[New comment by _huayra_ in "Show HN: I built a modern Goodreads alternative"]]></title><description><![CDATA[
<p>They switched to a non-free license about 6 months ago [0]. This is not just the usual BSL terms of "do not compete with our hosted offering, but use it in your own product without issue", but they mandate telemetry from the free version.<p>Oxide and Friends did a great episode on it at the time [1].<p>[0] <a href="https://www.cockroachlabs.com/docs/stable/licensing-faqs" rel="nofollow">https://www.cockroachlabs.com/docs/stable/licensing-faqs</a><p>[1] <a href="https://oxide-and-friends.transistor.fm/episodes/whither-cockroachdb" rel="nofollow">https://oxide-and-friends.transistor.fm/episodes/whither-coc...</a></p>
]]></description><pubDate>Sun, 02 Mar 2025 16:14:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=43231912</link><dc:creator>_huayra_</dc:creator><comments>https://news.ycombinator.com/item?id=43231912</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43231912</guid></item><item><title><![CDATA[New comment by _huayra_ in "Why aren't we losing our minds over the plastic in our brains?"]]></title><description><![CDATA[
<p>Another bonus: at least for bamboo, it has antimicrobial properties compared to plastic, which tends to have all sorts of difficult-to-clean grooves for bacteria to hide in.</p>
]]></description><pubDate>Sat, 15 Feb 2025 19:09:47 +0000</pubDate><link>https://news.ycombinator.com/item?id=43061277</link><dc:creator>_huayra_</dc:creator><comments>https://news.ycombinator.com/item?id=43061277</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43061277</guid></item><item><title><![CDATA[New comment by _huayra_ in "Why aren't we losing our minds over the plastic in our brains?"]]></title><description><![CDATA[
<p>Another easy thing to do is to prefer clothes with natural fiber types (cotton, wool, etc). A lot of the particulates in one's home are generated from just the abrasion of your clothing as you move around. When those are natural particulates instead of synthetic, you'll end up inhaling a lot less.<p>Related is improving airflow and vacuuming regularly so that these particles don't accumulate as much.</p>
]]></description><pubDate>Sat, 15 Feb 2025 19:08:11 +0000</pubDate><link>https://news.ycombinator.com/item?id=43061262</link><dc:creator>_huayra_</dc:creator><comments>https://news.ycombinator.com/item?id=43061262</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43061262</guid></item><item><title><![CDATA[New comment by _huayra_ in "SQL pipe syntax available in public preview in BigQuery"]]></title><description><![CDATA[
<p>Many such things from F# come from Haskell (given the influence from MSR UK, specifically Simon Peyton Jones before he left a few years ago), so likely Haskell or earlier imo (at least in terms of "complex" "pipe" operations that have higher-level operations than "bytes in, bytes out" of Unix).</p>
]]></description><pubDate>Thu, 13 Feb 2025 14:38:03 +0000</pubDate><link>https://news.ycombinator.com/item?id=43036240</link><dc:creator>_huayra_</dc:creator><comments>https://news.ycombinator.com/item?id=43036240</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43036240</guid></item></channel></rss>