<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: erikschoster</title><link>https://news.ycombinator.com/user?id=erikschoster</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Tue, 18 Aug 2026 17:30:50 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=erikschoster" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by erikschoster in "AI;DR (AI; Didn't Read)"]]></title><description><![CDATA[
<p>I think you're right, and we've been training ourselves for the shortest path of least resistance for quite a while while kidding ourselves that we're able to somehow preserve the result as worthwhile. Before I ever tried using LLMs for search I had already been training myself for years to offload my thinking to a quick web search and a skim of some plausible result served up.<p>Arguably things like Cliff's Notes and "for dummies" books were sating this impulse before that, I wouldn't be surprised if the line can be traced back further.<p>Since dropping LLMs altogether I've made the connection to the impulse for a superficial jump to the conclusion just by noticing how I use web search, or feverishly scan some text to get to the point.<p>Theoretically I studied critical thinking and have learned decades ago how to recognize when this is OK and when it's a superficial placation of some addiction to closing the book on a subject or micro-subject... but boy whatever good instincts I might have developed back then have significantly eroded over time. Trying to reclaim that again is pretty humbling.</p>
]]></description><pubDate>Mon, 17 Aug 2026 21:34:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=49337980</link><dc:creator>erikschoster</dc:creator><comments>https://news.ycombinator.com/item?id=49337980</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49337980</guid></item><item><title><![CDATA[When is it OK to use AI?]]></title><description><![CDATA[
<p>Article URL: <a href="https://techtonic.fm/episodes/2026-05-18-when-is-it-ok-to-use-ai/">https://techtonic.fm/episodes/2026-05-18-when-is-it-ok-to-use-ai/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49160582">https://news.ycombinator.com/item?id=49160582</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Mon, 03 Aug 2026 19:51:56 +0000</pubDate><link>https://techtonic.fm/episodes/2026-05-18-when-is-it-ok-to-use-ai/</link><dc:creator>erikschoster</dc:creator><comments>https://news.ycombinator.com/item?id=49160582</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49160582</guid></item><item><title><![CDATA[New comment by erikschoster in "Show HN: ssh ssh.place"]]></title><description><![CDATA[
<p>lol no someone else did that while i was drawing it. thanks :)</p>
]]></description><pubDate>Mon, 03 Aug 2026 02:22:45 +0000</pubDate><link>https://news.ycombinator.com/item?id=49150512</link><dc:creator>erikschoster</dc:creator><comments>https://news.ycombinator.com/item?id=49150512</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49150512</guid></item><item><title><![CDATA[New comment by erikschoster in "Show HN: ssh ssh.place"]]></title><description><![CDATA[
<p>This is fun, I tried to draw a flower but it sucks.</p>
]]></description><pubDate>Mon, 03 Aug 2026 02:06:37 +0000</pubDate><link>https://news.ycombinator.com/item?id=49150417</link><dc:creator>erikschoster</dc:creator><comments>https://news.ycombinator.com/item?id=49150417</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49150417</guid></item><item><title><![CDATA[New comment by erikschoster in "Termixer (TUI DJ Mixer)"]]></title><description><![CDATA[
<p>I guess this is a boring and predictable thing to say, but I miss seeing a project like this and being excited about it. Instead I looked at the codebase, see that it seems LLM-generated and assume it hasn't had much thought or care put into it, so I'm not really motivated to even try it out. Sorry. :-/</p>
]]></description><pubDate>Fri, 31 Jul 2026 19:27:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=49127535</link><dc:creator>erikschoster</dc:creator><comments>https://news.ycombinator.com/item?id=49127535</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49127535</guid></item><item><title><![CDATA[New comment by erikschoster in "Show HN: I think I made my own web version of minimalistic audacity"]]></title><description><![CDATA[
<p>I won't harp on you too much for submitting yet another vibe-coded project. What I like about this is that the source code is fairly readable and small. Have the LLM walk you through it piece-by-piece if you haven't already.<p>> HERTZ is a web-based Digital Audio Workstation (DAW) utility designed for instant vocal polishing.<p>I appreciate you have aspirations for the project beyond its current form, but this isn't an accurate description of what it is now. It:<p>- Uses wavesurfer + the wavesurfer regions plugin to display a waveform and allow a subsection of the uploaded audio to be selected<p>- Loads the uploaded audio into a buffer with the web audio API's decodeAudioData and then cuts the selected region out of it<p>- Applies a compression to the selection with the web audio API using hard-coded values (based on a screenshot you gave the LLM apparently according to the comment in the source)<p>- Normalizes the audio with the web audio API<p>- Encodes the audio as a WAV and then feeds that to ffmpeg to convert it to an mp3 for download<p>It seems complete for your use case, to me. You might consider asking the LLM to reword the readme and present it as a tool that applies these compression and normalization settings to a section of an audio file in the browser:<p><pre><code>  // 1. SETTINGS FROM YOUR SCREENSHOTS
  const COMPRESSOR_OPTS = {
      threshold: -20.0,
      ratio: 3.1,
      knee: 5.0,
      attack: 0.03,
      release: 0.1,
  };
  
  const NORMALIZE_TARGET_DB = -3.0;
