<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: status_quo69</title><link>https://news.ycombinator.com/user?id=status_quo69</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Wed, 10 Jun 2026 21:54:05 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=status_quo69" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by status_quo69 in "Driver accused of DUI tracks missing laptop to Illinois State trooper's house"]]></title><description><![CDATA[
<p>Two things can be true:
- police should enforce the law to reduce or address crime or infractions
- police should have a standard of enforcement that corresponds with the way the court system should operate, which is that the state carries the burden of proving the crime<p>The right to demand a blood test or other mechanism of having the state own the burden of proof might be inconvenient but it's integral to a fairly operating system, just like the right to demand a lawyer or representation.</p>
]]></description><pubDate>Mon, 11 May 2026 14:48:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=48095729</link><dc:creator>status_quo69</dc:creator><comments>https://news.ycombinator.com/item?id=48095729</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48095729</guid></item><item><title><![CDATA[New comment by status_quo69 in "MinIO repository is no longer maintained"]]></title><description><![CDATA[
<p>I've been looking into rclone which can serve s3 in a basic way <a href="https://rclone.org/commands/rclone_serve_s3/" rel="nofollow">https://rclone.org/commands/rclone_serve_s3/</a></p>
]]></description><pubDate>Fri, 13 Feb 2026 13:53:39 +0000</pubDate><link>https://news.ycombinator.com/item?id=47002723</link><dc:creator>status_quo69</dc:creator><comments>https://news.ycombinator.com/item?id=47002723</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47002723</guid></item><item><title><![CDATA[New comment by status_quo69 in "How I fell in love with Erlang"]]></title><description><![CDATA[
<p>This is such a conflicting comment for me because I agree with so much but also have so many quibbles. That said I think that the other comments cover most things, I'll just comment on b: I don't think this is a problem that a language should solve or needs to solve, since there is a new flavor of the week of network protocols every few years. off the top of my head<p>- REST (mentioned, but what kind of REST? Rails style REST? Just plain http resource endpoints?
- GraphQL (mentioned)
- gRPC
- SOAP
- JSON-RPC
- Thrift
- CGI (ok not really in the same category as the above)
- Some weird adhoc thing someone created at 3am for "efficiency"<p>I'm actually fine with most languages deferring to their respective communities, maybe building on core libs like <a href="https://www.erlang.org/docs/17/apps/inets/http_client" rel="nofollow">https://www.erlang.org/docs/17/apps/inets/http_client</a> to handle the transport layer.<p>As an aside, funnily enough you can get JVM <-> BEAM interop via <a href="https://www.erlang.org/doc/apps/jinterface/jinterface_users_guide.html" rel="nofollow">https://www.erlang.org/doc/apps/jinterface/jinterface_users_...</a> I don't necessarily recommend it but it's possible</p>
]]></description><pubDate>Wed, 12 Nov 2025 01:04:23 +0000</pubDate><link>https://news.ycombinator.com/item?id=45895182</link><dc:creator>status_quo69</dc:creator><comments>https://news.ycombinator.com/item?id=45895182</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45895182</guid></item><item><title><![CDATA[New comment by status_quo69 in "Doing Rails Wrong"]]></title><description><![CDATA[
<p>Correct me if I'm wrong but I believe you're interpreting this as if the rails app needs the same amount of is that exists in the described vite solution.<p>But in reality if you're using hotwire you can get away with almost no JavaScript at all comparatively. That's why stimulus is in vanilla js generally, it's meant for sprinkling behavior onto the dom vs controlling the dom.<p>So if you don't have a js framework that needs to control the whole Dom and doesn't need a gigantic optimization step or tree shaking or typescript or whatever, you can get away with a whole lot less than it you embraced those frameworks that _do_ want to own the dom wholesale.</p>
]]></description><pubDate>Tue, 07 Oct 2025 19:29:11 +0000</pubDate><link>https://news.ycombinator.com/item?id=45507678</link><dc:creator>status_quo69</dc:creator><comments>https://news.ycombinator.com/item?id=45507678</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45507678</guid></item><item><title><![CDATA[New comment by status_quo69 in "The Theatre of Pull Requests and Code Review"]]></title><description><![CDATA[
<p>You can and should break that up because I'm probably going to want to see screenshots to ensure that the branding changes make sense in context and everything looks consistent.<p>How would you do this? You'd either<p>1. Create N pull requests then merge all of them together into a big PR that would get merged into mainline at once
2. Do the same thing but do a bit of octopus merging since git merge can take multiple branches as arguments. Since most source control strategies are locked down, this isn't usually something that I can tell my juniors to do<p>The point of breaking things down like this is to minimize reviewer context. With bigger PRs there's a human tendency to try and hold the whole thing in your head at once, even if parts of the pull request are independent from others.</p>
]]></description><pubDate>Thu, 25 Sep 2025 16:39:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=45375107</link><dc:creator>status_quo69</dc:creator><comments>https://news.ycombinator.com/item?id=45375107</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45375107</guid></item><item><title><![CDATA[New comment by status_quo69 in "Past, present, and future of Sorbet type syntax"]]></title><description><![CDATA[
<p>One thing that I've wondered is why sorbet didn't choose to use the stabby lambda syntax to denote function signatures?<p><pre><code>  sig ->(_: MyData) { }
  def self.example(my_data)
    ...
  end
