<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: optician_owl</title><link>https://news.ycombinator.com/user?id=optician_owl</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Wed, 15 Apr 2026 06:18:15 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=optician_owl" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by optician_owl in "Karpathy on Programming: “I've never felt this much behind”"]]></title><description><![CDATA[
<p>Oh. This is a pretty stereotypical character among data scientists. This character thinks software development is all about generating text, and because they know how to generate text, they're automatically considered an expert. But they know nothing about the software lifecycle. Working with them is a real pain, especially when they shift responsibility for their "software" to your engineers.</p>
]]></description><pubDate>Tue, 30 Dec 2025 06:04:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=46430064</link><dc:creator>optician_owl</dc:creator><comments>https://news.ycombinator.com/item?id=46430064</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46430064</guid></item><item><title><![CDATA[New comment by optician_owl in "Show HN: Walrus – a Kafka alternative written in Rust"]]></title><description><![CDATA[
<p>That's funny.<p>- Let's create a new Kafka in rust. Yeah!<p>- Let's create a Kafka client that's ready to use. Blah.</p>
]]></description><pubDate>Sat, 06 Dec 2025 18:23:47 +0000</pubDate><link>https://news.ycombinator.com/item?id=46175405</link><dc:creator>optician_owl</dc:creator><comments>https://news.ycombinator.com/item?id=46175405</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46175405</guid></item><item><title><![CDATA[New comment by optician_owl in "Migrating to Postgres"]]></title><description><![CDATA[
<p>It's an awkward article. To answer why a query is slow you need a bit more details than just the query. Also, I reread about timeouts and didn't get it, what was the database, whether it was a database issue, how it was related to migration.<p>The only information I could extract was that the company made bad architectural decisions, believes in ORM (looking at the queries, there are many doubts that the data layouts in DB are adequate) and cannot clearly explain situations. But this is only interesting to their candidates or investors.<p>It may sound rude, so I apologise.</p>
]]></description><pubDate>Thu, 15 May 2025 10:04:18 +0000</pubDate><link>https://news.ycombinator.com/item?id=43993460</link><dc:creator>optician_owl</dc:creator><comments>https://news.ycombinator.com/item?id=43993460</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43993460</guid></item><item><title><![CDATA[New comment by optician_owl in "YAGRI: You are gonna read it"]]></title><description><![CDATA[
<p>It's a terrible post. What it suggests is to turn your head off and follow overly generalised principle. I guess when somebody invent yet another acronym it is a red flag.<p>Data has its own life cycles in every area it passes through. And it's part of requirements gathering to find those cycles: the dependent systems, the teams, and the questions you need to answer. Mindlessly adding fields won't save you in every situation.<p>Bonus point: when you start collecting questions while designing your service, you'll discover how mature your colleagues' thinking is.</p>
]]></description><pubDate>Thu, 24 Apr 2025 09:04:20 +0000</pubDate><link>https://news.ycombinator.com/item?id=43780620</link><dc:creator>optician_owl</dc:creator><comments>https://news.ycombinator.com/item?id=43780620</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43780620</guid></item><item><title><![CDATA[New comment by optician_owl in "One year after switching from Java to Go"]]></title><description><![CDATA[
<p>> all the "complication" and "bloat", but then just end up with homegrown unmaintainable crap that does half of what the frameworks offer for significantly more effort.<p>I don't see how you deduct the conclusion of reinventing wheels is the only solution of overcomplex and far from ideal frameworks. But you can categorise this deduction also.</p>
]]></description><pubDate>Wed, 19 Feb 2025 11:37:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=43100998</link><dc:creator>optician_owl</dc:creator><comments>https://news.ycombinator.com/item?id=43100998</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43100998</guid></item><item><title><![CDATA[New comment by optician_owl in "One year after switching from Java to Go"]]></title><description><![CDATA[
<p>> Spring Boot gives you a set of dependencies that all work together.<p>But spring boot deps is infamous meme.<p>> Then you don't have to spend time messing around with things like OAuth and authentication<p>Yeah. The funny thing is reality is quite complicated and spring supports a lot of (almost) documented cases. But 99% javaspring developers do not care. I met quite a lot of experienced devs and only 2 of them know how to optimize application start or which errors Kafka wrapper would not retry and so on. Half of the non-default situations are solved via reinventing the wheel because of a lack of understanding of nuances. I can't say people are dumb, many of those devs are smart. I tend to say that ultra-framework kills people's expertise and in the long term hardly saves resources.</p>
]]></description><pubDate>Wed, 19 Feb 2025 09:07:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=43100145</link><dc:creator>optician_owl</dc:creator><comments>https://news.ycombinator.com/item?id=43100145</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43100145</guid></item><item><title><![CDATA[New comment by optician_owl in "Lies we tell ourselves to keep using Golang (2022)"]]></title><description><![CDATA[
<p>I would. Not because it's something pleasant.<p>There is a huge difference between no value and default value. I had plenty cases where I needed to distinguish them because absent value is a violation of a contract. Defaults are not a solution.<p>And more. Defaults bring their own problem. Chosen values are neutral only for some operations. The most simplest case - int default value is 0, but it kinda "works" only for sums. With nulls you'll get an error in production. With defaults discovery of the error is postponed even more. It's literally the same as making up values ignoring clients will (and this decision even not ours but designers of the lang).<p>Defaults are implicit. It's simplifies mistakes due to human factor.</p>
]]></description><pubDate>Tue, 26 Nov 2024 18:35:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=42248501</link><dc:creator>optician_owl</dc:creator><comments>https://news.ycombinator.com/item?id=42248501</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42248501</guid></item><item><title><![CDATA[New comment by optician_owl in "Lies we tell ourselves to keep using Golang (2022)"]]></title><description><![CDATA[
<p>The worst thing - default values as a solution for absent values. What can go wrong with implicit value assignments?!</p>
]]></description><pubDate>Tue, 26 Nov 2024 10:13:05 +0000</pubDate><link>https://news.ycombinator.com/item?id=42244301</link><dc:creator>optician_owl</dc:creator><comments>https://news.ycombinator.com/item?id=42244301</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42244301</guid></item><item><title><![CDATA[New comment by optician_owl in "Cancel Adobe if you are a creative under NDA with your clients"]]></title><description><![CDATA[
<p>Capture One.</p>
]]></description><pubDate>Fri, 07 Jun 2024 12:14:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=40607923</link><dc:creator>optician_owl</dc:creator><comments>https://news.ycombinator.com/item?id=40607923</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40607923</guid></item><item><title><![CDATA[New comment by optician_owl in "Gyroflow: An open source advanced gyro-based video stabilization tool"]]></title><description><![CDATA[
<p>One off the main problem is a parallax. Especially if there are moving objects in the background and foreground. For example, tree branches or leaves.</p>
]]></description><pubDate>Sat, 17 Jun 2023 04:59:03 +0000</pubDate><link>https://news.ycombinator.com/item?id=36367443</link><dc:creator>optician_owl</dc:creator><comments>https://news.ycombinator.com/item?id=36367443</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=36367443</guid></item><item><title><![CDATA[New comment by optician_owl in "Can we create a thread for some of the best materials on CS available online?"]]></title><description><![CDATA[
<p><a href="https://softwarefoundations.cis.upenn.edu" rel="nofollow">https://softwarefoundations.cis.upenn.edu</a></p>
]]></description><pubDate>Sun, 28 May 2023 02:53:08 +0000</pubDate><link>https://news.ycombinator.com/item?id=36100706</link><dc:creator>optician_owl</dc:creator><comments>https://news.ycombinator.com/item?id=36100706</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=36100706</guid></item><item><title><![CDATA[New comment by optician_owl in "JEP 430: String Templates (Preview) Proposed to Target Java 21"]]></title><description><![CDATA[
<p>As far as I understand the backslash is a mark of a variable. The problem that it looks like the escape symbol and this is really confusing. What about another symbol? #,%,|,<...<p>Of course, $ is ideal because it's already everywhere and familiar.<p>I guess a typographer of a font designer would be helpful to find a good solution.</p>
]]></description><pubDate>Sat, 04 Mar 2023 07:15:16 +0000</pubDate><link>https://news.ycombinator.com/item?id=35018926</link><dc:creator>optician_owl</dc:creator><comments>https://news.ycombinator.com/item?id=35018926</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=35018926</guid></item><item><title><![CDATA[New comment by optician_owl in "JEP 430: String Templates (Preview) Proposed to Target Java 21"]]></title><description><![CDATA[
<p>I would argue that jdbc API is far more dangerous than string interpolation :)<p>But I wholeheartedly support the idea of JEP. Scala got several good UX benefits based on the string interpolation (sql and logging).</p>
]]></description><pubDate>Sat, 04 Mar 2023 07:00:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=35018852</link><dc:creator>optician_owl</dc:creator><comments>https://news.ycombinator.com/item?id=35018852</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=35018852</guid></item><item><title><![CDATA[New comment by optician_owl in "JEP 430: String Templates (Preview) Proposed to Target Java 21"]]></title><description><![CDATA[
<p>One of the best application I've seen is structured and contextual logging [1]. Combined with implicits, this allows you to require a right renderer or/and automatically get a current state of an execution context.<p>1. <a href="https://docs.tofu.tf/docs/tofu.logging.key-features/" rel="nofollow">https://docs.tofu.tf/docs/tofu.logging.key-features/</a></p>
]]></description><pubDate>Sat, 04 Mar 2023 06:42:47 +0000</pubDate><link>https://news.ycombinator.com/item?id=35018774</link><dc:creator>optician_owl</dc:creator><comments>https://news.ycombinator.com/item?id=35018774</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=35018774</guid></item><item><title><![CDATA[New comment by optician_owl in "Format Strings in Rust 1.58"]]></title><description><![CDATA[
<p>Does not allow to use a struct field. That's strange.</p>
]]></description><pubDate>Fri, 14 Jan 2022 16:12:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=29936248</link><dc:creator>optician_owl</dc:creator><comments>https://news.ycombinator.com/item?id=29936248</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29936248</guid></item><item><title><![CDATA[New comment by optician_owl in "Approved Cameras"]]></title><description><![CDATA[
<p>The most obvious Nikon problem is the absence of cine lenses (I skip ergonomic because it is a common 'photo camera for video' problem). Of course, you can use photo lenses, but it's so much pain. More flaws and more time.<p>- Cine zoom lenses must provide a fixed point of focus when you are zooming. This leads to a more complex mechanism.<p>- Different cine fixed lenses in one project usually must have identical image quality. That is why they are produced in series (for example 'XEEN PRO Cinema Lenses') with the same technologies.<p>- Anamorphic lenses... They should exist. They complicate lens production because a stable quality (for series) of an aspherical lens can be achieved only from a central part of a large glass.<p>- Focusing is the process that often requires a separate person (focus puller) and additional machinery (follow focus system). All cine lenses have exactly the same standard focus wheel. There is no such standard for a photo lens focus wheel.<p>Nikon F has very few cine lenses and has no series of lenses. Nikon Z has nothing. Thanks to the closed very secret, unique, perfect, bla-bla specification of Z mount and zero collaborations with other manufactures.</p>
]]></description><pubDate>Sun, 09 Jan 2022 08:03:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=29861307</link><dc:creator>optician_owl</dc:creator><comments>https://news.ycombinator.com/item?id=29861307</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29861307</guid></item><item><title><![CDATA[New comment by optician_owl in "Adobe Lightroom v6 is Falling Apart"]]></title><description><![CDATA[
<p>Lightroom has some critical problems limiting professional use.<p>* Forced lens profiles. (And more. There are reports of double application of profiles)<p>* Color and light correction also changes untouched parameters (it's ok but there is no workaround). If you need to do a more accurate job then use C1 or Photoshop.</p>
]]></description><pubDate>Fri, 25 Dec 2020 08:33:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=25535138</link><dc:creator>optician_owl</dc:creator><comments>https://news.ycombinator.com/item?id=25535138</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=25535138</guid></item><item><title><![CDATA[Monorepo or Multirepo? Role-Based Repositories]]></title><description><![CDATA[
<p>Article URL: <a href="https://blog.7mind.io/role-based-repositories.html">https://blog.7mind.io/role-based-repositories.html</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=21234560">https://news.ycombinator.com/item?id=21234560</a></p>
<p>Points: 141</p>
<p># Comments: 115</p>
]]></description><pubDate>Sat, 12 Oct 2019 17:01:02 +0000</pubDate><link>https://blog.7mind.io/role-based-repositories.html</link><dc:creator>optician_owl</dc:creator><comments>https://news.ycombinator.com/item?id=21234560</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=21234560</guid></item><item><title><![CDATA[Monorepo or Multirepo? Role-Based Repositories]]></title><description><![CDATA[
<p>Article URL: <a href="https://blog.7mind.io/role-based-repositories.html">https://blog.7mind.io/role-based-repositories.html</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=21185438">https://news.ycombinator.com/item?id=21185438</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Mon, 07 Oct 2019 20:12:18 +0000</pubDate><link>https://blog.7mind.io/role-based-repositories.html</link><dc:creator>optician_owl</dc:creator><comments>https://news.ycombinator.com/item?id=21185438</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=21185438</guid></item><item><title><![CDATA[New comment by optician_owl in "DeepPrivacy: A Generative Adversarial Network for Face Anonymization"]]></title><description><![CDATA[
<p>Looks like ears are unchanged but it's a strong identifier.</p>
]]></description><pubDate>Sun, 15 Sep 2019 21:18:52 +0000</pubDate><link>https://news.ycombinator.com/item?id=20979543</link><dc:creator>optician_owl</dc:creator><comments>https://news.ycombinator.com/item?id=20979543</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=20979543</guid></item></channel></rss>