<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: tompark</title><link>https://news.ycombinator.com/user?id=tompark</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sat, 12 Sep 2026 07:52:27 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=tompark" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by tompark in "Show HN: Bodily Oddities"]]></title><description><![CDATA[
<p>I immediately looked up whether it had "piss shiver" and it did. It was disappointing when Cecil (Straight Dope) refused to investigate it.<p>(Don't suppose you'd include orgasmic quiver?)<p>Synesthesia is multifaceted. When I was a kid I used to feel a shape in my hand whenever I felt a certain emotion. That went away in my 20's. Later as an adult I guessed it was a kind of synesthesia.</p>
]]></description><pubDate>Fri, 11 Sep 2026 00:27:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=49651983</link><dc:creator>tompark</dc:creator><comments>https://news.ycombinator.com/item?id=49651983</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49651983</guid></item><item><title><![CDATA[New comment by tompark in "Culture Becomes a Dark Forest"]]></title><description><![CDATA[
<p>Yup. I'm more paranoid about AI training on my chats than most ppl are. While I use frontier models to do research and to build tools, I've tried to avoid discussing details about my projects (e.g. story worldbuilding) except when using local models like Qwen-27B. Of course this slows down progress and has a real opportunity cost, but it would kill all my motivation if I got "scooped" like that.</p>
]]></description><pubDate>Wed, 09 Sep 2026 22:31:21 +0000</pubDate><link>https://news.ycombinator.com/item?id=49635486</link><dc:creator>tompark</dc:creator><comments>https://news.ycombinator.com/item?id=49635486</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49635486</guid></item><item><title><![CDATA[New comment by tompark in "“It works better in the app”"]]></title><description><![CDATA[
<p>I use various bookmarklets to address this issue. The javascript is easy enough that you can modify it even if you're not a programmer. For example see: <a href="https://news.ycombinator.com/item?id=43488943">https://news.ycombinator.com/item?id=43488943</a></p>
]]></description><pubDate>Fri, 28 Aug 2026 21:42:49 +0000</pubDate><link>https://news.ycombinator.com/item?id=49484585</link><dc:creator>tompark</dc:creator><comments>https://news.ycombinator.com/item?id=49484585</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49484585</guid></item><item><title><![CDATA[In Japan, 'calf hair harassment' exposes gender-based appearance conflicts]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.lemonde.fr/en/international/article/2026/08/10/in-japan-calf-hair-harassment-exposes-gender-based-appearance-conflicts-between-women-and-men_6756332_4.html">https://www.lemonde.fr/en/international/article/2026/08/10/in-japan-calf-hair-harassment-exposes-gender-based-appearance-conflicts-between-women-and-men_6756332_4.html</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49249835">https://news.ycombinator.com/item?id=49249835</a></p>
<p>Points: 12</p>
<p># Comments: 12</p>
]]></description><pubDate>Mon, 10 Aug 2026 21:13:49 +0000</pubDate><link>https://www.lemonde.fr/en/international/article/2026/08/10/in-japan-calf-hair-harassment-exposes-gender-based-appearance-conflicts-between-women-and-men_6756332_4.html</link><dc:creator>tompark</dc:creator><comments>https://news.ycombinator.com/item?id=49249835</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49249835</guid></item><item><title><![CDATA[New comment by tompark in "Prominent Haskell defector pilloried by anti-AI purists"]]></title><description><![CDATA[
<p>Is "one of its most prominent users" a typical LLM phrase? Doesn't seem like it to me.</p>
]]></description><pubDate>Thu, 16 Jul 2026 08:28:56 +0000</pubDate><link>https://news.ycombinator.com/item?id=48931772</link><dc:creator>tompark</dc:creator><comments>https://news.ycombinator.com/item?id=48931772</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48931772</guid></item><item><title><![CDATA[New comment by tompark in "Ask HN: Opinionated Agent Setup?"]]></title><description><![CDATA[
<p>Most developers I know don't seem to care about the "right way" to run agents. They either yolo it on their primary dev machine, or setup a separate box (VM, VPS, Rpi, Mac mini) and let it run there with minimal protection. You could simply do the same, running Hermes or Pi on a VPS (e.g. Digital Ocean). Note that Pi has no protections so you probably ought to take extra steps. Hermes uses a container.<p>My setup took a long time to build and I don't know any devs personally who go thru the trouble.<p>* I use a custom harness in a podman container run by a non-sudoer system account. File access is limited to specific ZFS datasets. I don't use Anthropic models for agentic work.<p>* You can find an open-source network proxy that injects credentials into the network requests, I made a custom one.<p><pre><code>   https://github.com/onecli/onecli
   https://github.com/smart-mcp-proxy/mcpproxy-go
   https://github.com/mcpharbour/mcpharbour
   https://github.com/bglusman/calciforge 