</code></pre>
It doesn't make a lot of sense as the basis for a web-based DAW right now. I like that you tried to keep it simple and small, though. Even so, you could improve readability by making this all a single HTML file since it's so small. As a learning exercise, you could try doing that yourself without the LLM. It would be a good way to get to know your project.</p>
]]></description><pubDate>Thu, 30 Jul 2026 16:49:41 +0000</pubDate><link>https://news.ycombinator.com/item?id=49112545</link><dc:creator>erikschoster</dc:creator><comments>https://news.ycombinator.com/item?id=49112545</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49112545</guid></item><item><title><![CDATA[New comment by erikschoster in "How to Write a Quine"]]></title><description><![CDATA[
<p>My bandmate made our site a quine at one point: <a href="https://web.archive.org/web/20161129032158/http://nasa.pink/" rel="nofollow">https://web.archive.org/web/20161129032158/http://nasa.pink/</a><p>Today I suppose this would get clobbered by bots but in 2016 it was fun and I still am in awe of how simple he made it.</p>
]]></description><pubDate>Sat, 25 Jul 2026 00:05:39 +0000</pubDate><link>https://news.ycombinator.com/item?id=49043093</link><dc:creator>erikschoster</dc:creator><comments>https://news.ycombinator.com/item?id=49043093</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49043093</guid></item><item><title><![CDATA[AI]]></title><description><![CDATA[
<p>Article URL: <a href="https://jcs.org/2026/07/23/ai">https://jcs.org/2026/07/23/ai</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49037693">https://news.ycombinator.com/item?id=49037693</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Fri, 24 Jul 2026 16:08:30 +0000</pubDate><link>https://jcs.org/2026/07/23/ai</link><dc:creator>erikschoster</dc:creator><comments>https://news.ycombinator.com/item?id=49037693</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49037693</guid></item><item><title><![CDATA[Making]]></title><description><![CDATA[
<p>Article URL: <a href="https://beej.us/blog/data/ai-making/">https://beej.us/blog/data/ai-making/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49008440">https://news.ycombinator.com/item?id=49008440</a></p>
<p>Points: 442</p>
<p># Comments: 186</p>
]]></description><pubDate>Wed, 22 Jul 2026 15:33:48 +0000</pubDate><link>https://beej.us/blog/data/ai-making/</link><dc:creator>erikschoster</dc:creator><comments>https://news.ycombinator.com/item?id=49008440</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49008440</guid></item><item><title><![CDATA[New comment by erikschoster in "The lost joy of music piracy"]]></title><description><![CDATA[
<p>It was also common to have a collection of CDs you owned and wanted to put on a device like this.</p>
]]></description><pubDate>Thu, 16 Jul 2026 07:45:56 +0000</pubDate><link>https://news.ycombinator.com/item?id=48931456</link><dc:creator>erikschoster</dc:creator><comments>https://news.ycombinator.com/item?id=48931456</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48931456</guid></item><item><title><![CDATA[New comment by erikschoster in "Why write code in 2026"]]></title><description><![CDATA[
<p>> There’s nothing new left to discover.<p>It's the end of history. What could we possibly discover about a series of technologies that are already nearly 100 years old now?<p>I've heard people say that various things are "solved" now because of LLMs too -- programming included. This implies we've "solved" thinking. I'm worried about these sentiments.<p><a href="https://en.wikipedia.org/wiki/End_of_history" rel="nofollow">https://en.wikipedia.org/wiki/End_of_history</a></p>
]]></description><pubDate>Sun, 12 Jul 2026 22:06:00 +0000</pubDate><link>https://news.ycombinator.com/item?id=48885306</link><dc:creator>erikschoster</dc:creator><comments>https://news.ycombinator.com/item?id=48885306</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48885306</guid></item><item><title><![CDATA[New comment by erikschoster in "Show HN: Reviving my 2001 college band with AI"]]></title><description><![CDATA[
<p>The original recordings sound much better and more interesting to me. Way better. The AI generated versions sound slicker in some sense but... like the re-recorded versions of old hit songs from the 60s you hear at the grocery store sometimes. Technically the song is still there, but it blends in with the rest of the muzak.<p>I'm sorry to be so negative, it's great you're returning to the material after all these years, but the AI versions I've listened to all have the same smoothed-over quality that loses everything interesting and relatable to my ears in the original versions.</p>
]]></description><pubDate>Fri, 10 Jul 2026 18:22:20 +0000</pubDate><link>https://news.ycombinator.com/item?id=48863419</link><dc:creator>erikschoster</dc:creator><comments>https://news.ycombinator.com/item?id=48863419</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48863419</guid></item><item><title><![CDATA[New comment by erikschoster in "Building a real-time AI tutor for 5-year-olds"]]></title><description><![CDATA[
<p>Thank you -- your post was downvoted into being hidden for a while, sorry I didn't see it earlier. This context is helpful, the example of the system delivering reading challenges that match their struggles makes a lot of intuitive sense to me.<p>I really appreciate that (it seems to me) your goal is not to replace human tutors, but to raise the general baseline. You emphasize scaling, how does that work in practice if you're trying to target audiences who may not have access to devices that can run your program? What is your plan from the perspective of funding and resources to scale infrastructure as needed to support these audiences?<p>Edit: I also think of other learning systems like duolingo and the application of tablets and computers in schools which begin from good places, but I'm curious if you are studying these alternatives and what you have learned from them?<p>I really think your goals are great, and if you're starting your design of this system from research about effective learning methodologies and working backward from there rather than starting from AI and working backward from there that erodes a lot of my personal skepticism about a project like this. I hope you find a way to make this work.</p>
]]></description><pubDate>Fri, 10 Jul 2026 02:52:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=48855209</link><dc:creator>erikschoster</dc:creator><comments>https://news.ycombinator.com/item?id=48855209</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48855209</guid></item><item><title><![CDATA[New comment by erikschoster in "Building a real-time AI tutor for 5-year-olds"]]></title><description><![CDATA[
<p>Thank you. The segment showing a child reading text on the screen which highlighted a word they had difficulty with seems like it could be a useful learning interaction. How does your system follow up in that case? Have you studied this type of interaction?<p>That's the only moment in the video that gave me a sense of what it might be like for a child using this system.<p>In the blog post you say:<p>> Imagine a custom story about dragons this week, ice princesses the next — woven with the letter blends your child needs to practice right now.<p>Have you considered using an automated orchestration system to deliver literature that already exists? This example seems like an opportunity to introduce children to really thoughtful literature like Astrid Lindgren's Pippi Longstocking stories but I'm deeply skeptical that generating the stories with an LLM would inspire a similar experience.<p>Are there other examples of your platform from the perspective of a child using it? I think those are both interesting cases: 1) interactive feedback on a subject they are making an effort toward mastering, and 2) trying to deliver information when it seems relevant. I'd like to know more about how you are approaching these things and other aspects of the learning process.</p>
]]></description><pubDate>Fri, 10 Jul 2026 02:32:40 +0000</pubDate><link>https://news.ycombinator.com/item?id=48855073</link><dc:creator>erikschoster</dc:creator><comments>https://news.ycombinator.com/item?id=48855073</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48855073</guid></item><item><title><![CDATA[New comment by erikschoster in "Building a real-time AI tutor for 5-year-olds"]]></title><description><![CDATA[
<p>> Effective teaching isn't just about answering a child's question quickly, rather making the right move at the right moment. AI is also going to be an integral part shaping how this generation of kids learn to read and think, tackling this responsibly means getting the design right.<p>Can you elaborate on what the experience is like for the child? How does this system help them learn? The article focuses on optimizing for interactivity and engagement, but doesn't discuss how this system challenges or facilitates learning and why AI needs to be the solution.</p>
]]></description><pubDate>Fri, 10 Jul 2026 01:17:47 +0000</pubDate><link>https://news.ycombinator.com/item?id=48854622</link><dc:creator>erikschoster</dc:creator><comments>https://news.ycombinator.com/item?id=48854622</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48854622</guid></item><item><title><![CDATA[New comment by erikschoster in "Best Simple System for Now (2025)"]]></title><description><![CDATA[
<p>There's no way to formulate this as a set of rules or best practices, each decision has to be made in a universe of context, but I appreciated this discussion.<p>Something I like to do is funnel the desire to build for something I don't need right now into TODOs and even FIXMEs. Sometimes they just get deleted, but other times I'll come across an old TODO during refactoring and be able to pay down a bit of accumulated technical debt.</p>
]]></description><pubDate>Fri, 03 Jul 2026 18:18:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=48778104</link><dc:creator>erikschoster</dc:creator><comments>https://news.ycombinator.com/item?id=48778104</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48778104</guid></item><item><title><![CDATA[New comment by erikschoster in "Lightning Memory-Mapped Database Manager (LMDB) 1.0"]]></title><description><![CDATA[
<p>I use it as a session store for a computer music system. It has worked well for me as a way to read mutable (by any client) parameters during synthesis, clients will often read dozens of parameters during a block of computation (a relatively short window of time in the low milliseconds typically) without adding any noticeable overhead to the render time for each block.<p>Edit: I also tried using it for larger blobs of data (like audio) but ended up only storing a reference to shared memory for larger blocks, anything larger than IIRC 4k that can't be stored in a single node kills performance, but for small values it seems pretty great.</p>
]]></description><pubDate>Thu, 02 Jul 2026 23:04:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=48768518</link><dc:creator>erikschoster</dc:creator><comments>https://news.ycombinator.com/item?id=48768518</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48768518</guid></item><item><title><![CDATA[New comment by erikschoster in "Show HN: Searchable directory of 22k+ products from worker-owned co-ops"]]></title><description><![CDATA[
<p><3 Wonderful. I discovered this:<p><a href="https://catalyticsound.com/artists/" rel="nofollow">https://catalyticsound.com/artists/</a><p>I never thought I'd see anything like that easily accessible on hacker news. (Edit: I say that because this is a project by independent artists that has no real hope for commercial exit -- monetize free jazz, I dare you. Edit: actually don't, please.)</p>
]]></description><pubDate>Thu, 02 Jul 2026 00:16:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=48754820</link><dc:creator>erikschoster</dc:creator><comments>https://news.ycombinator.com/item?id=48754820</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48754820</guid></item><item><title><![CDATA[New comment by erikschoster in "Department of Commerce has lifted export controls on Claude Fable 5 and Mythos 5"]]></title><description><![CDATA[
<p>Drawing debt</p>
]]></description><pubDate>Wed, 01 Jul 2026 02:58:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=48741786</link><dc:creator>erikschoster</dc:creator><comments>https://news.ycombinator.com/item?id=48741786</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48741786</guid></item><item><title><![CDATA[New comment by erikschoster in "Niche LLM Spam on Bandcamp"]]></title><description><![CDATA[
<p>Bandcamp seems to be somewhat overrun with this LLM spam. I became aware of it because there's an account impersonating me with an LLM-generated review of my music which is weirdly specific and surreal.<p>The purpose seems to be to drive traffic to an advertising marketplace website. All the impersonating sites link to the covers.pics website which has no root page, but serves various paths linked in these bandcamp spam pages.<p>I contacted bandcamp twice in the last two weeks about removing it, but I don't know if there are any humans left there. They just replaced the rest of their engineering team with AI yesterday according to a blog post by one of their former engineers.</p>
]]></description><pubDate>Wed, 01 Jul 2026 02:01:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=48741551</link><dc:creator>erikschoster</dc:creator><comments>https://news.ycombinator.com/item?id=48741551</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48741551</guid></item></channel></rss>