<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: _a1_</title><link>https://news.ycombinator.com/user?id=_a1_</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Fri, 15 May 2026 18:12:20 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=_a1_" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by _a1_ in "Speed of Rust vs. C"]]></title><description><![CDATA[
<p>The fact that my perfectly valid comment was down voted like this shows that HN has a pretty dysfunctional community. I think that is my last comment here ;)</p>
]]></description><pubDate>Sat, 13 Mar 2021 16:31:47 +0000</pubDate><link>https://news.ycombinator.com/item?id=26447627</link><dc:creator>_a1_</dc:creator><comments>https://news.ycombinator.com/item?id=26447627</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=26447627</guid></item><item><title><![CDATA[New comment by _a1_ in "Speed of Rust vs. C"]]></title><description><![CDATA[
<p>I appreciate the article, but it would be really nice if the author could add a timestamp to his blog posts. Without timestamps, it's impossible to know if any issue described in the article body still exists.<p>I didn't read it, because it might present outdated knowledge.</p>
]]></description><pubDate>Sat, 13 Mar 2021 07:20:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=26444707</link><dc:creator>_a1_</dc:creator><comments>https://news.ycombinator.com/item?id=26444707</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=26444707</guid></item><item><title><![CDATA[New comment by _a1_ in "Kinto: Mac-style shortcut keys for Linux and Windows"]]></title><description><![CDATA[
<p>> Sure, there's a whole slew of crap being grafted onto it like systemd, Wayland, Chromium, etc...<p>But... you don't have to use any of this<p>(in fact, I can't even use Wayland at all, even if I wanted to [because of Nvidia])</p>
]]></description><pubDate>Fri, 12 Mar 2021 06:15:18 +0000</pubDate><link>https://news.ycombinator.com/item?id=26432681</link><dc:creator>_a1_</dc:creator><comments>https://news.ycombinator.com/item?id=26432681</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=26432681</guid></item><item><title><![CDATA[New comment by _a1_ in "Scientists break through the wall of sleep to the untapped world of dreams"]]></title><description><![CDATA[
<p>Where did you get this from?</p>
]]></description><pubDate>Thu, 25 Feb 2021 05:43:44 +0000</pubDate><link>https://news.ycombinator.com/item?id=26260082</link><dc:creator>_a1_</dc:creator><comments>https://news.ycombinator.com/item?id=26260082</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=26260082</guid></item><item><title><![CDATA[New comment by _a1_ in "Scientists break through the wall of sleep to the untapped world of dreams"]]></title><description><![CDATA[
<p>People who train themselves to reliably induce lucid dreams call themselves oneironauts (Oneiros = Greek god of dreams).<p>I was actively interested in this topic when I was younger and had much time to sleep and practice, but after I got my job and life problems kicked in, suddenly I realized that the only thing I require from a dream is to get a good night sleep so I will have strength to face problems during the day. A little bit sad but true.<p>But, during my lucid dreaming endeavors I realized the technique itself is incredibly powerful. Especially for people who have tendencies for daydreaming. One easy technique used during learning is to create a habit of looking at the watch and asking oneself if this is a dream or not. Doing it for a few times during a day will eventually create a habit, and will eventually increase the chances of unintentionally doing it during the actual dream. Then, the question "is this a dream?" will have a chance of recalling that we have consciousness, while still being inside the dream. It will be a lucid dream.<p>Maintaining lucid state of a lucid dream is another topic. Sometimes a few seconds after starting to be in a lucid dream, we forget about the state and we go right back to a normal, non-lucid dream. There are techniques for prolonging the state, but require training (like everything I guess).</p>
]]></description><pubDate>Tue, 23 Feb 2021 12:37:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=26236579</link><dc:creator>_a1_</dc:creator><comments>https://news.ycombinator.com/item?id=26236579</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=26236579</guid></item><item><title><![CDATA[New comment by _a1_ in "Mold: A Modern Linker"]]></title><description><![CDATA[
<p>> If you think this approach is wrong, could you articulate the reasons why you think it is wrong?<p>Because later if you want to reuse parts of the code in a continuous environment (e.g. a daemon), then you will be surprised that you have memory leaks all over the place (or worse, someone else will discover it by accident).<p>I don't have a problem with the end-of-process-releases-all-memory optimization. But I had the impression that the author uses let's-worry-about-leaks-later-because-OS-takes-care-of-it-for-free-(in-my-use-case).<p>Best approach to take would be to create a memory pool with fast allocation (e.g. TLAB allocation in Java, or how computer games do it), in order to have control over how the memory is freed or when.</p>
]]></description><pubDate>Tue, 23 Feb 2021 09:10:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=26235262</link><dc:creator>_a1_</dc:creator><comments>https://news.ycombinator.com/item?id=26235262</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=26235262</guid></item><item><title><![CDATA[New comment by _a1_ in "Mold: A Modern Linker"]]></title><description><![CDATA[
<p>> As an implementation strategy, we do not care about memory leak because we really can't save that much memory by doing precise memory management. It is because most objects that are allocated during an execution of mold are needed until the very end of the program. I'm sure this is an odd memory management scheme (or the lack thereof), but this is what LLVM lld does too.<p>The fact that someone does it wrong doesn't mean that we should do it wrong as well ;(<p>I don't think I like this approach. It may work <i>now</i>, but will probably seriously limit the possibilities in the future.</p>
]]></description><pubDate>Tue, 23 Feb 2021 06:01:16 +0000</pubDate><link>https://news.ycombinator.com/item?id=26234256</link><dc:creator>_a1_</dc:creator><comments>https://news.ycombinator.com/item?id=26234256</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=26234256</guid></item><item><title><![CDATA[New comment by _a1_ in "YouTube blocked chess channel after mistaken detection of racial slurs"]]></title><description><![CDATA[
<p>I wait for the day that chess will be banned in USA, or some fork of chess will emerge, because obviously chess is racist: white is always first.</p>
]]></description><pubDate>Mon, 22 Feb 2021 08:45:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=26222215</link><dc:creator>_a1_</dc:creator><comments>https://news.ycombinator.com/item?id=26222215</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=26222215</guid></item><item><title><![CDATA[New comment by _a1_ in "Ask HN: What are the best websites that the Anglosphere doesn't know about?"]]></title><description><![CDATA[
<p><a href="https://www.wykop.pl" rel="nofollow">https://www.wykop.pl</a> is probably the biggest Polish site that gathers best experts from most of the industries, to provide comments on the newest political, religious, science and engineering news from all around the world. The comments posted by users of wykop.pl are often cited in other sites.<p>...at least that's what everyone on this site would like to think. In reality, it's just a digg.com clone, before it started to suck ;)<p>(even name is a reference to digg, 'wykop' means 'a dig site', or 'to dig')</p>
]]></description><pubDate>Mon, 15 Feb 2021 06:43:49 +0000</pubDate><link>https://news.ycombinator.com/item?id=26139828</link><dc:creator>_a1_</dc:creator><comments>https://news.ycombinator.com/item?id=26139828</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=26139828</guid></item><item><title><![CDATA[New comment by _a1_ in "From First Principles: Why Scala?"]]></title><description><![CDATA[
<p>> Scala just has implicits which can be used for method extension.<p>I don't think it's fair to say it like this. Scala's implicits can mean different things, depending on where they're used. Scala 3 even divides 'implicit' to multiple keywords.<p>(kind of 'static' in C++ I guess, only more complicated)</p>
]]></description><pubDate>Thu, 11 Feb 2021 15:51:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=26102874</link><dc:creator>_a1_</dc:creator><comments>https://news.ycombinator.com/item?id=26102874</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=26102874</guid></item><item><title><![CDATA[New comment by _a1_ in "From First Principles: Why Scala?"]]></title><description><![CDATA[
<p>Using scalac is not a standard use case.<p>Standard use case is to use sbt (well, or mill, since we're in lihaoyi's thread :D). Sbt starts up slow, but with bloop, or sbtn (native client of sbt), the compilation is really fast (much faster than C++ for example):<p><pre><code>    $ time sbtc compile                                                                          
    [info] entering *experimental* thin client - BEEP WHIRR
    [info] terminate the server with `shutdown`
    > compile
    [info] compiling 1 Scala source to /home/.../target/scala-2.13/classes ...
    [info] compile completed
    [success] Total time: 0 s, completed Feb 11, 2021 4:21:51 PM
    sbtc compile  0,08s user 0,02s system 21% cpu 0,492 total</code></pre></p>
]]></description><pubDate>Thu, 11 Feb 2021 15:24:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=26102402</link><dc:creator>_a1_</dc:creator><comments>https://news.ycombinator.com/item?id=26102402</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=26102402</guid></item><item><title><![CDATA[New comment by _a1_ in "Switching to Windows"]]></title><description><![CDATA[
<p>You're right, I missed that.</p>
]]></description><pubDate>Thu, 11 Feb 2021 15:00:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=26102099</link><dc:creator>_a1_</dc:creator><comments>https://news.ycombinator.com/item?id=26102099</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=26102099</guid></item><item><title><![CDATA[New comment by _a1_ in "Switching to Windows"]]></title><description><![CDATA[
<p>> When I hit the start menu, it’s because I want to launch an application. I don’t need to see the rest of the desktop. So why is the Start menu by default only occupying a small portion of the screen, and wasting the remaining space?<p>Hilarious.<p>I mean, I fully agree with the author on that. But since the author is not tied to a Windows ecosystem, he doesn't know that a full-screen start menu actually happened on Windows 8, and it was nearly <i>boycotted</i> by Windows userbase because of the fact that it occupies full screen space. Users demanded to have a Windows95-style start menu, and MS had to redesign it.<p>Why it's so important for Windows users to have a Windows95-style menu, is beyond me.<p>There you have it :D</p>
]]></description><pubDate>Thu, 11 Feb 2021 13:29:14 +0000</pubDate><link>https://news.ycombinator.com/item?id=26101245</link><dc:creator>_a1_</dc:creator><comments>https://news.ycombinator.com/item?id=26101245</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=26101245</guid></item><item><title><![CDATA[New comment by _a1_ in "Monkey.org"]]></title><description><![CDATA[
<p>hate speech?</p>
]]></description><pubDate>Thu, 04 Feb 2021 09:17:14 +0000</pubDate><link>https://news.ycombinator.com/item?id=26023955</link><dc:creator>_a1_</dc:creator><comments>https://news.ycombinator.com/item?id=26023955</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=26023955</guid></item><item><title><![CDATA[New comment by _a1_ in "Monkey.org"]]></title><description><![CDATA[
<p>So many comments and I have no idea what monkey.org is and why I should care.</p>
]]></description><pubDate>Thu, 04 Feb 2021 09:16:24 +0000</pubDate><link>https://news.ycombinator.com/item?id=26023950</link><dc:creator>_a1_</dc:creator><comments>https://news.ycombinator.com/item?id=26023950</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=26023950</guid></item><item><title><![CDATA[New comment by _a1_ in "How to Lose Money"]]></title><description><![CDATA[
<p>> I’ve written four short books and they have literally grossed hundreds of dollars.<p>I hear this argument pretty often.<p>A book is not a binary thing: there is a book, and there isn't. It's not about the "book", it's about the contents of the book.<p>So in other words the author has gathered some knowledge and he didn't make much money off of it. Therefore, the knowledge you will gather will not allow you to earn any money. Does that make sense? I don't think so.<p>I will probably be downvoted, but maybe more important thing is the subject of the book, than the actual book itself?<p>Disclaimer: I did not write a book. I did write a chapter to a book, and I got some money off of it. I'm not rich because of it, but I see the potential.</p>
]]></description><pubDate>Wed, 03 Feb 2021 09:09:38 +0000</pubDate><link>https://news.ycombinator.com/item?id=26011909</link><dc:creator>_a1_</dc:creator><comments>https://news.ycombinator.com/item?id=26011909</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=26011909</guid></item><item><title><![CDATA[New comment by _a1_ in "Wayland is not ready as a 1:1 compatible Xorg replacement just yet"]]></title><description><![CDATA[
<p>I thought that software development was about finding solutions to problems, not escalating existing problems and demanding changes so we don't have to adapt.</p>
]]></description><pubDate>Tue, 02 Feb 2021 12:46:19 +0000</pubDate><link>https://news.ycombinator.com/item?id=26000341</link><dc:creator>_a1_</dc:creator><comments>https://news.ycombinator.com/item?id=26000341</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=26000341</guid></item><item><title><![CDATA[New comment by _a1_ in "Wayland is not ready as a 1:1 compatible Xorg replacement just yet"]]></title><description><![CDATA[
<p>That's part of what I'm talking about. Giving a 'f you' sign on a public conference is not professional at all. I mean I know that it's Linus who did it, and we all like Linus, so we give him a free pass with his sh-ttalk, at the same time when we would condemn anyone else who uses such rhetoric who isn't Linus, but in closed-source software development world such clashes happen all the time, each month. Whether a software project in such environment is a success or failure depends on whether people will get along with each other, or not. In case of Nvidia/Wayland I think that simply people just don't want to get along each other.</p>
]]></description><pubDate>Tue, 02 Feb 2021 12:43:19 +0000</pubDate><link>https://news.ycombinator.com/item?id=26000314</link><dc:creator>_a1_</dc:creator><comments>https://news.ycombinator.com/item?id=26000314</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=26000314</guid></item><item><title><![CDATA[New comment by _a1_ in "Wayland is not ready as a 1:1 compatible Xorg replacement just yet"]]></title><description><![CDATA[
<p>Wayland doesn't even work for me, so I guess I don't have such problems. I'm not really into the actual arguments between NVidia and Wayland folks, but I suspect it's something like "they don't want to bow to us, therefore we don't want to work with them" from both sides. Like a kindergarten ;)</p>
]]></description><pubDate>Tue, 02 Feb 2021 10:09:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=25999156</link><dc:creator>_a1_</dc:creator><comments>https://news.ycombinator.com/item?id=25999156</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=25999156</guid></item><item><title><![CDATA[New comment by _a1_ in "Remembering Windows 3.1 themes and user empowerment"]]></title><description><![CDATA[
<p>Generally I agree with the article, but it would be nice for the author to enable dark mode of the website for dark mode users :)<p>(it's possible in CSS to detect if the user is using dark mode, and adjust the colors automatically)</p>
]]></description><pubDate>Fri, 22 Jan 2021 14:55:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=25872112</link><dc:creator>_a1_</dc:creator><comments>https://news.ycombinator.com/item?id=25872112</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=25872112</guid></item></channel></rss>