<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: bentinata</title><link>https://news.ycombinator.com/user?id=bentinata</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Thu, 23 Apr 2026 08:45:26 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=bentinata" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by bentinata in "Google details new 24-hour process to sideload unverified Android apps"]]></title><description><![CDATA[
<p>Except the fact that opening up new pizza place have a huge upfront cost. Your pizza may need to be pricier too. You thought people are flocking to your new pizza place, but the reality is that most people just want to not get hungry, and will rather chomp down pineapple pizza while being surveiled, than spending more for non-pineapple pizza.<p>Look, I love making a analogies. Just that they have scale, and competing against it is hard.</p>
]]></description><pubDate>Fri, 20 Mar 2026 18:29:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=47458656</link><dc:creator>bentinata</dc:creator><comments>https://news.ycombinator.com/item?id=47458656</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47458656</guid></item><item><title><![CDATA[New comment by bentinata in "There is an AI code review bubble"]]></title><description><![CDATA[
<p>If you're interested: <a href="https://conventionalcomments.org/" rel="nofollow">https://conventionalcomments.org/</a><p>It may feels to many. I mostly use suggestion, thought, and todo. When I type down "nit..." I realized it usually does not worth it. I'd rather make comment about higher level of the changes.</p>
]]></description><pubDate>Tue, 27 Jan 2026 23:46:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=46788875</link><dc:creator>bentinata</dc:creator><comments>https://news.ycombinator.com/item?id=46788875</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46788875</guid></item><item><title><![CDATA[New comment by bentinata in "Pure and Impure Software Engineering"]]></title><description><![CDATA[
<p>Do you use "emdash" because you love to use it but don't want to be mistaken as AI-generated?</p>
]]></description><pubDate>Thu, 11 Sep 2025 13:05:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=45211134</link><dc:creator>bentinata</dc:creator><comments>https://news.ycombinator.com/item?id=45211134</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45211134</guid></item><item><title><![CDATA[New comment by bentinata in "The Enterprise Experience"]]></title><description><![CDATA[
<p>It won't gonna change how people (mostly management) see the name. I've seen whole empire named after Pokemon, only for another round of restructure that will change teams name to another Pokemon.<p><i>While talking to friends at other empire:</i><p>> I've been digging around, who are the members of Ludicolo?<p>> Oh, we've renamed to Felbat.</p>
]]></description><pubDate>Sun, 17 Aug 2025 23:15:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=44935764</link><dc:creator>bentinata</dc:creator><comments>https://news.ycombinator.com/item?id=44935764</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44935764</guid></item><item><title><![CDATA[New comment by bentinata in "The Enterprise Experience"]]></title><description><![CDATA[
<p>Very fun and interesting article. I'm currently working in enterprise for around 3 years. I sure am growing technically, but I feel like I learn more about people, communications and bureaucracy here. That comment about budget and mouse is also on track, but with financial stability that working in $ENTERPRISE brings, I can just buy the mouse myself. Maybe some empire will question me regarding the unauthorized mouse, but I can just... ignore... um, talk myself out of the fake urgencies of mouse authorization.</p>
]]></description><pubDate>Sun, 17 Aug 2025 23:02:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=44935708</link><dc:creator>bentinata</dc:creator><comments>https://news.ycombinator.com/item?id=44935708</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44935708</guid></item><item><title><![CDATA[New comment by bentinata in "PuTTY has a new website"]]></title><description><![CDATA[
<p>It's because freedom and correctness is hard. Yeah, most people prefer convenience and would rather someone be the source of authority to do it for them, but people on fediverse are not those kind of people.</p>
]]></description><pubDate>Sun, 17 Aug 2025 03:14:17 +0000</pubDate><link>https://news.ycombinator.com/item?id=44928575</link><dc:creator>bentinata</dc:creator><comments>https://news.ycombinator.com/item?id=44928575</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44928575</guid></item><item><title><![CDATA[New comment by bentinata in "I deleted my second brain"]]></title><description><![CDATA[
<p>Product focused (plans, documentation, snippets) notes for team, people focused (1-on-1, performance review, birthday) notes for personal.</p>
]]></description><pubDate>Sat, 28 Jun 2025 07:15:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=44402841</link><dc:creator>bentinata</dc:creator><comments>https://news.ycombinator.com/item?id=44402841</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44402841</guid></item><item><title><![CDATA[New comment by bentinata in "How I configure my Git identities"]]></title><description><![CDATA[
<p>I use `insteadOf` instead of ssh alias because my workplace use GitLab orgs. So instead of typing the full URL like:<p><pre><code>  git clone gitlab.com/acme-corp/project-name
</code></pre>
I could use:<p><pre><code>  git clone work:project-name
</code></pre>
But this kinda broke `includeIf` since it store the `insteadOf` remote url directly. I then had to convert existing repositories to use the `insteadOf` url.<p>I wrote a little bit about it here:
<a href="https://bentinata.com/log/git-insteadof-includeif" rel="nofollow">https://bentinata.com/log/git-insteadof-includeif</a></p>
]]></description><pubDate>Mon, 25 Nov 2024 07:39:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=42234056</link><dc:creator>bentinata</dc:creator><comments>https://news.ycombinator.com/item?id=42234056</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42234056</guid></item><item><title><![CDATA[New comment by bentinata in "Accountability sinks"]]></title><description><![CDATA[
<p>I think it's a matter of hygiene and speed. Sure I could butcher a chicken, maybe have a shot at a bigger animal like a goat or cow. I've seen it multiple times since I live in a country that regularly do animal sacrifice. But I'm pretty sure I wouldn't be able to do it as clean or as fast as the usual butcher.<p>It does feel different from market-bought meat though, at least for me.</p>
]]></description><pubDate>Sun, 20 Oct 2024 04:27:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=41892856</link><dc:creator>bentinata</dc:creator><comments>https://news.ycombinator.com/item?id=41892856</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41892856</guid></item><item><title><![CDATA[New comment by bentinata in "Ask HN: Who wants to be hired? (September 2024)"]]></title><description><![CDATA[
<p><p><pre><code>  Location: East Java, Indonesia
  Remote: Remote, Hybrid or On-Site
  Willing to relocate: Yes
  Technologies: Professionally, TypeScript, Kotlin, Flutter, Go, PHP
  Résumé/CV: gemini://bentinata.srht.site/resume or https://bentinata.com/resume
  Email: underscore at bentinata dot com
