<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: kr99x</title><link>https://news.ycombinator.com/user?id=kr99x</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sat, 02 May 2026 10:29:08 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=kr99x" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by kr99x in "American Academy of Pediatrics loses HHS funding after criticizing RFK Jr."]]></title><description><![CDATA[
<p>You can look through my comment history here, if you like, to see that I've been consistently banging the same drum at least since 2020, but unfortunately without connecting this profile to others I can't show you I've been on it for <i>much</i> longer.  Internet evidence might go back as far as perhaps 2010, but before writing a word about it online I'd already had some years under my belt telling people in person that W's national security letters including a gag order was <i>hideously</i> wrong or that the DMCA and its exception list process was unacceptable on first amendment grounds.  I assure you, regardless of who is being officially censored or "just" denied a platform or communication tool to which they would otherwise have claim but for the content of their speech, by any government or corporation in any nation in any decade, it is, was, and always will be wrong.  It was even wrong to try to suppress <i>ISIS recruitment drives</i>, and if THAT doesn't convince you I'm principled about it I don't know what will.  And again, I admit we're rare, but I tell not vanishingly so.  In my real life circle I know two others and online several more.  I think we're at LEAST as common as principled vegans.</p>
]]></description><pubDate>Thu, 18 Dec 2025 16:30:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=46314857</link><dc:creator>kr99x</dc:creator><comments>https://news.ycombinator.com/item?id=46314857</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46314857</guid></item><item><title><![CDATA[New comment by kr99x in "American Academy of Pediatrics loses HHS funding after criticizing RFK Jr."]]></title><description><![CDATA[
<p>Not irrelevant.  I'm responding directly to somebody saying people like me <i>basically</i> don't exist so that I am a data point.  We do exist.  We're rare, but not <i>that</i> rare.</p>
]]></description><pubDate>Thu, 18 Dec 2025 00:15:45 +0000</pubDate><link>https://news.ycombinator.com/item?id=46307438</link><dc:creator>kr99x</dc:creator><comments>https://news.ycombinator.com/item?id=46307438</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46307438</guid></item><item><title><![CDATA[New comment by kr99x in "American Academy of Pediatrics loses HHS funding after criticizing RFK Jr."]]></title><description><![CDATA[
<p>Hello.<p>I would not trust any corporation (sometimes it's profitable to remove something so they retain control of some market) or government (sometimes it secures their power to keep people unaware of some facts about their actions) to only censor what is "truly" good for us to have censored. Why would anybody? The free exchange of ideas is a prerequisite for a just world. You cannot build one without it, because to build a just world you must change what is unjust. To change what is unjust, you must remove power from those who unjustly hold it. You can't do that if you can't communicate the injustice. If you place limits on the free exchange of ideas "just for this one really bad thing" then you have forfeited your own future ability to resist when a good and true idea is wrongfully labelled harmful by powerful and corrupt figures. Every single authoritarian regime in history has made speaking ill of the leadership a crime, because speech control is powerful. The power to ban information is too great to be entrusted to any authority at all. Depending on how thorough the "ban" (web text filter at the ISP level? mandatory AR implants at birth filtering banned content? worse?), it's anywhere from an abhorrent violation of human rights and the principles behind scientific inquiry all the way up through literally the most powerful weapon which could even theoretically be designed.<p>Must we burn this book? No. The answer is always no.<p>I am in favor of extremely strong free speech, legally and more importantly <i>morally</i>, because there is simply no acceptable alternative.</p>
]]></description><pubDate>Thu, 18 Dec 2025 00:03:40 +0000</pubDate><link>https://news.ycombinator.com/item?id=46307334</link><dc:creator>kr99x</dc:creator><comments>https://news.ycombinator.com/item?id=46307334</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46307334</guid></item><item><title><![CDATA[New comment by kr99x in "Collatz's Ant"]]></title><description><![CDATA[
<p>In my phrasing, 128k + 7  -> 81k + 5 for all positive integers k.<p>Pick a power of 3 n to be the coefficient for k on the right/reduced side, and then the left side will have at least one valid reducing form with coefficient power of 2 f(n) = ⌊n·log2(3)⌋+1.  If there is more than one, they will have different constants.  Each multiplication immediately has a division (you already got this part), and there must be a final division which is <i>not</i> immediately preceded by a multiplication because (3x + 1)/2 > x for all positive integers (that is, if you multiply once and then divide once, you will always be larger than just before those two things, so an "extra" division is needed to reduce).  This means that there must always be at least one less multiplication than division, so the initial condition is one division and zero multiplications - the even case with n = 0.  Then for n = 1 you need 2 divisions, which works because 2^2 > 3^1.  Then for n = 2 you need <i>4</i> divisions, because 2^3 < 3^2 so 3 divisions is not enough.  This is where f(n) comes in, to give you the next power of 2 to use/division count for a given n.  When you do skip a power of 2, where f(n) jumps, you get an "extra" division, so at 16k + 3 -> 9k + 2 you are no longer "locked in" to only the one form, because there is now an "extra" division which could occur at any point in the sequence...<p>Except it can't, because you can't begin a reducing sequence with the complete form of a prior reducing sequence, or else it would "already reduce" before you finish operating on it, and it so happens that there's only one non-repeating option at n=2.<p>At n = 0, you just get D (division).  At n = 1, you have an unsplittable M (multiply) D pair MD and an extra D.  The extra D has to go at the end, so your only option is MDD.  At n = 2, you <i>appear</i> to have three options for arranging your MD MD D and D: DMDMDD, MDDMDD, and MDMDDD.  But DMDMDD starts with D so isn't valid, and MDDMDD starts with MDD so also isn't valid, leaving just MDMDDD.<p>At n = 3 there are finally 2 valid forms, 32k + 11  -> 27k + 10 and 32k + 23  -> 27k + 20, and you can trace the MD patterns yourself if you like by following from the k = 0 case.<p>The constants don't even actually matter to the approach.  If there are enough 2^x k - > 3^y k forms when n goes off to infinity, which it sure looks like there are though I never proved my infinite sum converged, you have density 1 (which isn't enough to prove <i>all</i> numbers reduce) and this angle can't do any better.</p>
]]></description><pubDate>Wed, 23 Apr 2025 20:08:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=43776144</link><dc:creator>kr99x</dc:creator><comments>https://news.ycombinator.com/item?id=43776144</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43776144</guid></item><item><title><![CDATA[New comment by kr99x in "Collatz's Ant"]]></title><description><![CDATA[
<p>I've been down that road, and it's unfortunately a dead end.  You can generate an infinite number of reducing forms, each of which itself covers an infinite number of integers, like 4k + 5 → 3k + 4.  Each one covers a fraction of the integers 1/(2^x) where x is the number of division steps in its reducing sequence (and the right hand side is always 3^y where y is the number of multiplying steps).  You can't just make 1/2 + 1/4 + 1/8 and so on though (the easy path to full coverage) because sometimes the power of 3 overwhelms the power of 2.  There is no 8k → 9k form, because that's not a reduction for all k, so you instead have to go with 16k → 9k.  This leaves a "gap" in the coverage, 1/2 + 1/4 + 1/16th.  Fortunately, when this happens, you start to be able to make <i>multiple</i> classes for the same x and y pair and "catch up" some, though slower.  As an amateur I wrote a whole bunch about this only to eventually discover it doesn't matter - even if you reach 1/1th of the integers by generating these classes out to infinity, it doesn't work.  An infinite set of density 1 implies a complementary set of density 0, but a set of density 0 doesn't have to be empty!  There can still be finitely many non-reducing numbers which are not in any class, allowing for alternate cycles - you would only eliminate infinite growth as a disproof option.<p>Mind you, it's almost certain Collatz is true (generating these classes out to 3^20 nets you just over 99% coverage, and by 3^255 you get 99.9999999%) but this approach doesn't work to PROVE it.</p>
]]></description><pubDate>Wed, 23 Apr 2025 17:31:41 +0000</pubDate><link>https://news.ycombinator.com/item?id=43774551</link><dc:creator>kr99x</dc:creator><comments>https://news.ycombinator.com/item?id=43774551</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43774551</guid></item><item><title><![CDATA[New comment by kr99x in "The Legend of Zelda: Tears of the Kingdom Release"]]></title><description><![CDATA[
<p>There are indeed modern releases that live up to nostalgia for games of yore and they are... games that are incredibly similar to their predecessors.  Game design has gone through a variety of eras and fashions and fads, and games "back then" (for whatever period you happen to be nostalgic for) were just <i>built different</i>.  That doesn't necessarily mean better or worse, and maybe nostalgia is the reason people prefer games from the time period when their tastes were developing, but it's not just the games themselves.  It's the way games operated.<p>I guarantee you that if Nintendo released "A Zelda in the mold of OoT but with a new set of dungeons and items and such" people who love OoT would go nuts for it.  Look at what happened with Sonic Mania.  For some reason, though, publishers/developers are very wary of doing this.  Nintendo refuses to make a new Zelda that just reapplies the winning formula.  Sega refuses to make Sonic Mania 2 - honestly, I was very pleasantly surprised they made the first one!  I blame the late 2000s mantra of "innovation" and its presence/absence that seemed to be all the rage in critic circles.</p>
]]></description><pubDate>Fri, 12 May 2023 16:56:58 +0000</pubDate><link>https://news.ycombinator.com/item?id=35918863</link><dc:creator>kr99x</dc:creator><comments>https://news.ycombinator.com/item?id=35918863</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=35918863</guid></item><item><title><![CDATA[New comment by kr99x in "Open Source Firmware Conference 2022 [videos]"]]></title><description><![CDATA[
<p>UEFI is <i>not</i> a big bloat of closed source.  UEFI is a spec that defines a newer, more feature-rich and easily-extensible way to boot than legacy BIOS.  There is a common core, used by just about every single UEFI-based firmware out there, that is completely open source available here <a href="https://github.com/tianocore/edk2" rel="nofollow">https://github.com/tianocore/edk2</a> and it's completely possible to ship a fully open UEFI system.<p>It happens to be the case that most organizations using UEFI-based firmware don't, and they keep everything beyond that core closed-source.  This is not the fault of UEFI - those companies were closed source beforehand, and that trend continued.  UEFI neither caused nor enabled them to be that way.<p>Now you may not want any of the things UEFI brings to the table, like GPT and booting to partitions larger than 2.2TB, or filepath based booting rather than sector based booting (or sector-booting into a boot manager and file booting from there).  That's fine, but there's a difference between "X provides Y which I don't need" and "X causes Z which is bad" - UEFI causes almost none of the things people blame it for.<p>If you must blame UEFI for one thing, you can blame it for Secure Boot, as that wasn't (easily) possible with legacy BIOS.  But neither is it mandated what keys it does or doesn't include, or even that it be implemented/enabled!  UEFI has nothing to do with whether you <i>should</i> use Secure Boot - only that you <i>can</i>.  The blame lies mostly with Microsoft for pushing so hard on vendors to ship with it enabled/locked/whatever.</p>
]]></description><pubDate>Thu, 06 Oct 2022 16:50:16 +0000</pubDate><link>https://news.ycombinator.com/item?id=33110727</link><dc:creator>kr99x</dc:creator><comments>https://news.ycombinator.com/item?id=33110727</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=33110727</guid></item><item><title><![CDATA[New comment by kr99x in "Why bugs might feel “impossible”"]]></title><description><![CDATA[
<p>Two "fun" examples:<p>1) System trying to boot would hang at seemingly random points.  Could never be pinned down to a particular instruction, but <i>could</i> be caught doing it when stepping through with attached hardware debugger.  It just wasn't consistent and never made any sense.  Hang on an add.  Hang on a call and never reach the first line of the thing being called.  The hang would always be <i>relatively</i> late in the boot, but that's all that could be found.<p>Eventually I got it.  It would hang the first time a timer interrupt triggered, which would only happen after that interrupt was enabled something like halfway into the boot.<p>Turns out there were disabled cores and the system was waiting trying to park those cores before servicing the interrupt, but they'd never respond/ack/say "I parked" and so we'd hang.<p>Disable the interrupt and there was no problem.<p>2) Operating in Cache-As-RAM mode early in boot, no "real" memory, just the L2 cache mapped as memory.  Two valid/available address ranges could not both be written to.  Writing to 0xA and then 0xB, or 0xB and then 0xA, would hang the system.  Data being written didn't matter.  Writes didn't need to be back to back.  Just couldn't play nice.<p>Knowing it's a hardware problem spoils the fun of trying to debug that.  Bad cache, couldn't properly convert addresses to cache lines, wrapped back on itself and panicked.  Solution - move and resize "usable" cache region to exclude the overlapping ranges.</p>
]]></description><pubDate>Tue, 15 Jun 2021 18:26:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=27519505</link><dc:creator>kr99x</dc:creator><comments>https://news.ycombinator.com/item?id=27519505</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=27519505</guid></item><item><title><![CDATA[New comment by kr99x in "Why bugs might feel “impossible”"]]></title><description><![CDATA[
<p>I'm "lucky" enough to deal with buggy hardware on a semi-regular basis (I start writing firmware before the hardware is finalized and run on prototypes), so I really do get bugs where the the input data and the logic are all completely correct and the hardware is at fault.  You get to an add instruction with immediate data/no pointers, and somehow it gives you back bad data or hangs.<p>On the one hand, yay, not my fault!
On the other hand, HELL to debug.
On the worst hand, it dramatically increases my willingness to SAY it must be a hardware problem, which is not always the case!</p>
]]></description><pubDate>Tue, 15 Jun 2021 16:20:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=27517639</link><dc:creator>kr99x</dc:creator><comments>https://news.ycombinator.com/item?id=27517639</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=27517639</guid></item><item><title><![CDATA[New comment by kr99x in "Few people know that Google voluntarily removes some search results"]]></title><description><![CDATA[
<p>I think there's lots of information that <i>should</i> be censored, and if I were made data czar of the world I would surely not be corrupt and do a diligent and thoughtful job removing only what must be removed for the good of the world.<p>But I would not trust any corporation (sometimes it's profitable to remove something so they retain control of some market) or government (sometimes it secures their power to keep people unaware of some facts about their actions) to do the same.  Would you?</p>
]]></description><pubDate>Sat, 12 Jun 2021 02:43:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=27480990</link><dc:creator>kr99x</dc:creator><comments>https://news.ycombinator.com/item?id=27480990</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=27480990</guid></item><item><title><![CDATA[New comment by kr99x in "Few people know that Google voluntarily removes some search results"]]></title><description><![CDATA[
<p>Voluntary removal of one's <i>own</i> information does not, in theory go against the free exchange of ideas, but it's a difficult path to follow.  How do you grant removal powers to <i>only</i> the owner of something?  If you hold a private key, that's easy enough to work something out.  I am completely fine with somebody using a key to put something out there and later using the same key to remove it.  It's theirs.<p>...but that's not always the case.  If your information has been copied against your will in a way that removes that key (which is <i>incredibly</i> hard to prevent, see the "analog hole" problem in video DRM), you have to have some sort of central authority or master key to be able to remove it, and then you're again falling right back into trusting that central authority with the power to remove whatever they deem fit.  What if the central authority decides you <i>don't</i> own the information and not to remove it?  What if they claim ownership of something they want removed that isn't theirs?<p>It just doesn't <i>work</i>.  Information removal is a superpower I do not trust any large organization to wield responsibly.</p>
]]></description><pubDate>Sat, 12 Jun 2021 02:40:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=27480971</link><dc:creator>kr99x</dc:creator><comments>https://news.ycombinator.com/item?id=27480971</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=27480971</guid></item><item><title><![CDATA[New comment by kr99x in "Few people know that Google voluntarily removes some search results"]]></title><description><![CDATA[
<p>No, no information should ever be banned from any public/commons - the end.  You want to ban certain information from a particular place you control?  Go nuts.  The wider public?  No.<p>The power to ban information is <i>too great</i> to be entrusted to any authority at all.  Depending on how thorough the "ban" (web text filter at the ISP level?  mandatory AR implants at birth filtering banned content?  worse?), it's anywhere from an abhorrent violation of human rights and the principles behind free exchange and scientific inquiry all the way up through literally the most powerful weapon which could even <i>theoretically</i> be designed.<p>This is not a road worth going down, for any amount of harm reduction.  The cost <i>today</i> may be worth it.  The cost long term is potentially too great to even consider risking.  There is no guarantee of who holds the ban hammer tomorrow.</p>
]]></description><pubDate>Fri, 11 Jun 2021 21:10:15 +0000</pubDate><link>https://news.ycombinator.com/item?id=27478541</link><dc:creator>kr99x</dc:creator><comments>https://news.ycombinator.com/item?id=27478541</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=27478541</guid></item><item><title><![CDATA[New comment by kr99x in "Mars Is No Earth"]]></title><description><![CDATA[
<p>People saying that we should not bother colonizing Mars <i>at all</i> are clearly wrong.  I can buy the argument that we should not <i>yet</i> do it, but come on.<p>The Earth will one day be dust, whether by astronomical disaster or by the sun's natural lifecycle moving to later stages.
We live on the Earth.  If we do not go elsewhere, we will be dust at that time.  So for self-preservation, we'll need to go elsewhere eventually.<p>Mars is elsewhere, and is much easier to reach/terraform/colonize than say... Proxima Centauri B.  Mars is a good "practice" shot at being elsewhere.<p>So obviously, we should go to Mars.  It's just a question of when.</p>
]]></description><pubDate>Fri, 26 Feb 2021 18:31:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=26278067</link><dc:creator>kr99x</dc:creator><comments>https://news.ycombinator.com/item?id=26278067</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=26278067</guid></item><item><title><![CDATA[New comment by kr99x in "The Battle Inside Signal"]]></title><description><![CDATA[
<p>Firstly, this article and the discussions on this page are <i>about</i> Signal, it's hardly irrelevant.  For the particular case of the company Signal, there are many actors claiming that censorship is needed.  Signal for now disagrees, but even on this page you'll find people that support that.  Just because the way Signal is implemented today resists the model doesn't mean that's a guarantee into the future.<p>Secondly, there is no reason we cannot have it both ways.  A single communications company with content-neutral policies is helping the world more than one with content-sensitive policies.  <i>Two</i> communications companies with content-neutral policies in competition with one another may be better yet, but that does not make Twitter choosing to censor its users the right thing for them to do.  I have not said the government should tell Twitter what to do, only that they <i>should</i> choose not to censor because that makes the world a better place.<p>There is a growing contingent of people, especially younger people, who do not understand how free communication underlies the ability to make any change at all.  Who do not see that creating the tools to censor conversations harms the future.  They see immediate benefits in clamping down on this or that harm (temporarily ignoring that they're making themselves the arbiters of right and wrong and giving them the power to declare <i>what is or is not a harm</i> in the first place) but not grasping that they will not be in control of those tools in perpetuity.</p>
]]></description><pubDate>Tue, 26 Jan 2021 17:25:15 +0000</pubDate><link>https://news.ycombinator.com/item?id=25918586</link><dc:creator>kr99x</dc:creator><comments>https://news.ycombinator.com/item?id=25918586</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=25918586</guid></item><item><title><![CDATA[New comment by kr99x in "The Battle Inside Signal"]]></title><description><![CDATA[
<p>You prove to still be misunderstanding.  Firstly in that "Signal's Audience" is not a thing under contention - it's willing parties who are already both using Signal being prevented from using that tool to talk about [x] with one another.  It's <i>constraining communication by content</i> once you've already granted someone the tools that is the problem.<p>Even so, I agree you have neither a constitutional nor a moral right to anything of Signal's in any case.  And yet, the world would be a better place - for <i>all people, Signal's staff and shareholders included</i> - if they gave it freely.  Nobody is obligated to spend their own time or effort to improve the world, but if we want the world to be a better place then somebody has to.<p>The more accessible unfettered communication is, the better the world is able to become.  Full stop.  Restrained communication is less capable of improving the world, because restrained communication is less capable of changing the world at all, because those invested in the status quo have incentive to restrain communication which could make change.</p>
]]></description><pubDate>Tue, 26 Jan 2021 16:20:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=25917590</link><dc:creator>kr99x</dc:creator><comments>https://news.ycombinator.com/item?id=25917590</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=25917590</guid></item><item><title><![CDATA[New comment by kr99x in "The Battle Inside Signal"]]></title><description><![CDATA[
<p>You are badly misunderstanding the situation.  A world with 3 TV networks is a world of <i>limited airtime</i>, so of course people will not give their slots up freely for others.  That is not the world we are in now.  It costs no "space" to let messages of any kind go through your platform.  It costs (nearly) no bandwidth.  It is generally <i>profitable</i>.  The only reason messages are being restricted is because those who control the platform don't like them.  A TV network wouldn't give airtime to any old wacko because it was a limited resource.  Signal choosing not to give use of their platform to somebody they don't like is categorically different.</p>
]]></description><pubDate>Tue, 26 Jan 2021 06:36:44 +0000</pubDate><link>https://news.ycombinator.com/item?id=25913206</link><dc:creator>kr99x</dc:creator><comments>https://news.ycombinator.com/item?id=25913206</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=25913206</guid></item><item><title><![CDATA[New comment by kr99x in "The Battle Inside Signal"]]></title><description><![CDATA[
<p>Again I lament the falling respect for and understanding of free speech as a principle that helps us all.  Only when communication between two willing parties is unhindered is it even <i>possible</i> to build a just world.  The power to clamp down on voluntary communication is a power no authority should ever be trusted with, because there are no examples in the history of mankind where that power is only used for good - arguably there <i>can be</i> no such examples, what with power being a vector for corruption.</p>
]]></description><pubDate>Tue, 26 Jan 2021 04:59:03 +0000</pubDate><link>https://news.ycombinator.com/item?id=25912733</link><dc:creator>kr99x</dc:creator><comments>https://news.ycombinator.com/item?id=25912733</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=25912733</guid></item><item><title><![CDATA[New comment by kr99x in "Reddit bans subreddit group “r/DonaldTrump”"]]></title><description><![CDATA[
<p>So you're okay giving someone else the power to declare something "a threat" and sacrificing your rights to neutralize it?  China is perfectly happy to declare <i>all kinds of opinions</i> threats to their way of life and disallow them from being spread.  What's different?<p>You are not <i>thinking it through</i>.  An imperfect analogy to help make the point: You can't put a backdoor in encryption "just for the good guys" because there's no way to prevent that backdoor being used by other actors.  Similarly, you can't put restrictions on speech "just for the really bad things" because there's no way to prevent things being labeled as "really bad things"!</p>
]]></description><pubDate>Fri, 08 Jan 2021 19:52:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=25689422</link><dc:creator>kr99x</dc:creator><comments>https://news.ycombinator.com/item?id=25689422</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=25689422</guid></item><item><title><![CDATA[New comment by kr99x in "Reddit bans subreddit group “r/DonaldTrump”"]]></title><description><![CDATA[
<p>I'm going to skip over defamation for now, both because I'm not a lawyer and because it's slightly more complicated.  You can tell that's different because nobody <i>preemptively</i> censors defamation - it's a suit brought after-the-fact and then argued.  Skipping it...<p>No.  If "real danger Democracy can be lost" is your measuring stick, then whatever "Democracy" you have in charge is free to defend itself against any speech that may fight it.  It's <i>free license for the government to shoot down dissent</i> and not reasonable.<p>Think of it this way.  There is a lot of harmful speech which, in a perfect world, we could prevent.  But because power corrupts, we cannot afford to give out the power to prevent speech because it is too easily abused.  The benefit of preventing [harmful speech x] is not worth the cost of granting the government the power to jail you for speaking counter to what it believes is right.</p>
]]></description><pubDate>Fri, 08 Jan 2021 19:38:16 +0000</pubDate><link>https://news.ycombinator.com/item?id=25689238</link><dc:creator>kr99x</dc:creator><comments>https://news.ycombinator.com/item?id=25689238</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=25689238</guid></item><item><title><![CDATA[New comment by kr99x in "Reddit bans subreddit group “r/DonaldTrump”"]]></title><description><![CDATA[
<p>You're thinking I'm upset specifically about reddit banning the group because that's the article I posted it on.  That's sensible, and on me somewhat for not being quite clear enough.<p>I'm upset at the broader topics that are <i>always brought up</i> when articles like this are posted.  I also have an opinion about what reddit should or shouldn't do, but the post you're responding to is not it.</p>
]]></description><pubDate>Fri, 08 Jan 2021 19:29:16 +0000</pubDate><link>https://news.ycombinator.com/item?id=25689074</link><dc:creator>kr99x</dc:creator><comments>https://news.ycombinator.com/item?id=25689074</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=25689074</guid></item></channel></rss>