<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: x1n13y84issmd42</title><link>https://news.ycombinator.com/user?id=x1n13y84issmd42</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sat, 13 Jun 2026 15:14:03 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=x1n13y84issmd42" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by x1n13y84issmd42 in "Ask HN: Why is the HN crowd so anti-AI?"]]></title><description><![CDATA[
<p>The idea of AI capable of something like that seems to be on the verge of magical thinking.<p>But what would the consequences for the industry be? How many competitors to every major product appear overnight once such AI is released? Why would Netflix and others, being aware of such a thing, release any of their technology to public after approx. right now?<p>I suspect that in such environment any kind of knowledge sharing would stop, simply to keep technological advantage. I cannot imagine a world where everyone is equally capable. If anyone can do anything, does anything have any value at all?</p>
]]></description><pubDate>Sun, 07 Jun 2026 17:42:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=48437038</link><dc:creator>x1n13y84issmd42</dc:creator><comments>https://news.ycombinator.com/item?id=48437038</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48437038</guid></item><item><title><![CDATA[New comment by x1n13y84issmd42 in "Ask HN: Why is the HN crowd so anti-AI?"]]></title><description><![CDATA[
<p>I just don't see much use for AI coding agents beyond PoC and prototypes, that are to be ditched soon.<p>In my 15 years long developer career I've always found ways to automate all kinds of chores in big projects - simple shell scripts generate boilerplate code for services/modules/controllers/etc, modern infrastructure & tools automate or completely hide a lot of mundane work while giving back valuable data to act upon (think testing and deployment), the code itself is almost always highly modular and lets me to rearrange complex logic in no time with minimum risk. All that while having complete understanding of what's going on, and full control over every aspect of the software I'm responsible for.<p>And I have a feeling that writing proper prompts to achieve all that (even given the model has enough context) would simply be more work than just properly programming it the old way.<p>Besides that, the models feeding on OSS and Indian code from GitHub is not only injust, it's also very limited in how creative it can be - the next innovation would leave LLM-generated solutions behind if kept in vault, so LLMs cannot learn form it. And I have a feeling that's where we're heading - death of OSS (esp. in the wake of the recent supply-chain attacks) and a new round of closed-source technological competition.</p>
]]></description><pubDate>Sun, 07 Jun 2026 11:48:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=48433939</link><dc:creator>x1n13y84issmd42</dc:creator><comments>https://news.ycombinator.com/item?id=48433939</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48433939</guid></item><item><title><![CDATA[New comment by x1n13y84issmd42 in "Ask HN: Why is the HN crowd so anti-AI?"]]></title><description><![CDATA[
<p>I have a feeling that a prompt accurate enough to cover all the important stuff (functional/non-functional requirements, certain business side restrictions etc) would be close in its volume and complexity to the actual software code and configuration (given the proper tools, frameworks and infrastructure in place)...</p>
]]></description><pubDate>Sun, 07 Jun 2026 11:30:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=48433842</link><dc:creator>x1n13y84issmd42</dc:creator><comments>https://news.ycombinator.com/item?id=48433842</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48433842</guid></item><item><title><![CDATA[Smarter approach to error handling in Go]]></title><description><![CDATA[
<p>Article URL: <a href="https://medium.com/@x1n13y84issmd42/how-to-stop-handling-errors-in-go-and-start-living-5fbffe5cb11a">https://medium.com/@x1n13y84issmd42/how-to-stop-handling-errors-in-go-and-start-living-5fbffe5cb11a</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=23177945">https://news.ycombinator.com/item?id=23177945</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Thu, 14 May 2020 10:51:09 +0000</pubDate><link>https://medium.com/@x1n13y84issmd42/how-to-stop-handling-errors-in-go-and-start-living-5fbffe5cb11a</link><dc:creator>x1n13y84issmd42</dc:creator><comments>https://news.ycombinator.com/item?id=23177945</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=23177945</guid></item><item><title><![CDATA[New comment by x1n13y84issmd42 in "Show HN: 70015 – A small developer toolset with nice UX"]]></title><description><![CDATA[
<p>How do you deal with weird machine-readable values which you'd like to make some sense of yourself, like a Unix timestamp or a base64-encoded value? Some Bash nerds do "echo ABASE64ENCODEDVALUE== | base64 --decode" to read the encoded stuff, others hit F12 on whatever web page they happen to be at the moment and type something like "new Date(1582889280 * 1000)" (don't forget to x1000 if it's seconds!) in console to see dates (Bash nerds have their "date -d @1582889280" for that), the rest google "base64 decode online" and use some random web tool.<p>So, this is another random web tool for those tasks and few others. At the moment it helps with URLs (parses & transcodes query values), JSONs (formats & converts them to YAML), Base64 transcoding (including files!), has few crypto functions and, of course, a timestamp converter. There are plans to add a CSV<->JSON converter, a JSON transformer/mapper, a JWT parser/validator, probably a HMAC tool and more.<p>And the main feature, so rarely found in developer tools, is it's UI. Unlike all the similar tools out in the web, which look like they have been designed by professional programmers, this one is made by a professional programmer who used to date a professional UX designer, so it has both smooth operations & neat looks. There are hotkeys (not many at the moment, but I'm aiming at having full keyboard control over the thing eventually), a sharing feature and data reuse across tools.<p>We, backend developers, deserve to have nice things too.
Give it a shot, I hope one day it finds it's place among your favourite tools.<p><i>/!\ Please mind it works only in desktop browsers now. I see not much use for this thing on mobile, but maybe one day a mobile version will follow.</i></p>
]]></description><pubDate>Fri, 28 Feb 2020 13:53:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=22442735</link><dc:creator>x1n13y84issmd42</dc:creator><comments>https://news.ycombinator.com/item?id=22442735</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22442735</guid></item><item><title><![CDATA[Show HN: 70015 – A small developer toolset with nice UX]]></title><description><![CDATA[
<p>Article URL: <a href="https://x1n13y84issmd42.github.io/70015/">https://x1n13y84issmd42.github.io/70015/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=22442726">https://news.ycombinator.com/item?id=22442726</a></p>
<p>Points: 2</p>
<p># Comments: 1</p>
]]></description><pubDate>Fri, 28 Feb 2020 13:51:44 +0000</pubDate><link>https://x1n13y84issmd42.github.io/70015/</link><dc:creator>x1n13y84issmd42</dc:creator><comments>https://news.ycombinator.com/item?id=22442726</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22442726</guid></item><item><title><![CDATA[New comment by x1n13y84issmd42 in "Show HN: Jwalk, a Streaming JSON Parser for Unix"]]></title><description><![CDATA[
<p>A JSON parser in Bash, impressive. I've just finished an HTTP server in Bash and had to rely on <i>jq</i> for parsing JSON requests, but maybe would love a pure POSIX solution instead. Do you happen to have any benchmarks?</p>
]]></description><pubDate>Mon, 26 Aug 2019 18:49:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=20802545</link><dc:creator>x1n13y84issmd42</dc:creator><comments>https://news.ycombinator.com/item?id=20802545</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=20802545</guid></item><item><title><![CDATA[New comment by x1n13y84issmd42 in "Show HN: Bashttpd – An HTTP Server and a Web Framework in Bash Script"]]></title><description><![CDATA[
<p>So, I wanted to learn more about Bash scripting and make something in it for fun & profit, and here it is — a nearly fully featured HTTP server, accompanied with a small framework for web apps, both written in Bash Script. At the moment it responds to all kinds of requests, fully supports binary files & file upload, form data, JSON requests & responses, has MySQL utilities, does routing, renders simple HTML templates and more.</p>
]]></description><pubDate>Mon, 26 Aug 2019 16:53:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=20801438</link><dc:creator>x1n13y84issmd42</dc:creator><comments>https://news.ycombinator.com/item?id=20801438</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=20801438</guid></item><item><title><![CDATA[Show HN: Bashttpd – An HTTP Server and a Web Framework in Bash Script]]></title><description><![CDATA[
<p>Article URL: <a href="https://github.com/x1n13y84issmd42/bashttpd">https://github.com/x1n13y84issmd42/bashttpd</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=20801433">https://news.ycombinator.com/item?id=20801433</a></p>
<p>Points: 2</p>
<p># Comments: 1</p>
]]></description><pubDate>Mon, 26 Aug 2019 16:53:04 +0000</pubDate><link>https://github.com/x1n13y84issmd42/bashttpd</link><dc:creator>x1n13y84issmd42</dc:creator><comments>https://news.ycombinator.com/item?id=20801433</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=20801433</guid></item></channel></rss>