<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: joseluis</title><link>https://news.ycombinator.com/user?id=joseluis</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Fri, 17 Apr 2026 19:04:26 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=joseluis" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by joseluis in "DaVinci Resolve – Photo"]]></title><description><![CDATA[
<p>Even the paid version doesn't include aac support in Linux so you have to transcode the audio from videos recorded from your phone, with ffmpeg for example, prior to opening them with resolve. That's the biggest inconvenience it has for me in Linux. And plugins can't solve that either, because apparently can only add codecs for encoding, not for decoding.</p>
]]></description><pubDate>Tue, 14 Apr 2026 07:57:56 +0000</pubDate><link>https://news.ycombinator.com/item?id=47762644</link><dc:creator>joseluis</dc:creator><comments>https://news.ycombinator.com/item?id=47762644</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47762644</guid></item><item><title><![CDATA[Show HN: ctk-applet – run Cut-the-Knot Java applets locally]]></title><description><![CDATA[
<p>This is a small helper for running Cut-the-Knot Java applets locally.<p>It handles the published classes archive and lets you work directly from the original Cut-the-Knot page URLs with appletviewer.<p>I ended up making it after trying to use the applets myself and realizing the old workflow was still more cumbersome than it needed to be.</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47376413">https://news.ycombinator.com/item?id=47376413</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Sat, 14 Mar 2026 13:19:29 +0000</pubDate><link>https://github.com/joseluis/ctk-applet</link><dc:creator>joseluis</dc:creator><comments>https://news.ycombinator.com/item?id=47376413</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47376413</guid></item><item><title><![CDATA[New comment by joseluis in "Using uninitialized memory for fun and profit (2008)"]]></title><description><![CDATA[
<p>Just a nitpick. Rust's char is really a 21 bit unicode scalar value (a code point without surrogates) using a 32-bit representation and indeed there are a lot of invalid char values in a 32-bit space. Utf-8 is a different encoding format for code points using variable width (1-4 bytes per).</p>
]]></description><pubDate>Wed, 23 Jul 2025 23:35:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=44665212</link><dc:creator>joseluis</dc:creator><comments>https://news.ycombinator.com/item?id=44665212</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44665212</guid></item><item><title><![CDATA[New comment by joseluis in "The centrality of stupidity in mathematics"]]></title><description><![CDATA[
<p>I agree in that the meaning of prove in that context is "put it to the test" but for me it doesn't go as far as finding the rule incorrect, because it's a general rule, not an absolute rule. A lot more exceptions would be necessary to make the rule incorrect for the general case.</p>
]]></description><pubDate>Tue, 17 Sep 2024 20:18:47 +0000</pubDate><link>https://news.ycombinator.com/item?id=41572259</link><dc:creator>joseluis</dc:creator><comments>https://news.ycombinator.com/item?id=41572259</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41572259</guid></item><item><title><![CDATA[New comment by joseluis in "Terence Tao on O1"]]></title><description><![CDATA[
<p>The key difference is that this is a multidisciplinary conversational interface, and a tool in itself for interrelating structured meaning and reshaping it coherently enough  so that it can be of great value both in the specific domain of the dialog, and in the potential to take it on any tangent in any way that can be expressed.<p>Of course it has limitations and you   can't be sleep at the wheel, but that's true of any tool or task.</p>
]]></description><pubDate>Sat, 14 Sep 2024 19:55:38 +0000</pubDate><link>https://news.ycombinator.com/item?id=41542362</link><dc:creator>joseluis</dc:creator><comments>https://news.ycombinator.com/item?id=41542362</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41542362</guid></item><item><title><![CDATA[New comment by joseluis in "WTH Is Cerebrolysin, Actually?"]]></title><description><![CDATA[
<p>That's exactly how I see coffee, and I keep stopping taking it and then coming back every few months...</p>
]]></description><pubDate>Sat, 17 Aug 2024 15:02:02 +0000</pubDate><link>https://news.ycombinator.com/item?id=41275040</link><dc:creator>joseluis</dc:creator><comments>https://news.ycombinator.com/item?id=41275040</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41275040</guid></item><item><title><![CDATA[New comment by joseluis in "Ointers: A library for representing pointers where bits have been stolen (2021)"]]></title><description><![CDATA[
<p>You can do a handy struct wrapper over a private Nonzero that xors the given value with the prohibited value (max in this case) at the new constructor. And like so for the get method. Xoring is very cheap. That's my favorite way of storing indices/links for nodes, since you can wrap them in Option for free.</p>
]]></description><pubDate>Wed, 08 May 2024 16:32:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=40300015</link><dc:creator>joseluis</dc:creator><comments>https://news.ycombinator.com/item?id=40300015</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40300015</guid></item><item><title><![CDATA[New comment by joseluis in "A small Rust binary indeed (2022)"]]></title><description><![CDATA[
<p>I found that the stripping of the libc made impossible for me to manage signals that didn't exit the program. E.g. Sigint worked fine as long as the callback didnt return to the caller but e.g. trying to use Sigwinch or sigcontinue segfaulted and I never found a way to make that work from scratch in this type of binaries without linking to libc... I wonder if that's even possible.</p>
]]></description><pubDate>Mon, 19 Feb 2024 00:11:04 +0000</pubDate><link>https://news.ycombinator.com/item?id=39424885</link><dc:creator>joseluis</dc:creator><comments>https://news.ycombinator.com/item?id=39424885</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39424885</guid></item><item><title><![CDATA[New comment by joseluis in "We need to talk about parentheses (2020)"]]></title><description><![CDATA[
<p>Rust macros can be used like that:<p>let hello = dbg!{ dbg![ dbg!("world") ] };</p>
]]></description><pubDate>Tue, 13 Feb 2024 14:21:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=39357843</link><dc:creator>joseluis</dc:creator><comments>https://news.ycombinator.com/item?id=39357843</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39357843</guid></item><item><title><![CDATA[New comment by joseluis in "Rope making in the Aurignacian of Central Europe more than 35,000 years ago"]]></title><description><![CDATA[
<p>And I'm sure they also did crazy useful complex things with rope, strings, fibers, textiles and skins.</p>
]]></description><pubDate>Sun, 04 Feb 2024 14:50:41 +0000</pubDate><link>https://news.ycombinator.com/item?id=39250588</link><dc:creator>joseluis</dc:creator><comments>https://news.ycombinator.com/item?id=39250588</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39250588</guid></item><item><title><![CDATA[New comment by joseluis in "The Lack of Compensation in Open Source Software Is Unsustainable"]]></title><description><![CDATA[
<p>I was thinking Spain, it describes the situation here perfectly.</p>
]]></description><pubDate>Fri, 17 Nov 2023 22:54:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=38311768</link><dc:creator>joseluis</dc:creator><comments>https://news.ycombinator.com/item?id=38311768</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=38311768</guid></item><item><title><![CDATA[New comment by joseluis in "37, the median value for the second prime factor of an integer"]]></title><description><![CDATA[
<p>Very pretty. And to relate it somewhat to the topic: 1/27 = 0.037 repeating 037 and 1/37 = 0.027 repeating 027 :)</p>
]]></description><pubDate>Mon, 13 Nov 2023 10:02:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=38248663</link><dc:creator>joseluis</dc:creator><comments>https://news.ycombinator.com/item?id=38248663</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=38248663</guid></item><item><title><![CDATA[New comment by joseluis in "Xfce Wayland Development Roadmap"]]></title><description><![CDATA[
<p>My favorite combination is Mint + Xfce + openbox as the window manager which leaves the CPU at 0% when not doing anything, and is very responsive and versatile. I had to setup separate dark themes for each one but now it looks good.<p>The only thing I don't like is thunar freezing often when doing long blocking IO operations...</p>
]]></description><pubDate>Thu, 14 Sep 2023 11:51:19 +0000</pubDate><link>https://news.ycombinator.com/item?id=37507687</link><dc:creator>joseluis</dc:creator><comments>https://news.ycombinator.com/item?id=37507687</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=37507687</guid></item><item><title><![CDATA[New comment by joseluis in "ZeroVer: 0-Based Versioning"]]></title><description><![CDATA[
<p>> exceeds v10-15<p>What do you think about internet browsers like Firefox and Chromium?</p>
]]></description><pubDate>Sat, 08 Jul 2023 06:48:40 +0000</pubDate><link>https://news.ycombinator.com/item?id=36641986</link><dc:creator>joseluis</dc:creator><comments>https://news.ycombinator.com/item?id=36641986</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=36641986</guid></item><item><title><![CDATA[New comment by joseluis in "Tiny Binaries (2021)"]]></title><description><![CDATA[
<p>That must be without stripping. Also there are ways to reduce binary size. See e.g. [min-sized-rust](<a href="https://github.com/johnthagen/min-sized-rust">https://github.com/johnthagen/min-sized-rust</a>). I've gotten stripped binaries of small cli utils less than 400KiB without doing anything special, less than 150 KiB by customizing profile settings and compressing with upx, and less than 30 KiB by replacing the std with the libc as the link shows. Haven't tried with fltk though...</p>
]]></description><pubDate>Fri, 16 Jun 2023 07:44:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=36352920</link><dc:creator>joseluis</dc:creator><comments>https://news.ycombinator.com/item?id=36352920</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=36352920</guid></item><item><title><![CDATA[New comment by joseluis in "Single-file scripts that download their dependencies"]]></title><description><![CDATA[
<p>You can add Rust to the list <a href="https://crates.io/crates/rust-script" rel="nofollow">https://crates.io/crates/rust-script</a></p>
]]></description><pubDate>Sun, 15 Jan 2023 23:18:28 +0000</pubDate><link>https://news.ycombinator.com/item?id=34394761</link><dc:creator>joseluis</dc:creator><comments>https://news.ycombinator.com/item?id=34394761</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34394761</guid></item><item><title><![CDATA[New comment by joseluis in "Rust 1.64.0"]]></title><description><![CDATA[
<p>Having both approaches available would be better IMHO. Builder pattern is very nice but I frequently miss having named arguments too. Even if macros can partially fullfill that need, it's not the same and introduces more quirks and complexity...</p>
]]></description><pubDate>Thu, 22 Sep 2022 17:22:12 +0000</pubDate><link>https://news.ycombinator.com/item?id=32941932</link><dc:creator>joseluis</dc:creator><comments>https://news.ycombinator.com/item?id=32941932</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=32941932</guid></item><item><title><![CDATA[New comment by joseluis in "RStudio Is Becoming Posit"]]></title><description><![CDATA[
<p>Hmm... I wonder if it will be possible some day to use posits in Posit:<p>- <a href="https://posithub.org/" rel="nofollow">https://posithub.org/</a><p>- <a href="https://en.wikipedia.org/wiki/Unum_(number_format)#Posit" rel="nofollow">https://en.wikipedia.org/wiki/Unum_(number_format)#Posit</a></p>
]]></description><pubDate>Wed, 27 Jul 2022 15:05:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=32251361</link><dc:creator>joseluis</dc:creator><comments>https://news.ycombinator.com/item?id=32251361</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=32251361</guid></item><item><title><![CDATA[New comment by joseluis in "Ask HN: YouTube Channels for the Intellectually Curious"]]></title><description><![CDATA[
<p>Apart from many good and very well known channels already shared:<p>- math videos  <a href="https://www.youtube.com/c/TheMathSorcerer" rel="nofollow">https://www.youtube.com/c/TheMathSorcerer</a><p>- math videos <a href="https://www.youtube.com/c/brightsideofmaths" rel="nofollow">https://www.youtube.com/c/brightsideofmaths</a><p>- math videos <a href="https://www.youtube.com/user/standupmaths" rel="nofollow">https://www.youtube.com/user/standupmaths</a><p>- mainly physics, plus chemistry, astronomy,  math, and mechanical engineering videos <a href="https://www.youtube.com/c/MichelvanBiezen" rel="nofollow">https://www.youtube.com/c/MichelvanBiezen</a><p>- chemistry & physics <a href="https://www.youtube.com/c/AdvancedTinkering" rel="nofollow">https://www.youtube.com/c/AdvancedTinkering</a><p>- machine learning papers <a href="https://www.youtube.com/c/K%C3%A1rolyZsolnai" rel="nofollow">https://www.youtube.com/c/K%C3%A1rolyZsolnai</a><p>- painting & composition <a href="https://www.youtube.com/c/IanRobertsMasteringComposition" rel="nofollow">https://www.youtube.com/c/IanRobertsMasteringComposition</a><p>- medicine <a href="https://www.youtube.com/c/NinjaNerdScience" rel="nofollow">https://www.youtube.com/c/NinjaNerdScience</a><p>- medicine <a href="https://www.youtube.com/channel/UCFPvnkCZbHfBvV8ApBBE0vA" rel="nofollow">https://www.youtube.com/channel/UCFPvnkCZbHfBvV8ApBBE0vA</a><p>- therapy <a href="https://www.youtube.com/channel/UCbWvYupGqq3aMJ6LsG4q-Yg" rel="nofollow">https://www.youtube.com/channel/UCbWvYupGqq3aMJ6LsG4q-Yg</a><p>- perspectives on physics and cosmology <a href="https://www.youtube.com/c/SeethePattern" rel="nofollow">https://www.youtube.com/c/SeethePattern</a><p>- analysis of materials impacted by high energy phenomena <a href="https://www.youtube.com/c/MartinFleischmannMemorialProject" rel="nofollow">https://www.youtube.com/c/MartinFleischmannMemorialProject</a><p>- perspectives on physics <a href="https://www.youtube.com/user/TheMachian/" rel="nofollow">https://www.youtube.com/user/TheMachian/</a><p>- anatomy <a href="https://www.youtube.com/c/InstituteofHumanAnatomy" rel="nofollow">https://www.youtube.com/c/InstituteofHumanAnatomy</a><p>- signal processing <a href="https://www.youtube.com/user/allsignalprocessing" rel="nofollow">https://www.youtube.com/user/allsignalprocessing</a><p>- solving complex sudoku-derived puzzles <a href="https://www.youtube.com/c/CrackingTheCryptic" rel="nofollow">https://www.youtube.com/c/CrackingTheCryptic</a><p>- the art of listening: music albums gems <a href="https://www.youtube.com/channel/UC7shUDSkHjuQNegPhGdANQQ" rel="nofollow">https://www.youtube.com/channel/UC7shUDSkHjuQNegPhGdANQQ</a></p>
]]></description><pubDate>Mon, 25 Jul 2022 07:03:24 +0000</pubDate><link>https://news.ycombinator.com/item?id=32221362</link><dc:creator>joseluis</dc:creator><comments>https://news.ycombinator.com/item?id=32221362</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=32221362</guid></item><item><title><![CDATA[New comment by joseluis in "Did the W-boson just “break the standard model”?"]]></title><description><![CDATA[
<p>I really think this paper should be more widely known, because it's eye opening: <a href="https://physicsdetective.com/something-is-rotten-in-the-state-of-qed/" rel="nofollow">https://physicsdetective.com/something-is-rotten-in-the-stat...</a><p>It made me realize QED is the equivalent of a million lines spaghetti codebase that's been continually built upon, fudge after fudge since the 40s, while being sold as the best thing ever, the ultimate model of reality, etc. While it really started as a temporary solution like a bash script that should've been replaced by something more elegant... many decades ago. And now we are in this mess.</p>
]]></description><pubDate>Sat, 30 Apr 2022 17:52:08 +0000</pubDate><link>https://news.ycombinator.com/item?id=31217791</link><dc:creator>joseluis</dc:creator><comments>https://news.ycombinator.com/item?id=31217791</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=31217791</guid></item></channel></rss>