</code></pre>
Obviously this opens up a potential can of worms of a dynamic static type system, but it looks sufficiently close enough to just ruby. My opinion is that sorbet doesn't lean into the weirdness of ruby enough, so while it has the potential to be an amazingly productive tool, this is the same community that (mostly) embraces multiple ways of doing things for aesthetic purposes. For example you could get the default values of the lambda above to determine the types of the args by calling the lambda with dummy values and capturing via binding.<p>Personally having written ruby/rails/c#/etc and having been on a dev productivity team myself, I say: lean into the weird shit and make a dsl for this since that's what it wants to be anyways. People will always complain, especially with ruby/rails.</p>
]]></description><pubDate>Fri, 09 May 2025 20:59:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=43940810</link><dc:creator>status_quo69</dc:creator><comments>https://news.ycombinator.com/item?id=43940810</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43940810</guid></item><item><title><![CDATA[New comment by status_quo69 in "Statewide fluoride ban for tap water passes in Florida"]]></title><description><![CDATA[
<p><a href="https://pmc.ncbi.nlm.nih.gov/articles/PMC2925001/" rel="nofollow">https://pmc.ncbi.nlm.nih.gov/articles/PMC2925001/</a><p>Not everyone has impeccable brushing habits and reducing cavities is a net benefit to public health like sanitation departments. I would be more interested to see a source as to why you think there's no benefit to fluorinated water when there are studies that are a quick search away for fluorinated water.</p>
]]></description><pubDate>Wed, 30 Apr 2025 12:52:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=43844501</link><dc:creator>status_quo69</dc:creator><comments>https://news.ycombinator.com/item?id=43844501</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43844501</guid></item><item><title><![CDATA[New comment by status_quo69 in "DOGE puts $1 spending limit on government employee credit cards"]]></title><description><![CDATA[
<p>Not sure why you're being confrontational? I'm not the OP but it's clear there's some misunderstanding<p>The quote is:
- neat
- plausible
- wrong<p>"Just get rid of the cancer" is
- neat because it sounds obvious and tidy
- plausible because we can and do cut out cancer
- wrong because it ignores the nuance that cutting into a patient's body can have massive impacts on long term health. It can also be wrong because certain cancers have no tumor sites.</p>
]]></description><pubDate>Fri, 21 Feb 2025 03:21:21 +0000</pubDate><link>https://news.ycombinator.com/item?id=43123648</link><dc:creator>status_quo69</dc:creator><comments>https://news.ycombinator.com/item?id=43123648</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43123648</guid></item><item><title><![CDATA[New comment by status_quo69 in "TrunkVer"]]></title><description><![CDATA[
<p>Generally agree with your points about how semver isn't really necessary. I suppose the benefit here would be that dep management tools like dependabot could automatically raise pull requests when a new version is released, which would be pretty cool. If only my peer engineers actually paid attention to dependency updates.<p>As an aside, instead of an auto incrementing build number I'd suggest the git sha since it's:
1. Already there and points to a specific version of the code in the repo
2. Globally unique
3. Can assist with reproducible builds (i.e. 6afed54 was acting weird, let's build it locally and take a look)
4. Gives you an easy diff target to dump "release notes". Just diff to the previous and dump the merge commit messages.</p>
]]></description><pubDate>Thu, 28 Nov 2024 01:31:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=42261532</link><dc:creator>status_quo69</dc:creator><comments>https://news.ycombinator.com/item?id=42261532</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42261532</guid></item><item><title><![CDATA[New comment by status_quo69 in "Optimize Database Performance in Ruby on Rails and ActiveRecord"]]></title><description><![CDATA[
<p>If you're encountering these problems at scale where scale is up to the reader, I can promise you that you're already writing SQL. You might have already started from the beginning by writing direct SQL, because that's something that rails also allows you to do against a model. Apart from juniors, I don't think I've ever met anyone who actually said that they wanted to avoid writing SQL in all cases. The reality is that it's far more useful and efficient to burn cpu time than dev time, and ORMs general tend towards the latter than the former in the favor of generally being a fair bit more legible (depending on the writer).</p>
]]></description><pubDate>Sat, 09 Nov 2024 13:49:15 +0000</pubDate><link>https://news.ycombinator.com/item?id=42094404</link><dc:creator>status_quo69</dc:creator><comments>https://news.ycombinator.com/item?id=42094404</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42094404</guid></item><item><title><![CDATA[New comment by status_quo69 in "Show HN: Kameo – Fault-tolerant async actors built on Tokio"]]></title><description><![CDATA[
<p>I actually went through this exact exercise recently, but this library didn't show up in my searches for a good rust actor framework, so take that with a grain of salt. It looks very similar to the interface provided by actix at first blush, not sure how supervision works. My take is that most of these frameworks tend to solve with the same(ish) solution, so pick the one that has the best api. I liked ractor, although not having &mut self eventually wore me down. I swapped a small side project to use Stakker instead and while at first the macros intimidated me, the implementation really impressed me in terms of performance and API characteristics. It really feels like there's just enough there and no more.</p>
]]></description><pubDate>Thu, 03 Oct 2024 00:09:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=41726111</link><dc:creator>status_quo69</dc:creator><comments>https://news.ycombinator.com/item?id=41726111</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41726111</guid></item><item><title><![CDATA[New comment by status_quo69 in "Can ketones enhance cognitive function and protect brain networks?"]]></title><description><![CDATA[
<p>This is somewhat anecdotal as well, but what I find interesting reading this is that a possible treatment for epilepsy that's tried is the keto diet. Going through this with a family member now, the doctors have recommended only if the first line medicine doesn't work because it's such a pain in the ass to maintain if you're not fully into the world of meal prep (doc's words, not mine).</p>
]]></description><pubDate>Sat, 01 Jun 2024 23:16:39 +0000</pubDate><link>https://news.ycombinator.com/item?id=40549942</link><dc:creator>status_quo69</dc:creator><comments>https://news.ycombinator.com/item?id=40549942</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40549942</guid></item><item><title><![CDATA[New comment by status_quo69 in "Go, Containers, and the Linux Scheduler"]]></title><description><![CDATA[
<p><a href="https://stackoverflow.com/questions/65551215/get-docker-cpu-memory-limit-inside-container" rel="nofollow noreferrer">https://stackoverflow.com/questions/65551215/get-docker-cpu-...</a><p>Been a bit but I do believe that dotnet does this exact behavior. Sounds like gunicorn needs a pr to mimic, if they want to replicate this.<p><a href="https://github.com/dotnet/runtime/issues/8485">https://github.com/dotnet/runtime/issues/8485</a></p>
]]></description><pubDate>Tue, 07 Nov 2023 21:53:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=38183445</link><dc:creator>status_quo69</dc:creator><comments>https://news.ycombinator.com/item?id=38183445</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=38183445</guid></item><item><title><![CDATA[New comment by status_quo69 in "Elixir and Phoenix can do it all"]]></title><description><![CDATA[
<p>Elixir is strongly typed, elixir is not statically typed</p>
]]></description><pubDate>Sat, 28 Oct 2023 21:32:28 +0000</pubDate><link>https://news.ycombinator.com/item?id=38053568</link><dc:creator>status_quo69</dc:creator><comments>https://news.ycombinator.com/item?id=38053568</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=38053568</guid></item><item><title><![CDATA[New comment by status_quo69 in "A petabyte of health insurance prices per month"]]></title><description><![CDATA[
<p>We do have this in a way with healthcare.gov, since the marketplace allows consumers to view multiple insurers rather than those tied to their jobs. However these plans are still pricey, I put in some dummy data with a higher than average income (60k) and got plans at 280 per month at the bottom of the barrel. Seems to me like it's a good step in the right direction but the marketplace doesn't have an actual market driving force to reduce prices even with the 11 million plans selected for 2023. Having worked in healthcare billing processing software, this lines up, insurance companies really don't give a shit about reducing prices to compete since consumers at the point of billing are always a captive audience (if you don't have it and you have an emergency, you're fucked)</p>
]]></description><pubDate>Tue, 11 Jul 2023 23:17:47 +0000</pubDate><link>https://news.ycombinator.com/item?id=36688468</link><dc:creator>status_quo69</dc:creator><comments>https://news.ycombinator.com/item?id=36688468</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=36688468</guid></item><item><title><![CDATA[New comment by status_quo69 in "Microsoft Freezes Salaries for 2023"]]></title><description><![CDATA[
<p>It's not secretly a salary cut, it's an explicit salary cut relative to the cost of living and everything else. After all, your money is worth less now than it was a year ago if there's no cost of living increase? I'm sure the initial circumstances of salary negotiations for a position took into account current economic factors. I'm much less likely to want to stick around at a company that cannot compete with living expenses with a general 2% increase YoY. That screams stiff/cheap or that the company is on the cusp of folding.</p>
]]></description><pubDate>Wed, 10 May 2023 17:57:05 +0000</pubDate><link>https://news.ycombinator.com/item?id=35890922</link><dc:creator>status_quo69</dc:creator><comments>https://news.ycombinator.com/item?id=35890922</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=35890922</guid></item><item><title><![CDATA[New comment by status_quo69 in "Biggest industries burn through $7.3T of natural capital a year"]]></title><description><![CDATA[
<p>Should the opposite should also hold true then, we should dismiss staunch capitalists that continue to believe in that economic theory in spite of the atrocities perpetuated by most capitalist societies against people in adverse conditions? Seems a bit knee jerk to dismiss things wholesale.</p>
]]></description><pubDate>Sun, 07 May 2023 02:20:14 +0000</pubDate><link>https://news.ycombinator.com/item?id=35847289</link><dc:creator>status_quo69</dc:creator><comments>https://news.ycombinator.com/item?id=35847289</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=35847289</guid></item><item><title><![CDATA[New comment by status_quo69 in "Nobody wants to teach anymore"]]></title><description><![CDATA[
<p>> This is against the site's rules.<p>I apologize, that was a knee jerk reaction because I've never seen the assertion that 2+2=4 is racist before, only that math can be used inaccurately (purposefully or by accident) in racial contexts. I was a bit taken aback by the assertion and should have engaged differently.<p>> Funny how you build up a straw man. I never claimed any of that.<p>This isn't a straw man, I'm not building up some contrived argument here; the original comment was that "2+2=4 is racist" is a rallying cry for [some not insignificant number of math teachers].<p>> For example the Wall Street Journal. And hundreds of similar articles.<p>I did find this Opinion while googling, and read the parent Op-Ed (<a href="https://www.wsj.com/articles/california-leftists-try-to-cancel-math-class-11621355858?mod=article_inline" rel="nofollow">https://www.wsj.com/articles/california-leftists-try-to-canc...</a>) and then followed through to the framework but I just don't see anything about the manual they were talking about in that Op-Ed in the works cited (seems like all references to the manual have since been removed). So I dug up the wayback machine on the page to see the context in which they were using the "A Pathway to Equitable Math Instruction" manual.<p>> A Pathway to Equitable Math Instruction (<a href="https://equitablemath.org/" rel="nofollow">https://equitablemath.org/</a>) is an integrated approach to mathematics that centers Black, Latinx, and linguistically diverse students in grades 6–8, addresses barriers to mathematics equity, and aligns instruction to grade-level priority standards. The Pathway offers guidance and resources for immediate use in planning their curriculum, while also offering opportunities for ongoing self-reflection as they seek to develop an anti-racist mathematics practice. The toolkit “strides” (above) serve as multiple on-ramps for educators as they navigate the individual and collective journey from equity to anti-racism. It is a collection of resources to help grades 6–8 Black, LatinX, and linguistically diverse students thrive in mathematics education.<p>Ok so generally seems like they're recommending the usage in primarily POC or mixed classrooms where the considerations for teaching might be a bit different due to a multitude of factors.<p>Now digging into the manual a bit, the titles are definitely inflammatory but the content is honestly fairly humdrum (quotes taken from the first chapter <a href="https://equitablemath.org/wp-content/uploads/sites/2/2020/11/1_STRIDE1.pdf" rel="nofollow">https://equitablemath.org/wp-content/uploads/sites/2/2020/11...</a>)<p>• Teach rich, thoughtful, complex mathematics.
• Teach rigorous mathematics, understanding that rigor is characterized as thorough, exhaustive, and
interdisciplinary.
• Use mistakes as opportunities for learning.
• Recognize mistakes as miscommunicated knowledge.
• Allow for engagement in productive struggle
• Teach students of color about the career and financial opportunities in math and STEM fields.
• Encourage them to disrupt the disproportionate push-out of people of color in those fields.
• Invite leaders and innovators of color working in STEAM fields to meet your students.
• Rely on teamwork and collaboration as much as possible.
• Teach mathematics through project-based learning and other engaging approaches.
• Provide multiple opportunities for students to learn from and teach each other.
• Intentionally include mathematicians of color.
• Expose students to mathematicians of color, particularly women of color and queer mathematicians of color, both
through historical examples and by inviting community guest speakers.
• Teach students of color about their mathematical legacy and ancestral connection and mastery of math.
• Honor and acknowledge the mathematical knowledge of students of color, even if it shows up unconventionally.
• Give rightful credit to the discovery of math concepts by mathematicians of color. Reclaim concepts attributed to
white mathematicians that should be attributed to mathematicians of color.<p>Which all seems fairly reasonable here to my eyes. I will 100% agree with any assertions that the titles are very standoffish and even straight up accusatory but the content of the manual really seems like something good teachers should strive for. So to conclude I don't think that 2+2=4 is racist is really a rallying cry, the literature cited everywhere seems to talk mainly towards the teaching methodologies employed.</p>
]]></description><pubDate>Sun, 21 Aug 2022 19:56:17 +0000</pubDate><link>https://news.ycombinator.com/item?id=32543818</link><dc:creator>status_quo69</dc:creator><comments>https://news.ycombinator.com/item?id=32543818</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=32543818</guid></item><item><title><![CDATA[New comment by status_quo69 in "Nobody wants to teach anymore"]]></title><description><![CDATA[
<p>> The rallying cry seems to be that "2+2=4 is racist".<p>Source? This is such a wild claim it has to be made up. A cursory google search brings this article: <a href="https://www.edweek.org/teaching-learning/teaching-math-through-a-social-justice-lens/2020/12" rel="nofollow">https://www.edweek.org/teaching-learning/teaching-math-throu...</a><p>Which is distilled down to "teachers teach math in a way that is topical to the current environment, such as BLM protests which is really nothing new. You might disagree with it, sure, but to say that this is "the wokes" teaching 2+2=fish, that's frankly ridiculous.<p>In fact, the only thing I can find reporting on "2+2=racist" is this Washington Examiner article deriding a math teacher from NYC for her tweets (article here: <a href="https://www.washingtonexaminer.com/news/math-professor-claims-equation-2-2-4-reeks-of-white-supremacist-patriarchy" rel="nofollow">https://www.washingtonexaminer.com/news/math-professor-claim...</a>) which sounds _awful_ but it's a single person tweeting, and it seems to be in relation to using "math is pure and objective so it always must be neutral" as a defense for situations where data/statistics/algorithms presented show a clear bias. Which I think generally is an agreed upon phenomenon-- depending on the sampling and interpretation of the data, folks can come to _wildly_ different conclusions, especially if data was accidentally omitted.<p>Best example of this phenomenon is facial recognition software, which can perform very badly when deviating from the sample data. <a href="https://www.nist.gov/news-events/news/2019/12/nist-study-evaluates-effects-race-age-sex-face-recognition-software" rel="nofollow">https://www.nist.gov/news-events/news/2019/12/nist-study-eva...</a><p>> For one-to-one matching, the team saw higher rates of false positives for Asian and African American faces relative to images of Caucasians. The differentials often ranged from a factor of 10 to 100 times, depending on the individual algorithm. False positives might present a security concern to the system owner, as they may allow access to impostors.<p>...<p>> However, a notable exception was for some algorithms developed in Asian countries. There was no such dramatic difference in false positives in one-to-one matching between Asian and Caucasian faces for algorithms developed in Asia. While Grother reiterated that the NIST study does not explore the relationship between cause and effect, one possible connection, and area for research, is the relationship between an algorithm’s performance and the data used to train it. “These results are an encouraging sign that more diverse training data may produce more equitable outcomes, should it be possible for developers to use such data,” he said.<p>All the other sources I found on google were either think tanks, facebook posts, or spam sites.<p>ETA: even in the most pessimistic reading of those tweets, I'm personally hard pressed to find that one person tweeting means that all math teachers everywhere are trying to take math down to "2+2=racist"</p>
]]></description><pubDate>Sun, 21 Aug 2022 16:24:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=32541679</link><dc:creator>status_quo69</dc:creator><comments>https://news.ycombinator.com/item?id=32541679</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=32541679</guid></item><item><title><![CDATA[New comment by status_quo69 in "Kubernetes is a red flag signalling premature optimisation"]]></title><description><![CDATA[
<p>Having very recently done this (almost, another dev had half time on it) solo, It's not _too_ terrible if you go with a hosted offering. Took about a month/month and a half to really get set up and has been running without much of a blip for about 5 months now. Didn't include things like dynamic/elastic scaling, but did include CD, persistent volumes, and a whole slew of terraform to get the rest of AWS set up (VPCs, RDS, etc). I'd say that it was fairly easy because I tinkered with things in my spare time, so I had a good base to work off of when reading docs and setting things up, so YMMV. My super hot take, if you go hosted and you ignore a ton of the marketing speak on OSS geared towards k8s, you'll probably be a-ok. K8s IME is as complex as you make it. If you layer things in gradually but be very conservative with what you pull in, it'll be fairly straightforward.<p>My otherhot take is to not use helm but rather something like jsonnet or even cue to generate your yaml. My preference is jsonnet because you can very easily make a nice OO interface for the yaml schemas with it. Helm's approach to templating makes for a bit of a mess to try and read, and the values.yml files _really_ leak the details.</p>
]]></description><pubDate>Mon, 04 Jul 2022 14:22:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=31977345</link><dc:creator>status_quo69</dc:creator><comments>https://news.ycombinator.com/item?id=31977345</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=31977345</guid></item></channel></rss>