<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: MarkMarine</title><link>https://news.ycombinator.com/user?id=MarkMarine</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sun, 09 Aug 2026 09:12:33 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=MarkMarine" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by MarkMarine in "US Military's cyber command unit grapples with cluster of deaths by suicide"]]></title><description><![CDATA[
<p>No one runs into machine gun fire to bring democracy to someone else I can assure you of that.</p>
]]></description><pubDate>Sat, 08 Aug 2026 18:35:59 +0000</pubDate><link>https://news.ycombinator.com/item?id=49224552</link><dc:creator>MarkMarine</dc:creator><comments>https://news.ycombinator.com/item?id=49224552</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49224552</guid></item><item><title><![CDATA[New comment by MarkMarine in "US Military's cyber command unit grapples with cluster of deaths by suicide"]]></title><description><![CDATA[
<p>Can’t speak for others but the most damaging part of direct combat is watching people that you consider to be family die or be maimed.</p>
]]></description><pubDate>Sat, 08 Aug 2026 18:19:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=49224387</link><dc:creator>MarkMarine</dc:creator><comments>https://news.ycombinator.com/item?id=49224387</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49224387</guid></item><item><title><![CDATA[New comment by MarkMarine in "LinkedIn Feed Blocker"]]></title><description><![CDATA[
<p>I’ll never understand why LinkedIn is making these product choices. They have a legitimate moat, I and basically every other tech worker is  exclusively on LinkedIn. They devalue their product by chasing engagement in service of ads, while allowing things like juicebox to scrape and steal their most valuable asset.<p>This is short term, make it to next quarter thinking. You couldn’t pay me to use their AI product, they should focus on making that actually work, get the slop out of the feed, and be professional and distinct from TikTok, Facebook, instagram etc.</p>
]]></description><pubDate>Sat, 08 Aug 2026 17:34:52 +0000</pubDate><link>https://news.ycombinator.com/item?id=49223923</link><dc:creator>MarkMarine</dc:creator><comments>https://news.ycombinator.com/item?id=49223923</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49223923</guid></item><item><title><![CDATA[New comment by MarkMarine in "Improving GPT‑5.6 Sol in ChatGPT, expanding GPT‑5.6 Luna access for free users"]]></title><description><![CDATA[
<p>Flex tier is just as cheap but you don't need to deal with batching or waiting. I see it completing in about ~3x-10x the latency of normal calls, so in seconds. You can always route back to regular if you're getting 429'd on flex too.<p>Flex is also easier to get caching to work, there is a little futzing around with OAI's implicit caching but if you do the upfront work you can get haiku quality responses with caching in close to realtime for 1/7th the cost and you don't need to design a polling loop to check for batch completions</p>
]]></description><pubDate>Fri, 07 Aug 2026 18:41:21 +0000</pubDate><link>https://news.ycombinator.com/item?id=49214657</link><dc:creator>MarkMarine</dc:creator><comments>https://news.ycombinator.com/item?id=49214657</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49214657</guid></item><item><title><![CDATA[New comment by MarkMarine in "GitHub Actions and Pages are experiencing degraded availability"]]></title><description><![CDATA[
<p>Haven't worked in AWS but as a customer of AWS, GCP, and Azure there is a quite a difference between running workloads that are doing long-running computations on AWS (on demand is so rock solid that loosing a box is a rarity, I run on spot and still complete almost all of my runs) and running on Azure's "on-demand" style offering feels like spot (or worse) on AWS.</p>
]]></description><pubDate>Fri, 07 Aug 2026 18:35:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=49214586</link><dc:creator>MarkMarine</dc:creator><comments>https://news.ycombinator.com/item?id=49214586</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49214586</guid></item><item><title><![CDATA[New comment by MarkMarine in "John Deere owners will get the right to repair equipment under FTC settlement"]]></title><description><![CDATA[
<p>Great news, the fine is so small doesn’t matter, but curing the wrong does. My hope is this standard will apply to modern cars as well, repair manuals and the software tools to interact with the cars are also heavily restricted by the manufacturers.</p>
]]></description><pubDate>Thu, 09 Jul 2026 00:15:17 +0000</pubDate><link>https://news.ycombinator.com/item?id=48839245</link><dc:creator>MarkMarine</dc:creator><comments>https://news.ycombinator.com/item?id=48839245</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48839245</guid></item><item><title><![CDATA[New comment by MarkMarine in "Identity verification on Claude"]]></title><description><![CDATA[
<p>If you haven’t talked to Anthropic support yet you’re in for a surprise. I’m an engineer at a company with an enterprise contract, Anthropic people in our slack and it took me a month to get a response on my support request, I just decided it wasn’t worth it and bought a second phone number rather than wait.</p>
]]></description><pubDate>Sun, 21 Jun 2026 18:03:18 +0000</pubDate><link>https://news.ycombinator.com/item?id=48621063</link><dc:creator>MarkMarine</dc:creator><comments>https://news.ycombinator.com/item?id=48621063</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48621063</guid></item><item><title><![CDATA[New comment by MarkMarine in "Linux eliminates the strncpy API after six years of work, 360 patches"]]></title><description><![CDATA[
<p>Performance. A safe Swiss Army knife function that did most of this would be slow because of the internal branching you’d need to be safe, and because there is developer intent in the selection of these functions. I’d rather have the choice and clear dev intent when I see the function used when reading code.</p>
]]></description><pubDate>Sun, 21 Jun 2026 13:02:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=48618611</link><dc:creator>MarkMarine</dc:creator><comments>https://news.ycombinator.com/item?id=48618611</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48618611</guid></item><item><title><![CDATA[New comment by MarkMarine in "A 'cold blob' in the Atlantic could be a sign of AMOC shutdown"]]></title><description><![CDATA[
<p>I don’t see it that way. Some see the invisible hand of the market but I just don’t, the involvement in politics… the purposeful shaping of public opinion that is against the public interest, capital has an interest and it’s making its interest felt.<p>I’m pretty sure the burning fossil fuel and mowing down rainforest isn’t in the long term interest, I’m also sure that if I’m dumb enough to see this the people in control are as well. So I admit I can’t see the end state, but I’m sure the machine is being fed somehow</p>
]]></description><pubDate>Sun, 14 Jun 2026 22:46:56 +0000</pubDate><link>https://news.ycombinator.com/item?id=48533772</link><dc:creator>MarkMarine</dc:creator><comments>https://news.ycombinator.com/item?id=48533772</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48533772</guid></item><item><title><![CDATA[New comment by MarkMarine in "A 'cold blob' in the Atlantic could be a sign of AMOC shutdown"]]></title><description><![CDATA[
<p>The whole framing you’re using is wrong. If you can do climate modeling and math at the planet scale, you don’t need to be convinced you have read the research and you knew 30 years ago.<p>If you’re skeptical of scientific authority and lack those skills… as well as the critical thinking required to read the research and distill your own conclusions, there is basically no way to convince you. You can’t find objective truth yourself and you don’t trust the resources that can.<p>Doesn’t matter anyway, you as an ant in a large colony barely matter, no one needs to convince you. Capital needs to understand it’s in its interest to fix the problem and it will be fixed. Until that, get an A/C and contribute to the problem.</p>
]]></description><pubDate>Sun, 14 Jun 2026 20:43:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=48532449</link><dc:creator>MarkMarine</dc:creator><comments>https://news.ycombinator.com/item?id=48532449</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48532449</guid></item><item><title><![CDATA[New comment by MarkMarine in "Ask HN: What are you working on? (June 2026)"]]></title><description><![CDATA[
<p>My go to for these (was a tractor mechanic early in life) is to start with a big flat blade screwdriver and knock it completely through the side of the filter to the other side  with a hammer, then use that to break the filter loose. I’ve near had one go sideways with that method, you get it through both outside sheet metal and the inner perforated metal that is usually stronger and welded to the threads</p>
]]></description><pubDate>Sun, 14 Jun 2026 20:23:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=48532229</link><dc:creator>MarkMarine</dc:creator><comments>https://news.ycombinator.com/item?id=48532229</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48532229</guid></item><item><title><![CDATA[New comment by MarkMarine in "GitHub is having issues now"]]></title><description><![CDATA[
<p>Definitely got attention during the prod outage at my work. I’m going to find another alternative, I’m sick of this terrible uptime.</p>
]]></description><pubDate>Tue, 28 Apr 2026 04:38:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=47930512</link><dc:creator>MarkMarine</dc:creator><comments>https://news.ycombinator.com/item?id=47930512</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47930512</guid></item><item><title><![CDATA[New comment by MarkMarine in "GitHub Merge Queue Silently Reverted Code"]]></title><description><![CDATA[
<p>This type of pedantry doesn’t add to the discussion. You’re correcting someone’s spelling on the internet, it’s pointless except to make you feel superior, adds nothing. Make a salient point, bring something to the discussion please. Sorry I hurt your feelings bud.</p>
]]></description><pubDate>Sun, 26 Apr 2026 19:01:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=47912894</link><dc:creator>MarkMarine</dc:creator><comments>https://news.ycombinator.com/item?id=47912894</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47912894</guid></item><item><title><![CDATA[New comment by MarkMarine in "GitHub Merge Queue Silently Reverted Code"]]></title><description><![CDATA[
<p>4 people spent hours putting our repo back together at my company after this. GH has been unreliable and now they are breaking the core tenant of what I expect from this service.</p>
]]></description><pubDate>Fri, 24 Apr 2026 05:03:38 +0000</pubDate><link>https://news.ycombinator.com/item?id=47885756</link><dc:creator>MarkMarine</dc:creator><comments>https://news.ycombinator.com/item?id=47885756</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47885756</guid></item><item><title><![CDATA[New comment by MarkMarine in "Official Clojure Documentary page with Video, Shownotes, and Links"]]></title><description><![CDATA[
<p>One of the main problems I have with the models coding is the feedback loop is way down the chain from generation, it's out at the commit boundary for python when your hooks are running, maybe at the point where the model wants to push a PR. The REPL lets that happen during generation, and the other safety measures help immensely. Immutable data, STM, all of the features in Clojure that gave devs super powers now do the same for a model.</p>
]]></description><pubDate>Fri, 17 Apr 2026 00:24:39 +0000</pubDate><link>https://news.ycombinator.com/item?id=47801164</link><dc:creator>MarkMarine</dc:creator><comments>https://news.ycombinator.com/item?id=47801164</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47801164</guid></item><item><title><![CDATA[New comment by MarkMarine in "Claude Opus 4.7"]]></title><description><![CDATA[
<p>Anthropic was chirping about Chinese model companies distilling Claude with the thinking traces, and then the thinking traces started to disappear. Looks like the output product and our understanding has been negatively affected but that pales in comparison with protecting the IP of the model I guess.</p>
]]></description><pubDate>Thu, 16 Apr 2026 18:10:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=47797291</link><dc:creator>MarkMarine</dc:creator><comments>https://news.ycombinator.com/item?id=47797291</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47797291</guid></item><item><title><![CDATA[New comment by MarkMarine in "F-15E jet shot down over Iran"]]></title><description><![CDATA[
<p>As an aviator, that right there counts as an emergency landing. A hard one.<p>They limped it back home, they didn’t ditch a very sensitive airframe over enemy territory, I’d call that a win and the pilot deserves a medal for that.</p>
]]></description><pubDate>Fri, 03 Apr 2026 23:40:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=47633805</link><dc:creator>MarkMarine</dc:creator><comments>https://news.ycombinator.com/item?id=47633805</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47633805</guid></item><item><title><![CDATA[New comment by MarkMarine in "F-15E jet shot down over Iran"]]></title><description><![CDATA[
<p>Add Huey crew chiefs to this list</p>
]]></description><pubDate>Fri, 03 Apr 2026 20:26:40 +0000</pubDate><link>https://news.ycombinator.com/item?id=47631807</link><dc:creator>MarkMarine</dc:creator><comments>https://news.ycombinator.com/item?id=47631807</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47631807</guid></item><item><title><![CDATA[New comment by MarkMarine in "F-15E jet shot down over Iran"]]></title><description><![CDATA[
<p>I don't have a good answer for you. I expected the upper and middle officer corps to conduct themselves with honor and they aren't.<p>I'm going to bet that pilots aren't briefed to hit a school, they get a target package that says this is a legit target, an IRGC command post or something. There are multiple layers of detachment between the person picking coordinates, entering them into a JDAM, and the pilot releasing that weapon so who is ultimately responsible (and this is by design, everyone can tell themselves a story right now to sleep at night.)<p>But you do know what you hit, in the version of the military that I was in there would have been a detailed investigation into the chain of failures that led to striking a school with children in it. I'm sure it weighs heavily on the every person involved in that decision. Cold comfort for the parents of those kids, but something like that leaves a life long scar on the people responsible.</p>
]]></description><pubDate>Fri, 03 Apr 2026 20:06:20 +0000</pubDate><link>https://news.ycombinator.com/item?id=47631545</link><dc:creator>MarkMarine</dc:creator><comments>https://news.ycombinator.com/item?id=47631545</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47631545</guid></item><item><title><![CDATA[New comment by MarkMarine in "F-15E jet shot down over Iran"]]></title><description><![CDATA[
<p>I know you're not.<p>I've found that most of our population has almost no connection to the people that actually fight wars, and therefore have no idea what they think. With the exception of a few criminals, none of us desire to commit war crimes. None of us want to send rounds into civilian infrastructure, seeing regular people struggle to get food, fuel, and water in Iraq did not make me feel powerful and it was obvious it did not advance our goals on the ground.<p>The jingoistic commentary people hear from politicians and former military podcasters that don't fight anymore is repugnant, and this backsliding in the (at least attempt at) honorable execution of war is not going to bode well for our country. It's probably trite when we're double tapping girl's schools, but I want to think that purposely striking civilian infrastructure, universities, hospitals, water resources... this was all something "we" didn't do.<p>This is actively devaluing the meaning of being a Marine. Maybe this already happened in Mai Lai, maybe this was further chipped away by Abu Ghraib, maybe letting Eddie Gallagher off... etc etc. But this feels different in a way I've never felt before.</p>
]]></description><pubDate>Fri, 03 Apr 2026 18:53:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=47630566</link><dc:creator>MarkMarine</dc:creator><comments>https://news.ycombinator.com/item?id=47630566</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47630566</guid></item></channel></rss>