<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: scelerat</title><link>https://news.ycombinator.com/user?id=scelerat</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Mon, 17 Aug 2026 14:47:58 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=scelerat" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by scelerat in "OpenAI’s head of ethics leaves less than a year after joining"]]></title><description><![CDATA[
<p>The compliance team seeks to maximize company profit/success within the confines of hard legal boundaries.<p>There are no "hard" boundaries for ethics or "doing the right thing," and so those boundaries will always be pushed until they are useless.</p>
]]></description><pubDate>Wed, 12 Aug 2026 13:41:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=49272280</link><dc:creator>scelerat</dc:creator><comments>https://news.ycombinator.com/item?id=49272280</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49272280</guid></item><item><title><![CDATA[New comment by scelerat in "Ask HN: What are you working on? (August 2026)"]]></title><description><![CDATA[
<p>I built a guest list management tool for a music festival.<p>Nothing technologically ground-breaking: Two front-end apps and the back end to support them. The project gave me an opportunity to try out Svelte and FastAPI in a substantial way, as well as operate in the capacity of product designer and owner which I haven't in many, many years of being a developer, since long-gone days of holding the title, "webmaster."<p>The two main parts were an administrative list management app, where names are entered and credentials allocated, and a checkin app designed to be used on a mobile device on the day of the festival. The challenges were making a data entry and lookup UI significantly better than the systems which had been used before, which ranged from loose sheets of photocopied hand-written notes to poorly-conceived, resource-intensive, and error-prone spreadsheets. It may sound like a low bar, but some of the biggest hurdles were convincing particular stakeholders who had been doing things one way for years to give up some control in exchange for widespread and timely synchronization.<p>The most satisfying part was the feedback I received as I made a dozen or so people's lives easier for a moment. The tool I built literally saved several relationships which had been frayed over the years over, yes, the seemingly inconsequential task of managing a guest list. A relatively large one, to be sure. After several years of working for companies and on projects with seemingly no direction and little direct customer feedback, it was extremely gratifying to work on something with clear goals and transparent, timely insight into how people were using the apps, enabling targeted and rapid turnaround for suggestions and requests.</p>
]]></description><pubDate>Mon, 10 Aug 2026 12:57:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=49243021</link><dc:creator>scelerat</dc:creator><comments>https://news.ycombinator.com/item?id=49243021</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49243021</guid></item><item><title><![CDATA[New comment by scelerat in "My phone detects going on a run as “someone snatching my phone and running off”"]]></title><description><![CDATA[
<p>The risks, such as they are, of walking in a city are blown way out of proportion to reality in order to sell ads or elect political candidates.</p>
]]></description><pubDate>Thu, 06 Aug 2026 23:52:47 +0000</pubDate><link>https://news.ycombinator.com/item?id=49204249</link><dc:creator>scelerat</dc:creator><comments>https://news.ycombinator.com/item?id=49204249</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49204249</guid></item><item><title><![CDATA[New comment by scelerat in ""Clean" Code, Horrible Performance (2023)"]]></title><description><![CDATA[
<p>How much of the performance differences come down to language or compiler choice in these examples?<p>Would I see the same kinds of performance gains or losses avoiding or using certain patterns in Go or Rust or Java? Are they the same examples as in C++?<p>What about dynamic languages like ruby or python or javascript?</p>
]]></description><pubDate>Tue, 04 Aug 2026 16:42:58 +0000</pubDate><link>https://news.ycombinator.com/item?id=49171379</link><dc:creator>scelerat</dc:creator><comments>https://news.ycombinator.com/item?id=49171379</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49171379</guid></item><item><title><![CDATA[New comment by scelerat in "Prevent cognitive debt by manually retyping LLM-generated code"]]></title><description><![CDATA[
<p>I think people use these tools in varying ways, sometimes in the same session, and there are no hard-and-fast correct answers.<p>For example:<p>Sometimes I just need to blast something out which works well enough so I can either consider the output or play with the tool it generated to see if I'm on the track for solving my bigger problem. In these instances, I just say, do it, and don't focus too much on the code it produces.<p>Sometimes I am using languages or tools I am not an expert in. In many of these cases, I do manually type out the LLM's suggestions so that I am more intimately familiar with the syntax, libraries and idioms being used. Frequently pausing to look at actual documentation or find examples of sample code. It's a more interactive version of what I might have been doing a couple years ago googling solutions on stack overflow.</p>
]]></description><pubDate>Mon, 03 Aug 2026 17:50:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=49159151</link><dc:creator>scelerat</dc:creator><comments>https://news.ycombinator.com/item?id=49159151</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49159151</guid></item><item><title><![CDATA[New comment by scelerat in "2x, not 10x: coding with LLMs in 2026"]]></title><description><![CDATA[
<p>I recently, with the help of Claude Code, made a tool which involved a database, two separate apps surfacing and interacting with various aspects of the data, and a user base of dozens, with some semi-specific domain knowledge on my part and an intention of re-using and building upon the minimum viable result.<p>OP's description very much mirrors my experience. I was able to do many things much more quickly with the help of the LLM, but there is no substitute for actual users interacting with the tool, saying, "I like this," or "no, this is wrong or needs work," or even, "here's something none of us thought of before, but now this tool makes me think XYZ would help us and might be achievable." That whole interaction takes real time and I don't know how you replace it with coding agents.<p>Secondly, on the matter of code structure, just on a qualitative level, I can see that claude will do things very efficiently on the way to a goal I give it, but it can't read my mind and know that I may want to repeat a specific pattern across two client apps. Or that its shortest-distance solution makes extensibility or broad applicability difficult. That I might want to share code and structure things in a certain way. Not without me saying so or, in many cases after it has built something workable, duplicating refactors I make with an eye for reusability or maintenance. Making those changes in time is important if you don't want to burn tokens later as the LLM tries to unravel its own spaghetti. And again, whether I am coding those intentions directly, or writing out detailed instructions in english, all of that takes time.</p>
]]></description><pubDate>Thu, 30 Jul 2026 23:28:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=49117155</link><dc:creator>scelerat</dc:creator><comments>https://news.ycombinator.com/item?id=49117155</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49117155</guid></item><item><title><![CDATA[New comment by scelerat in "Decker, a platform that builds on the legacy of Hypercard and classic macOS"]]></title><description><![CDATA[
<p>It took browsers and web dev until, IDK, maybe 2010? to match the interactivity and capability of Hypercard circa 1994.<p>The actual killer app turned out to be the network itself, but for anyone who used and built things with Hypercard (a lot of people), all the patterns of components and event-driven development were like an echo from a refined past by the time it became part of the modern development toolkit.</p>
]]></description><pubDate>Sun, 26 Jul 2026 21:51:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=49062795</link><dc:creator>scelerat</dc:creator><comments>https://news.ycombinator.com/item?id=49062795</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49062795</guid></item><item><title><![CDATA[New comment by scelerat in "A better way to tie your gym shorts. (Or any drawstring) [video]"]]></title><description><![CDATA[
<p>Super useful knot for when you don't have a ratchet tie-down. Learned and used this knot all the time hauling around dirt bikes.</p>
]]></description><pubDate>Tue, 07 Jul 2026 14:59:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=48818772</link><dc:creator>scelerat</dc:creator><comments>https://news.ycombinator.com/item?id=48818772</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48818772</guid></item><item><title><![CDATA[New comment by scelerat in "An oral history of Bank Python (2021)"]]></title><description><![CDATA[
<p>Ha when I read “I won’t name the system; let’s just call it Minerva,” I thought, “I’ll bet it’s called Athena irl. “</p>
]]></description><pubDate>Fri, 26 Jun 2026 17:43:08 +0000</pubDate><link>https://news.ycombinator.com/item?id=48689554</link><dc:creator>scelerat</dc:creator><comments>https://news.ycombinator.com/item?id=48689554</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48689554</guid></item><item><title><![CDATA[New comment by scelerat in "The founder of Craigslist has given away half a billion dollars"]]></title><description><![CDATA[
<p>I have a lot of fun memories about when I moved to SF in 2006. Among them was meeting Craig and interacting with him casually a handful of times. He was a regular at Reverie in Cole Valley, where a good friend and mentor of mine was also a regular. The two of them were friends and times I'd meet with my friend, i'd sometimes talk to Craig. He always seemed kind and had a sharp wit. I remember the first time I met him, my friend introduced me and said I had just moved to town. I blurted out, "know a good way to find an apartment?" Craig gave me a good-natured eye roll.<p>I asked him one time what he was doing. Answering emails, he said. Customer support emails. I think he really enjoyed that part of the business.</p>
]]></description><pubDate>Thu, 18 Jun 2026 21:41:08 +0000</pubDate><link>https://news.ycombinator.com/item?id=48592024</link><dc:creator>scelerat</dc:creator><comments>https://news.ycombinator.com/item?id=48592024</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48592024</guid></item><item><title><![CDATA[New comment by scelerat in "The Redistribution of Housing Wealth Caused by Rent Control [pdf]"]]></title><description><![CDATA[
<p>I'm not picking up any subjective, simplistic labeling like "good" or "bad." Are we reading the same paper?<p>Haven't fully read the paper, just the introduction and skimmed through the rest, but it seems they're merely observing that a rent control law went into effect, and given some control variables, it seems like it depressed property values.<p>Their findings also suggest that while the wealth transfer of rent control factor is real -- that is, landlords are impacted more and existing renters see relative benefit -- that effect is greater among higher-income renters and less among lower income renters.<p>Second paragraph in the Conclusion:<p>"While the negative wealth eﬀects for owners are large, our results show the positive eﬀects of the law are poorly targeted. Though the intention is to benefit lower income renters, we find that the largest benefits are received in the neighborhoods of the city in which renters have higher incomes, are less likely to be minorities, and have more education. To the extent that price drops for rental properties reflect future rent savings, and thus housing wealth gains for tenants, our results suggest that the largest cost savings are going to be realized in the neighborhoods with the richest, most educated, and least diverse owners."</p>
]]></description><pubDate>Sun, 14 Jun 2026 03:56:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=48524037</link><dc:creator>scelerat</dc:creator><comments>https://news.ycombinator.com/item?id=48524037</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48524037</guid></item><item><title><![CDATA[New comment by scelerat in "Conventional Commits encourages focus on the wrong things"]]></title><description><![CDATA[
<p>I agree with the sentiments -- knowing the scope of a change  <i>is</i> more essential, in most cases, than knowing whether the change was a "fix" or a "feature" -- but much of the scope in a project can be gleaned from the files which were touched. So the use case of, "i need to quickly at a glance determine what commits touched what parts of the project" can be answered with some variation on<p><pre><code>    git log --pretty=format:"%n%h %s" --name-only</code></pre></p>
]]></description><pubDate>Fri, 05 Jun 2026 21:20:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=48418482</link><dc:creator>scelerat</dc:creator><comments>https://news.ycombinator.com/item?id=48418482</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48418482</guid></item><item><title><![CDATA[New comment by scelerat in "Programmers will document for Claude, but not for each other"]]></title><description><![CDATA[
<p>Half of the purpose of me documenting things is to make certain that <i>I</i> fully understand the problem and its solution.<p>As I write out the explanation, if something doesn't make sense, that is a prompt for me to dig in and understand more fully either what I am supposed to accomplish and/or how I intend to do it.<p>That applies to everything from single-line comments on up to project READMEs and polished, customer-facing documentation.<p>One consistent frustration I have had over the years is that so much code is not documented or (worse) poorly documented. If there is a silver-lining to AI-assisted programming, it is that clear writing of goals and proposed solutions are rewarded with more accurate outcomes. It should have always been thus. but I'll take it.</p>
]]></description><pubDate>Fri, 05 Jun 2026 18:05:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=48416078</link><dc:creator>scelerat</dc:creator><comments>https://news.ycombinator.com/item?id=48416078</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48416078</guid></item><item><title><![CDATA[New comment by scelerat in "What we lost when we stopped letting kids leave the front yard"]]></title><description><![CDATA[
<p>As I'm sure many people on HN with kids do, I think very highly of my toddler's capabilities. I'm looking forward to the day I can stick him on a cross-town bus and have him fly solo (or at least with a peer/buddy). I'm hoping he can do it by age eight or nine. That was the same age my parents let me ride my bike several miles across town to a friend's house.<p>My biggest fear for my kid out in the world is not abduction, but injury or death by automobile.</p>
]]></description><pubDate>Tue, 26 May 2026 16:59:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=48282449</link><dc:creator>scelerat</dc:creator><comments>https://news.ycombinator.com/item?id=48282449</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48282449</guid></item><item><title><![CDATA[New comment by scelerat in "The fun has been optimized out of the Internet"]]></title><description><![CDATA[
<p>as someone who laments the loss of spaces and pastimes that once brought people together -- bowling alleys, dance halls, pubs, movie houses, etc. -- to work from home, home entertainment and especially anything and everything online, I keep hoping for some kind of reversal.<p>Maybe the day is getting closer when anything and everything internet-related is so drenched in uncanny artifice and extractionary intention that people will yearn for imperfect, multidimensional reality, and feel like the best thing they can do with their time is walk through the park with a friend.</p>
]]></description><pubDate>Tue, 05 May 2026 16:08:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=48024442</link><dc:creator>scelerat</dc:creator><comments>https://news.ycombinator.com/item?id=48024442</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48024442</guid></item><item><title><![CDATA[New comment by scelerat in "The operating cost of adult and gambling startups"]]></title><description><![CDATA[
<p>It's not that credit card companies have some kind of moral bone to pick, it is that the legal, logistical and political morass of dealing with the variety of state and national laws, definitions of porn, protections of children and non-consenting performers, etc. are such that it is not worth it for them to pursue.<p>Similar issues exist for, e.g., companies and sites selling legal THC and THC products.</p>
]]></description><pubDate>Sat, 25 Apr 2026 01:40:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=47897847</link><dc:creator>scelerat</dc:creator><comments>https://news.ycombinator.com/item?id=47897847</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47897847</guid></item><item><title><![CDATA[New comment by scelerat in "Musicians are manufacturing sold-out shows"]]></title><description><![CDATA[
<p>There is a psychological hype effect which affects both audience and performers in a capacity room of any size. Whether it's 50 or 5000, if the room is full, you feel it, and it adds to the excitement, tension and maybe magic of the event. There's nothing worse than playing an empty room, and some of the best times I've ever had have been with a band and thirty people crammed into a living room.</p>
]]></description><pubDate>Wed, 22 Apr 2026 14:51:42 +0000</pubDate><link>https://news.ycombinator.com/item?id=47864491</link><dc:creator>scelerat</dc:creator><comments>https://news.ycombinator.com/item?id=47864491</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47864491</guid></item><item><title><![CDATA[New comment by scelerat in "The quiet disappearance of the free-range childhood"]]></title><description><![CDATA[
<p>only slightly serious. children are a joy! right? right??</p>
]]></description><pubDate>Sun, 19 Apr 2026 15:16:20 +0000</pubDate><link>https://news.ycombinator.com/item?id=47824921</link><dc:creator>scelerat</dc:creator><comments>https://news.ycombinator.com/item?id=47824921</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47824921</guid></item><item><title><![CDATA[New comment by scelerat in "The quiet disappearance of the free-range childhood"]]></title><description><![CDATA[
<p>It's not even "in the street" I'm worried about -- it's the lunatics who drive like they are the main character in a single-player RPG. Not looking for bikes or pedestrians, crashing into parked cars and houses.</p>
]]></description><pubDate>Sat, 18 Apr 2026 19:47:37 +0000</pubDate><link>https://news.ycombinator.com/item?id=47818934</link><dc:creator>scelerat</dc:creator><comments>https://news.ycombinator.com/item?id=47818934</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47818934</guid></item><item><title><![CDATA[New comment by scelerat in "The quiet disappearance of the free-range childhood"]]></title><description><![CDATA[
<p>Riight! I was wondering why some people had more than one. Like, I wonder that every single ever-loving day</p>
]]></description><pubDate>Sat, 18 Apr 2026 19:43:11 +0000</pubDate><link>https://news.ycombinator.com/item?id=47818898</link><dc:creator>scelerat</dc:creator><comments>https://news.ycombinator.com/item?id=47818898</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47818898</guid></item></channel></rss>