<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: jeandrek</title><link>https://news.ycombinator.com/user?id=jeandrek</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Tue, 01 Sep 2026 06:58:29 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=jeandrek" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by jeandrek in "RavynOS: Pre-alpha open-source OS based on Darwin, FreeBSD, Apple open-source"]]></title><description><![CDATA[
<p>Here's macOS 26.5's XNU: <a href="https://github.com/apple-oss-distributions/xnu/tree/ac9718fb1af618d5ce8678d0dc6e8a58f252216f" rel="nofollow">https://github.com/apple-oss-distributions/xnu/tree/ac9718fb...</a>  Could just be what the devs have available, if they're really already going to the trouble to target RPi?</p>
]]></description><pubDate>Mon, 31 Aug 2026 23:37:02 +0000</pubDate><link>https://news.ycombinator.com/item?id=49516134</link><dc:creator>jeandrek</dc:creator><comments>https://news.ycombinator.com/item?id=49516134</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49516134</guid></item><item><title><![CDATA[New comment by jeandrek in "RavynOS: Pre-alpha open-source OS based on Darwin, FreeBSD, Apple open-source"]]></title><description><![CDATA[
<p>It seems so weird that the M series are really SOCs and not just CPUs.  I also don't really want a home computer to have coprocessors just for machine learning...<p>At least they always allow installing your own arbitrary OS.</p>
]]></description><pubDate>Mon, 31 Aug 2026 23:28:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=49516076</link><dc:creator>jeandrek</dc:creator><comments>https://news.ycombinator.com/item?id=49516076</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49516076</guid></item><item><title><![CDATA[New comment by jeandrek in "RavynOS: Pre-alpha open-source OS based on Darwin, FreeBSD, Apple open-source"]]></title><description><![CDATA[
<p>Seems at least one of the same developers works on both PureDarwin and ravynOS: <a href="https://www.puredarwin.org/news/The-Road-to-20-5-0.html" rel="nofollow">https://www.puredarwin.org/news/The-Road-to-20-5-0.html</a>  (This is the first time I've heard of the latter.)</p>
]]></description><pubDate>Mon, 31 Aug 2026 22:29:03 +0000</pubDate><link>https://news.ycombinator.com/item?id=49515633</link><dc:creator>jeandrek</dc:creator><comments>https://news.ycombinator.com/item?id=49515633</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49515633</guid></item><item><title><![CDATA[New comment by jeandrek in "Chicken Scheme 6.0"]]></title><description><![CDATA[
<p>By the current lexical environment I meant the lexical environment at some place in the code (not just the top-level one, which user-initial-environment gives, though it's optional).  I'm not attempting to make a case for anything; but without that RnRS' eval doesn't grant more expressivity than just tacking on an interpreter to every program, which you could also just do yourself.  (It also doesn't complicate the implementation; variable names don't need to be preserved after compiling.)  I.e. it makes sense to say standard Scheme has been less "eval-friendly," even if there were good reasons or one doesn't care.</p>
]]></description><pubDate>Wed, 12 Aug 2026 10:49:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=49270386</link><dc:creator>jeandrek</dc:creator><comments>https://news.ycombinator.com/item?id=49270386</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49270386</guid></item><item><title><![CDATA[New comment by jeandrek in "Chicken Scheme 6.0"]]></title><description><![CDATA[
<p>Common Lisp reader macros hook into the reader itself as it's parsing S-exps and meets some character combination: <a href="http://www.ai.mit.edu/projects/iiip/doc/CommonLISP/HyperSpec/Body/glo_r.html#reader_macro" rel="nofollow">http://www.ai.mit.edu/projects/iiip/doc/CommonLISP/HyperSpec...</a>  Define-syntax is for making special forms (i.e. normal macros).<p>Not that I know why eval should be paired with reader macros.</p>
]]></description><pubDate>Wed, 12 Aug 2026 10:10:56 +0000</pubDate><link>https://news.ycombinator.com/item?id=49270068</link><dc:creator>jeandrek</dc:creator><comments>https://news.ycombinator.com/item?id=49270068</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49270068</guid></item><item><title><![CDATA[New comment by jeandrek in "Chicken Scheme 6.0"]]></title><description><![CDATA[
<p>The less-eval-friendly thing is R5RS only requires two possible "environment specifiers" (2nd arg to eval), returned by SCHEME-REPORT-ENVIRONMENT and NULL-ENVIRONMENT, with no special form or procedure to get the current lexical environment; and R4RS (I just checked) does not specify eval.  There's pretty much no manipulation of environments in the standard; the best is something like<p><pre><code>  ((eval `(lambda (foo) ,exp) (scheme-report-environment 5))
   foo)
