<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: LoganDark</title><link>https://news.ycombinator.com/user?id=LoganDark</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Tue, 11 Aug 2026 18:17:20 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=LoganDark" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by LoganDark in "I was accused of using AI in my dissertation but I wrote it all myself"]]></title><description><![CDATA[
<p>I've seen people on HN mistake genuine writing for LLM output as well. It seems to be most common with Aspie writing, presumably because of their learning style. I think I've seen it happen two or three times?</p>
]]></description><pubDate>Tue, 11 Aug 2026 13:41:56 +0000</pubDate><link>https://news.ycombinator.com/item?id=49258193</link><dc:creator>LoganDark</dc:creator><comments>https://news.ycombinator.com/item?id=49258193</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49258193</guid></item><item><title><![CDATA[New comment by LoganDark in "Rust SIMD on the GPU"]]></title><description><![CDATA[
<p>> This is very likely not the kind of feature that will stay on nightly for a long time, but is instead one of the many convenience feature that land on stable every release.<p>Easy example of a basic method that has been unstable for a really long time: [T]::as_slice [0] since 2024 [1]. Apparently, stabilization was attempted earlier this year [2] but was then rolled back [3]. While clearly it was not yet ready for stabilization, it still took over a year before the first attempt.<p>Another one: Option::zip_with [4] since 2020 because nobody's figured out if it's worth having over .zip(...).map(...). Option::zip was actually stabilized [5] later in 2020 but Option::zip_with has since been sitting in limbo for over five years.<p>Another one: <*const [T]>::as_ptr also since 2020 [6]. I can't remember if there's an alternative now but dealing with slice pointers without relying on unstable methods has historically been very difficult/annoying. I ran into a bunch of this kinda stuff while working on a crate for iterating over rows/columns of image buffer subregions, because I wanted to use and support slice pointers. (Specifically I think getting the length of the slice pointer was nearly impossible without invoking UB, because constructing a reference (which was the only safe way to access a len method) could break aliasing rules. However I think the len method on slice pointers was stabilized a while ago so that particular problem is no more.) Speaking of which, <*mut [T]>::split_at_mut has been unstable since 2022 [7]...<p>I'm not saying there's no reason for any of this, just that as a Rust developer it's been frustrating. There are enough of these all over the place that it feels like a real occurring problem, even if it's not reasonable to expect a volunteer open-source project to pay full attention to everything ever.<p>[0]: <a href="https://doc.rust-lang.org/std/primitive.slice.html#method.as_slice" rel="nofollow">https://doc.rust-lang.org/std/primitive.slice.html#method.as...</a><p>[1]: <a href="https://github.com/rust-lang/rust/issues/130366" rel="nofollow">https://github.com/rust-lang/rust/issues/130366</a><p>[2]: <a href="https://github.com/rust-lang/rust/pull/151603" rel="nofollow">https://github.com/rust-lang/rust/pull/151603</a><p>[3]: <a href="https://github.com/rust-lang/rust/pull/152963" rel="nofollow">https://github.com/rust-lang/rust/pull/152963</a><p>[4]: <a href="https://github.com/rust-lang/rust/issues/70086" rel="nofollow">https://github.com/rust-lang/rust/issues/70086</a><p>[5]: <a href="https://github.com/rust-lang/rust/pull/72938" rel="nofollow">https://github.com/rust-lang/rust/pull/72938</a><p>[6]: <a href="https://github.com/rust-lang/rust/issues/74265" rel="nofollow">https://github.com/rust-lang/rust/issues/74265</a><p>[7]: <a href="https://github.com/rust-lang/rust/issues/95595" rel="nofollow">https://github.com/rust-lang/rust/issues/95595</a><p>> Can't you tell it to use stable as the default target, and use nightly manually in cargo?<p>Are you saying it doesn't suggest unstable features when using a stable toolchain? That was not my experience before I started using nightly.</p>
]]></description><pubDate>Tue, 11 Aug 2026 07:58:16 +0000</pubDate><link>https://news.ycombinator.com/item?id=49254762</link><dc:creator>LoganDark</dc:creator><comments>https://news.ycombinator.com/item?id=49254762</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49254762</guid></item><item><title><![CDATA[New comment by LoganDark in "Microsoft Responds to Outcry After Quiet Enterprise Install of Beta 'Photos' App"]]></title><description><![CDATA[
<p>I'm pretty sure that post is about SteamOS, since gaming is one of the only things keeping a substantial portion of the consumer population on Windows</p>
]]></description><pubDate>Tue, 11 Aug 2026 06:25:45 +0000</pubDate><link>https://news.ycombinator.com/item?id=49254082</link><dc:creator>LoganDark</dc:creator><comments>https://news.ycombinator.com/item?id=49254082</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49254082</guid></item><item><title><![CDATA[New comment by LoganDark in "Rust SIMD on the GPU"]]></title><description><![CDATA[
<p>It's been annoying to me as an end user that so many basic things require nightly. I use nightly as my main toolchain, but enabling unstable features makes a project nightly-only, which is undesired for crates that don't already revolve around the unstable feature.<p>I most often encounter unstable features when I reach for a basic common-sense utility method and discover that it's not stable. Like just earlier today I would have reached for bool::toggle which not only is unstable, but is also newly added as of like a month ago! but some unstable methods have been sitting around for years.<p>And now that IntelliJ-Rust is proprietary, I can't even make a feature request anymore for the ability to exclude unstable features from the autocomplete. So they will taunt me forever, perfect little helpers just locked away.</p>
]]></description><pubDate>Tue, 11 Aug 2026 03:48:16 +0000</pubDate><link>https://news.ycombinator.com/item?id=49253147</link><dc:creator>LoganDark</dc:creator><comments>https://news.ycombinator.com/item?id=49253147</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49253147</guid></item><item><title><![CDATA[New comment by LoganDark in "Rust SIMD on the GPU"]]></title><description><![CDATA[
<p>Maybe things being on the front page reminds others? After seeing something, sometimes you can have ideas relating to it for a while.</p>
]]></description><pubDate>Tue, 11 Aug 2026 03:45:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=49253125</link><dc:creator>LoganDark</dc:creator><comments>https://news.ycombinator.com/item?id=49253125</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49253125</guid></item><item><title><![CDATA[New comment by LoganDark in "Tl;dv: Over 180k meetings left wide open"]]></title><description><![CDATA[
<p>> I wanted to say something so badly. "Hey, you might want server-side validation too." But this was a proof of concept, not a consultation.<p>oh man, imagine telling them "you don't want people like me breaking into your app! Just look at how I got into this call!"</p>
]]></description><pubDate>Mon, 10 Aug 2026 23:32:52 +0000</pubDate><link>https://news.ycombinator.com/item?id=49251314</link><dc:creator>LoganDark</dc:creator><comments>https://news.ycombinator.com/item?id=49251314</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49251314</guid></item><item><title><![CDATA[New comment by LoganDark in "How Claude marks AI-generated content"]]></title><description><![CDATA[
<p>I suspect it's because of alignment concerns. The more deeply they can integrate their principles, the harder it'll be to misuse. Or at least that's the idea.</p>
]]></description><pubDate>Mon, 10 Aug 2026 22:34:52 +0000</pubDate><link>https://news.ycombinator.com/item?id=49250814</link><dc:creator>LoganDark</dc:creator><comments>https://news.ycombinator.com/item?id=49250814</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49250814</guid></item><item><title><![CDATA[New comment by LoganDark in "Deletes all instances of Microsoft's GDID and prevents minting of new ones"]]></title><description><![CDATA[
<p>Here's one from a couple years back: <a href="https://petri.com/windows-10-ignoring-hosts-file-specific-name-resolution/" rel="nofollow">https://petri.com/windows-10-ignoring-hosts-file-specific-na...</a><p>AFAICT it has not changed.</p>
]]></description><pubDate>Mon, 10 Aug 2026 06:43:37 +0000</pubDate><link>https://news.ycombinator.com/item?id=49240109</link><dc:creator>LoganDark</dc:creator><comments>https://news.ycombinator.com/item?id=49240109</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49240109</guid></item><item><title><![CDATA[New comment by LoganDark in "Show HN: 35k+ paper psychedelic library that knows LSD from Lumpy Skin Disease"]]></title><description><![CDATA[
<p>Psychedelics are the best. I am super excited for research in the area, the "war on drugs" is such a terrible thing.</p>
]]></description><pubDate>Mon, 10 Aug 2026 00:37:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=49237882</link><dc:creator>LoganDark</dc:creator><comments>https://news.ycombinator.com/item?id=49237882</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49237882</guid></item><item><title><![CDATA[New comment by LoganDark in "Deletes all instances of Microsoft's GDID and prevents minting of new ones"]]></title><description><![CDATA[
<p>Windows has a hardcoded list of Microsoft domain names that entirely bypass the hosts file. I see nothing about this, so I would assume there is no countermeasure here. Curiously, this approach appears to have been tested as working anyway.</p>
]]></description><pubDate>Sun, 09 Aug 2026 21:00:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=49235822</link><dc:creator>LoganDark</dc:creator><comments>https://news.ycombinator.com/item?id=49235822</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49235822</guid></item><item><title><![CDATA[New comment by LoganDark in "Tech sucks: You have to vote with your wallet, or nothing will change"]]></title><description><![CDATA[
<p>What do you mean by quality? Are you talking about control?</p>
]]></description><pubDate>Sun, 09 Aug 2026 20:28:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=49235485</link><dc:creator>LoganDark</dc:creator><comments>https://news.ycombinator.com/item?id=49235485</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49235485</guid></item><item><title><![CDATA[New comment by LoganDark in "Tech sucks: You have to vote with your wallet, or nothing will change"]]></title><description><![CDATA[
<p>Finding a laptop with even a keyboard layout I like is difficult. Finding one with both a keyboard and a display I like is seemingly impossible. Then add on performance desires... there will be no such thing. I want portable workstation but with high DPI and no numpad and those don't exist in the PC world.<p>Now, say I buy a MacBook Pro, and compromise on just a few things I didn't like, but that don't critically impact usability. I mean things like full-size function keys, or only 3 Thunderbolt ports (only one on the right!), small stuff. I don't feel especially limited by speed or memory capacity nowadays (although memory bandwidth is still about an order of magnitude off for local LLMs).<p>I'm still upset that it won't play games, but at least a capture card lets me pass through my Windows machine, and I heard Nvidia support in SteamOS might happen in the next year or two. Maybe Asahi might also grow to support my hardware before it expires (unlikely but possible)</p>
]]></description><pubDate>Sun, 09 Aug 2026 20:25:17 +0000</pubDate><link>https://news.ycombinator.com/item?id=49235443</link><dc:creator>LoganDark</dc:creator><comments>https://news.ycombinator.com/item?id=49235443</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49235443</guid></item><item><title><![CDATA[New comment by LoganDark in "Tech sucks: You have to vote with your wallet, or nothing will change"]]></title><description><![CDATA[
<p>Voting with your wallet is not a thing when what you want does not exist. You get to choose from what's on the market. The only way to vote for anything else is to make it yourself.</p>
]]></description><pubDate>Sun, 09 Aug 2026 16:27:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=49232879</link><dc:creator>LoganDark</dc:creator><comments>https://news.ycombinator.com/item?id=49232879</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49232879</guid></item><item><title><![CDATA[New comment by LoganDark in "Depression has tripled in the last 15 years. Arthur Brooks about the cause"]]></title><description><![CDATA[
<p>It feels almost disingenuous to claim it's solely caused by beauty standards.</p>
]]></description><pubDate>Sun, 09 Aug 2026 06:31:12 +0000</pubDate><link>https://news.ycombinator.com/item?id=49228935</link><dc:creator>LoganDark</dc:creator><comments>https://news.ycombinator.com/item?id=49228935</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49228935</guid></item><item><title><![CDATA[New comment by LoganDark in "Depression has tripled in the last 15 years. Arthur Brooks about the cause"]]></title><description><![CDATA[
<p>people don't often understand the integration I have with my devices, and the digital world in general. they are part of me in a very real sense. I learned to operate a computer much the same as someone would learn to move their arm. it is almost something greater than just second nature to me. it feels very similar to how a skilled operator can see heavy machinery as an extension of their body.</p>
]]></description><pubDate>Sun, 09 Aug 2026 01:32:23 +0000</pubDate><link>https://news.ycombinator.com/item?id=49227543</link><dc:creator>LoganDark</dc:creator><comments>https://news.ycombinator.com/item?id=49227543</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49227543</guid></item><item><title><![CDATA[New comment by LoganDark in "Depression has tripled in the last 15 years. Arthur Brooks about the cause"]]></title><description><![CDATA[
<p>That's absolutely not the whole answer and never has been.<p>- People who crave validation seek good looks. They want to be accepted.<p>- People who crave status seek good looks. They want to be awarded.<p>- People who crave admiration seek good looks. They want to be desired.<p>There are so, so many more possible reasons and motivations, and it highly depends on the individual. Someone could have all of the above or none of the above and still obsess over looks. Someone could obsess for different reasons in different contexts or with different moods.<p>It's not based on some infantile monkey-see-monkey-do obsession with media.</p>
]]></description><pubDate>Sun, 09 Aug 2026 01:22:16 +0000</pubDate><link>https://news.ycombinator.com/item?id=49227499</link><dc:creator>LoganDark</dc:creator><comments>https://news.ycombinator.com/item?id=49227499</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49227499</guid></item><item><title><![CDATA[New comment by LoganDark in "Depression has tripled in the last 15 years. Arthur Brooks about the cause"]]></title><description><![CDATA[
<p>That is a thing people do when they feel a lack of control over other aspects of their life. It's a coping mechanism. Frequently comorbid with depression.<p>Also it's quite rude of you to dismiss an <i>entire generation</i> with this belittling rhetoric. Mental health is a really, really big deal.</p>
]]></description><pubDate>Sun, 09 Aug 2026 00:28:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=49227197</link><dc:creator>LoganDark</dc:creator><comments>https://news.ycombinator.com/item?id=49227197</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49227197</guid></item><item><title><![CDATA[New comment by LoganDark in "Denmark Requires Oral Defenses for Students' Written Work to Counter AI Cheating"]]></title><description><![CDATA[
<p>I didn't see it as a threat here at all. I think it was just pointing out an underserved part of the population when it comes to this. And I think "withhold your woe" was meant to say that getting out of your comfort zone can be beneficial sometimes (or in other words, that it's not necessarily actually underserving).</p>
]]></description><pubDate>Sat, 08 Aug 2026 21:17:59 +0000</pubDate><link>https://news.ycombinator.com/item?id=49225997</link><dc:creator>LoganDark</dc:creator><comments>https://news.ycombinator.com/item?id=49225997</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49225997</guid></item><item><title><![CDATA[New comment by LoganDark in "Can Intel finally beat ARM on performance per Watt?"]]></title><description><![CDATA[
<p>Phones have markedly different thermal limits compared to desktop or even laptops. A laptop CPU can easily suck 30W or more while a phone might not ever reach 10W.</p>
]]></description><pubDate>Sat, 08 Aug 2026 20:52:17 +0000</pubDate><link>https://news.ycombinator.com/item?id=49225797</link><dc:creator>LoganDark</dc:creator><comments>https://news.ycombinator.com/item?id=49225797</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49225797</guid></item><item><title><![CDATA[New comment by LoganDark in "Danish high schoolers will have to verbally defend written assignments"]]></title><description><![CDATA[
<p>"Woe" is also sometimes used to tell someone to just suck it up and deal with it. In those cases it is a way to make fun of someone for being too sensitive or complaining too much.</p>
]]></description><pubDate>Sat, 08 Aug 2026 20:45:47 +0000</pubDate><link>https://news.ycombinator.com/item?id=49225742</link><dc:creator>LoganDark</dc:creator><comments>https://news.ycombinator.com/item?id=49225742</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49225742</guid></item></channel></rss>