</code></pre>
* I made a custom shell (nearly posix-compliant) and don't give it access to regular bash, thus no need to filter its shell commands. You could use an open-source one if you care about this: `<a href="https://github.com/search?q=agent+bash+shell&type=repositories" rel="nofollow">https://github.com/search?q=agent+bash+shell&type=repositori...</a>`<p>* Same story for agent memory, context management and token reduction/compression, but this requires a lot of constant tweaking. Again, there are a lot of open-source repos addressing these aspects. Just search github, hn.algolia.com, and/or look at subreddits like /r/agentsofai /r/ai_agents<p>* Also the agent must be able to run/test the generated code, so if you're targeting another platform you need a MCP or deployment tool that'll allow testing.</p>
]]></description><pubDate>Thu, 09 Jul 2026 12:36:47 +0000</pubDate><link>https://news.ycombinator.com/item?id=48844928</link><dc:creator>tompark</dc:creator><comments>https://news.ycombinator.com/item?id=48844928</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48844928</guid></item><item><title><![CDATA[New comment by tompark in "Costco and Safeway are getting housing built where others fail"]]></title><description><![CDATA[
<p>Huh. I thought it the opposite of AI writing. A smart-and-bored human writer who assumed the reader already knew what the writer did, and cleverly avoided conveying any direct points, forcing the reader to try to read between the lines. Very frustrating.</p>
]]></description><pubDate>Mon, 15 Jun 2026 21:43:05 +0000</pubDate><link>https://news.ycombinator.com/item?id=48547395</link><dc:creator>tompark</dc:creator><comments>https://news.ycombinator.com/item?id=48547395</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48547395</guid></item><item><title><![CDATA[New comment by tompark in "Appreciating Exif"]]></title><description><![CDATA[
<p>A few years ago I wrote an exif parser too, solely for reading/editing text comments, which is much simpler than what you did. Even then, yes, it's not pretty, very frustrating. There are multiple places to put text in exif, and it took a while to find most (all?) the edge cases.<p>But now it's quite different with LLMs. I recently updated my code and Claude had useful recommendations.</p>
]]></description><pubDate>Sun, 14 Jun 2026 01:37:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=48523346</link><dc:creator>tompark</dc:creator><comments>https://news.ycombinator.com/item?id=48523346</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48523346</guid></item><item><title><![CDATA[New comment by tompark in "Ask HN: What was it like for programmers when spreadsheets became ubiquitous?"]]></title><description><![CDATA[
<p>It's possible that mainframe Oracle DBAs working on glass house HP 9000s looked at PC databases as toys, but within the PC industry these tools were considered powerful. Any growth of PC usage was a rising tide that lifted all the boats in the PC industry. If you had some experience programming in C, it was pretty easy to get a job. There weren't 100's (or 1000's) of job applicants for each position. If it was a niche segment, you could even know all the other candidates for an opening, as in "No Other Choice". (I was in a niche like that, developing architectural and facilities mgmt PC CAD software, then later cartography, for Microstation.)<p>I think the production shift from agriculture to manufacturing, or manufacturing to services, is probably a better way to understand what's happening now.</p>
]]></description><pubDate>Sun, 15 Mar 2026 17:46:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=47389826</link><dc:creator>tompark</dc:creator><comments>https://news.ycombinator.com/item?id=47389826</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47389826</guid></item><item><title><![CDATA[New comment by tompark in "Model is 6'2" wearing size Medium"]]></title><description><![CDATA[
<p><i>sigh</i> American car culture.<p>I have the same problem and I'm only 5'11" (177 cm). Size "Small" might fit at the neck/shoulders but with lots of extra fabric around my midsection, but most retailers don't carry much inventory for Small, and almost never have Extra Small. In the SF Bay Area, the small items are always out of stock.<p>At one point I found that clothing boutiques in the Castro tended to stock clothes for skinny guys, but those stores disappeared during the pandemic.<p>Now I have to go shopping in Seoul or Tokyo or NYC, but if the pants fit in the waist, they're usually too short.</p>
]]></description><pubDate>Sat, 21 Feb 2026 04:37:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=47097546</link><dc:creator>tompark</dc:creator><comments>https://news.ycombinator.com/item?id=47097546</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47097546</guid></item><item><title><![CDATA[New comment by tompark in "Transparent Toilets Take Tokyo's Culture of Hygiene to the Next Level"]]></title><description><![CDATA[
<p>Nice, was kind of curious about these after seeing them recently in "Perfect Days" (2023, Wim Wenders).</p>
]]></description><pubDate>Tue, 03 Feb 2026 16:49:49 +0000</pubDate><link>https://news.ycombinator.com/item?id=46873462</link><dc:creator>tompark</dc:creator><comments>https://news.ycombinator.com/item?id=46873462</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46873462</guid></item><item><title><![CDATA[New comment by tompark in "Ask HN: Pivot from SWE to What?"]]></title><description><![CDATA[
<p>I'm guessing I'm over twice your age but my situation is similar to yours in a couple aspects. What I decided to do is focus on exploring the new capabilities that AI will allow individuals to do (especially those of us who can code). There are a lot of ppl who are justifiably frustrated with the current state of the tools. But don't get discouraged by that. I've seen A LOT of tech waves. It's still early in the AI era. I won't suggest any particular approach but recommend giving it some thought.<p>BTW, being an old timer, I also hated the leetcode thing when it became a widespread thing after Google adopted the practice in the wake of The Joel (Spolsky) Test. But you know, years later when I had to go through some interviews, I did spend a few months studying it and it turned out to be pretty fun. But passing technical screenings didn't help me land a job... only connecting via my network seemed to make any difference.</p>
]]></description><pubDate>Thu, 25 Dec 2025 21:20:47 +0000</pubDate><link>https://news.ycombinator.com/item?id=46387108</link><dc:creator>tompark</dc:creator><comments>https://news.ycombinator.com/item?id=46387108</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46387108</guid></item><item><title><![CDATA[New comment by tompark in "AI Data Center Gold Rush Driven by Newcomers"]]></title><description><![CDATA[
<p><a href="https://archive.ph/ZLA4y" rel="nofollow">https://archive.ph/ZLA4y</a></p>
]]></description><pubDate>Mon, 22 Dec 2025 13:07:48 +0000</pubDate><link>https://news.ycombinator.com/item?id=46353849</link><dc:creator>tompark</dc:creator><comments>https://news.ycombinator.com/item?id=46353849</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46353849</guid></item><item><title><![CDATA[AI Data Center Gold Rush Driven by Newcomers]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.bloomberg.com/graphics/2025-ai-data-center-ownership/">https://www.bloomberg.com/graphics/2025-ai-data-center-ownership/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=46353848">https://news.ycombinator.com/item?id=46353848</a></p>
<p>Points: 1</p>
<p># Comments: 1</p>
]]></description><pubDate>Mon, 22 Dec 2025 13:07:48 +0000</pubDate><link>https://www.bloomberg.com/graphics/2025-ai-data-center-ownership/</link><dc:creator>tompark</dc:creator><comments>https://news.ycombinator.com/item?id=46353848</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46353848</guid></item><item><title><![CDATA[Why Nvidia maintains its moat and Gemini won't kill OpenAI]]></title><description><![CDATA[
<p>Article URL: <a href="https://siliconangle.com/2025/12/21/nvidia-maintains-moat-gemini-wont-kill-openai/">https://siliconangle.com/2025/12/21/nvidia-maintains-moat-gemini-wont-kill-openai/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=46353815">https://news.ycombinator.com/item?id=46353815</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Mon, 22 Dec 2025 13:02:08 +0000</pubDate><link>https://siliconangle.com/2025/12/21/nvidia-maintains-moat-gemini-wont-kill-openai/</link><dc:creator>tompark</dc:creator><comments>https://news.ycombinator.com/item?id=46353815</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46353815</guid></item><item><title><![CDATA[New comment by tompark in "Coursera to combine with Udemy"]]></title><description><![CDATA[
<p>After Coursera/Udacity/EdX discontinued courses that I wanted to take, or removed access to ones I only partially completed, I switched to buying classes on Udemy. I completed only a handful of many purchases, and the quality level was okay-to-mediocre but better than nothing, so I got more value out of Udemy than Coursera.<p>I also found that Youtube videos are just as informative as Udemy classes, but they're not always as well structured.<p>The MOOCs had some pretty cool/interesting university classes that don't exist anywhere else. It's a shame those videos weren't preserved where we can access/purchase them without attending the college.</p>
]]></description><pubDate>Wed, 17 Dec 2025 18:49:15 +0000</pubDate><link>https://news.ycombinator.com/item?id=46303750</link><dc:creator>tompark</dc:creator><comments>https://news.ycombinator.com/item?id=46303750</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46303750</guid></item><item><title><![CDATA[New comment by tompark in "How does a "you interview for US company, we do the work" scam work?"]]></title><description><![CDATA[
<p>Similar thread:<p><a href="https://news.ycombinator.com/item?id=41641446">https://news.ycombinator.com/item?id=41641446</a></p>
]]></description><pubDate>Fri, 12 Dec 2025 12:41:38 +0000</pubDate><link>https://news.ycombinator.com/item?id=46243574</link><dc:creator>tompark</dc:creator><comments>https://news.ycombinator.com/item?id=46243574</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46243574</guid></item><item><title><![CDATA[OpenAI report reveals 6x productivity gap btwn AI power users and everyone else]]></title><description><![CDATA[
<p>Article URL: <a href="https://venturebeat.com/ai/openai-report-reveals-a-6x-productivity-gap-between-ai-power-users-and">https://venturebeat.com/ai/openai-report-reveals-a-6x-productivity-gap-between-ai-power-users-and</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=46229621">https://news.ycombinator.com/item?id=46229621</a></p>
<p>Points: 2</p>
<p># Comments: 1</p>
]]></description><pubDate>Thu, 11 Dec 2025 10:17:34 +0000</pubDate><link>https://venturebeat.com/ai/openai-report-reveals-a-6x-productivity-gap-between-ai-power-users-and</link><dc:creator>tompark</dc:creator><comments>https://news.ycombinator.com/item?id=46229621</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46229621</guid></item><item><title><![CDATA[New comment by tompark in "US Passport Power Falls to Historic Low"]]></title><description><![CDATA[
<p>The REAL ID Act, effective 2025.
<a href="https://www.uspassporthelpguide.com/passport-required-domestic-air-travel/" rel="nofollow">https://www.uspassporthelpguide.com/passport-required-domest...</a><p>But OTOH there's a chart on this page that shows a longer term trend of nearly linear growth in US passport holder percentage from the 1990's: <a href="https://lindynewsletter.beehiiv.com/p/japan-gets-there-first-abc5" rel="nofollow">https://lindynewsletter.beehiiv.com/p/japan-gets-there-first...</a></p>
]]></description><pubDate>Thu, 16 Oct 2025 18:35:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=45609029</link><dc:creator>tompark</dc:creator><comments>https://news.ycombinator.com/item?id=45609029</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45609029</guid></item><item><title><![CDATA[New comment by tompark in "When the job search becomes impossible"]]></title><description><![CDATA[
<p>I agree, some of the worst employees I've seen were hired that way.<p>I haven't hired anyone recently but btwn 10-20 years ago I did hire a lot. Of course we reached out via our network of connections but that gets tapped out fast, so you have to rely on job postings. It was <i>always</i> hundreds of applicants per opening. Back then it wasn't 1000's but it might as well have been because I didn't have enough time to sift through them all. That's ok, you can just approach it like "the dowry problem" (also known as the secretary problem [1]).<p>But the job market and hiring is way worse now, and it's pretty horrible for job seekers atm.<p>[1] <a href="https://en.wikipedia.org/wiki/Secretary_problem" rel="nofollow">https://en.wikipedia.org/wiki/Secretary_problem</a></p>
]]></description><pubDate>Wed, 17 Sep 2025 10:34:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=45274067</link><dc:creator>tompark</dc:creator><comments>https://news.ycombinator.com/item?id=45274067</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45274067</guid></item></channel></rss>