</code></pre>
Hi. I'm Ben. Been looking to work on environment projects, and/or project that is using rust. Something that can either make a positive impact for a lot of people (too naive, I know), or something that hone my technical skill. But since I'm a parent now, my primary focus been stability. I have accepted the fact that dream job is called dream job for a reason.</p>
]]></description><pubDate>Tue, 03 Sep 2024 02:02:04 +0000</pubDate><link>https://news.ycombinator.com/item?id=41430518</link><dc:creator>bentinata</dc:creator><comments>https://news.ycombinator.com/item?id=41430518</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41430518</guid></item><item><title><![CDATA[New comment by bentinata in "I Created 175 Fonts Using Rust"]]></title><description><![CDATA[
<p>Even though the methods is simple, the way the author visualizing it is really neat.</p>
]]></description><pubDate>Sun, 11 Aug 2024 02:03:03 +0000</pubDate><link>https://news.ycombinator.com/item?id=41213528</link><dc:creator>bentinata</dc:creator><comments>https://news.ycombinator.com/item?id=41213528</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41213528</guid></item><item><title><![CDATA[New comment by bentinata in "Summary of Major Changes Between Python Versions"]]></title><description><![CDATA[
<p>As someone who haven't been using Python extensively since college, and mostly use TypeScript and Kotlin at work (and little bit of Rust for hobby projects), that's a lot of typing features. It feels like for the past few years typing been getting more attention. Good to see.<p>I used to hate TypeScript (circa 2016) because it kept bugging me with typing errors, and I used to sprinkle "any" to shut it up.</p>
]]></description><pubDate>Sat, 06 Jul 2024 12:19:58 +0000</pubDate><link>https://news.ycombinator.com/item?id=40889989</link><dc:creator>bentinata</dc:creator><comments>https://news.ycombinator.com/item?id=40889989</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40889989</guid></item><item><title><![CDATA[New comment by bentinata in "MIME, RSS, and Existential Torment"]]></title><description><![CDATA[
<p>Haven't read xe article for a while. Why does xe move away from NixOS? I'm pretty sure I read blog about nix being best container builder a while ago.</p>
]]></description><pubDate>Tue, 25 Jun 2024 11:32:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=40787161</link><dc:creator>bentinata</dc:creator><comments>https://news.ycombinator.com/item?id=40787161</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40787161</guid></item><item><title><![CDATA[New comment by bentinata in "Designing a website without 404s"]]></title><description><![CDATA[
<p>What about using 302?</p>
]]></description><pubDate>Fri, 14 Jun 2024 11:52:39 +0000</pubDate><link>https://news.ycombinator.com/item?id=40679936</link><dc:creator>bentinata</dc:creator><comments>https://news.ycombinator.com/item?id=40679936</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40679936</guid></item><item><title><![CDATA[New comment by bentinata in "Companies with return-to-office mandates face losing their most valuable workers"]]></title><description><![CDATA[
<p>This is also how it is for me. My son just turned 2, and I love that I am able to observe him napping between long meetings. I could also have a small chat with my teammates after 5 PM, and sometimes our kids hop into conversation and say hi to each other.</p>
]]></description><pubDate>Wed, 29 May 2024 12:23:23 +0000</pubDate><link>https://news.ycombinator.com/item?id=40511173</link><dc:creator>bentinata</dc:creator><comments>https://news.ycombinator.com/item?id=40511173</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40511173</guid></item><item><title><![CDATA[New comment by bentinata in "TypeScript: Branded Types"]]></title><description><![CDATA[
<p>Would it help if the junction tables named something else? "Session" or "participations"?</p>
]]></description><pubDate>Wed, 08 May 2024 14:12:02 +0000</pubDate><link>https://news.ycombinator.com/item?id=40298328</link><dc:creator>bentinata</dc:creator><comments>https://news.ycombinator.com/item?id=40298328</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40298328</guid></item><item><title><![CDATA[New comment by bentinata in "Show HN: Dotenv, if it is a Unix utility"]]></title><description><![CDATA[
<p>What about:<p><pre><code>    env $(cat .env) [program]</code></pre></p>
]]></description><pubDate>Mon, 29 Apr 2024 03:05:00 +0000</pubDate><link>https://news.ycombinator.com/item?id=40193993</link><dc:creator>bentinata</dc:creator><comments>https://news.ycombinator.com/item?id=40193993</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40193993</guid></item><item><title><![CDATA[New comment by bentinata in "Total data loss after botched GitOps and failed backups"]]></title><description><![CDATA[
<p>It's not a website anymore. It's a web app.<p>Might be related: I recently joined a company using Flutter web and notices similar stuff. Yes, the software engineers are wondering: "Why do we reimplement browser stuff?" But the business ask for it and we don't hear complaints from the end user.</p>
]]></description><pubDate>Mon, 28 Aug 2023 05:31:12 +0000</pubDate><link>https://news.ycombinator.com/item?id=37290133</link><dc:creator>bentinata</dc:creator><comments>https://news.ycombinator.com/item?id=37290133</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=37290133</guid></item><item><title><![CDATA[New comment by bentinata in "Architecture diagrams enable better conversations"]]></title><description><![CDATA[
<p>There is also <a href="https://diagrams.mingrammer.com/" rel="nofollow noreferrer">https://diagrams.mingrammer.com/</a> using python.</p>
]]></description><pubDate>Wed, 23 Aug 2023 02:39:15 +0000</pubDate><link>https://news.ycombinator.com/item?id=37231265</link><dc:creator>bentinata</dc:creator><comments>https://news.ycombinator.com/item?id=37231265</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=37231265</guid></item><item><title><![CDATA[New comment by bentinata in "Why Tcl?"]]></title><description><![CDATA[
<p>I used to think POSIX shell scripts are the best. But ever since deno support npm packages directly, running `deno run url-to-scripts` seems really good now. You get readability, types, and library ecosystem.</p>
]]></description><pubDate>Tue, 20 Jun 2023 20:36:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=36410131</link><dc:creator>bentinata</dc:creator><comments>https://news.ycombinator.com/item?id=36410131</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=36410131</guid></item></channel></rss>