</code></pre>
(can't really think of applications for getting the current environment right now except for pseudo-macro stuff)</p>
]]></description><pubDate>Wed, 12 Aug 2026 01:53:41 +0000</pubDate><link>https://news.ycombinator.com/item?id=49266974</link><dc:creator>jeandrek</dc:creator><comments>https://news.ycombinator.com/item?id=49266974</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49266974</guid></item><item><title><![CDATA[New comment by jeandrek in "Chicken Scheme 6.0"]]></title><description><![CDATA[
<p>It does not. <a href="https://conservatory.scheme.org/schemers/Documents/Standards/R5RS/HTML/r5rs-Z-H-5.html#%_chap_2" rel="nofollow">https://conservatory.scheme.org/schemers/Documents/Standards...</a> Particular implementations could.</p>
]]></description><pubDate>Wed, 12 Aug 2026 01:40:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=49266880</link><dc:creator>jeandrek</dc:creator><comments>https://news.ycombinator.com/item?id=49266880</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49266880</guid></item><item><title><![CDATA[New comment by jeandrek in "Chicken Scheme 6.0"]]></title><description><![CDATA[
<p>I've never really heard of installing SRFIs (could be my ignorance); do you mean importing them?  Or is installing SRFI implementations as their own packages really common?  (Haven't really tried R7.)<p>The anti-R6/R7 folks (or what I've heard) won't see a problem so long as you can use CL to build fancy serious software, which lets Scheme stay small and simple for education.  (Of course ideally you'd be able to do any SICP exercise on a Scheme implementation out of the box, though.)</p>
]]></description><pubDate>Tue, 11 Aug 2026 11:15:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=49256385</link><dc:creator>jeandrek</dc:creator><comments>https://news.ycombinator.com/item?id=49256385</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49256385</guid></item><item><title><![CDATA[New comment by jeandrek in "Physical disc production ending in Jan 2028 for new games on PlayStation"]]></title><description><![CDATA[
<p>They're often cheaper and not everything is on Blu-ray.  If Blu-ray was going really strong and overtook DVDs, I'd be happy about it.  I don't really think DVDs are "simpler to operate" except for the fact that you only need cheaper equipment (though one can imagine someone with ingrained habits believing them to be "complicated").</p>
]]></description><pubDate>Thu, 02 Jul 2026 05:49:11 +0000</pubDate><link>https://news.ycombinator.com/item?id=48757027</link><dc:creator>jeandrek</dc:creator><comments>https://news.ycombinator.com/item?id=48757027</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48757027</guid></item><item><title><![CDATA[New comment by jeandrek in "Physical disc production ending in Jan 2028 for new games on PlayStation"]]></title><description><![CDATA[
<p>Supposedly you can still redownload your PSN purchases directly on the PSP itself (log in with a "Device Setup Password")? Unless like me you have a PSP Street, which sadly has no Wi-Fi.</p>
]]></description><pubDate>Thu, 02 Jul 2026 01:10:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=48755137</link><dc:creator>jeandrek</dc:creator><comments>https://news.ycombinator.com/item?id=48755137</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48755137</guid></item><item><title><![CDATA[New comment by jeandrek in "PlayStation Store for PS3 and PS Vita closing in 2026-2027"]]></title><description><![CDATA[
<p>This is the status quo for PSP. Don't know whether it'll call PSN servers (some servers will of course need to exist for downloading in the first place), but otherwise it'll just be like using your PS3 offline, right?<p>The PS3 lets you back up content to a USB flash drive, and you can copy it to your PC from there (see also RPCS3).</p>
]]></description><pubDate>Thu, 02 Jul 2026 00:54:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=48755030</link><dc:creator>jeandrek</dc:creator><comments>https://news.ycombinator.com/item?id=48755030</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48755030</guid></item><item><title><![CDATA[New comment by jeandrek in "Physical disc production ending in Jan 2028 for new games on PlayStation"]]></title><description><![CDATA[
<p>I'm Gen Z and I buy DVDs (though mostly second hand). You're probably right on the whole, though I've only observed the opposite.</p>
]]></description><pubDate>Thu, 02 Jul 2026 00:16:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=48754815</link><dc:creator>jeandrek</dc:creator><comments>https://news.ycombinator.com/item?id=48754815</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48754815</guid></item><item><title><![CDATA[New comment by jeandrek in "Physical disc production ending in Jan 2028 for new games on PlayStation"]]></title><description><![CDATA[
<p>In NZ 4K Blu-rays are too expensive, at least by my standard (there's about one store chain, JB Hi-Fi). Never seen a single one at a second hand shop. (Though I guess a used bin is a place for 2nd hand goods at an otherwise first-hand shop? Which we don't really have.)</p>
]]></description><pubDate>Wed, 01 Jul 2026 23:53:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=48754681</link><dc:creator>jeandrek</dc:creator><comments>https://news.ycombinator.com/item?id=48754681</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48754681</guid></item><item><title><![CDATA[New comment by jeandrek in "Project Valhalla, Explained: How a Decade of Work Arrives in JDK 28"]]></title><description><![CDATA[
<p>Anyone know why the article's 4th picture is about the Jobs obituary gaffe? (It's not just for me, right?)</p>
]]></description><pubDate>Fri, 19 Jun 2026 11:43:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=48597489</link><dc:creator>jeandrek</dc:creator><comments>https://news.ycombinator.com/item?id=48597489</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48597489</guid></item><item><title><![CDATA[New comment by jeandrek in "Emacs appearances in pop culture"]]></title><description><![CDATA[
<p>Nice. I've never seen any of these things except for Tron: Legacy; and I either didn't notice it was Emacs or immediately forgot if I did (you could also sorta take it to be tmux or something if you don't look closely enough to see the *eshell*). But this is the sort of thing I would generally never let my acquaintances hear the end of if I spotted :)</p>
]]></description><pubDate>Fri, 12 Jun 2026 02:44:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=48499244</link><dc:creator>jeandrek</dc:creator><comments>https://news.ycombinator.com/item?id=48499244</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48499244</guid></item></channel></rss>