<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: krono</title><link>https://news.ycombinator.com/user?id=krono</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Tue, 07 Apr 2026 03:41:54 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=krono" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by krono in "German police name alleged leaders of GandCrab and REvil ransomware groups"]]></title><description><![CDATA[
<p>So it is doxxing if the doxxed committed wrongdoings from the perspective of... the doxxer? Ideals, morality, alignment, goals and purpose are and have always been a static constant for all humankind. There is no pineapple pizza, it is a lie, for I don't like it, and therefore nobody else ever did either.</p>
]]></description><pubDate>Mon, 06 Apr 2026 17:38:08 +0000</pubDate><link>https://news.ycombinator.com/item?id=47664198</link><dc:creator>krono</dc:creator><comments>https://news.ycombinator.com/item?id=47664198</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47664198</guid></item><item><title><![CDATA[New comment by krono in "Modern Font Stacks"]]></title><description><![CDATA[
<p>Yes, I see what you mean, but if that's really the intent, then having only this font-family rule isn't sufficient. For that argument/reasoning to hold up, it would have to be accompanied by metrics adjustments to compensate for the massive differences between some of the listed fonts in these stacks.</p>
]]></description><pubDate>Fri, 03 Oct 2025 17:58:37 +0000</pubDate><link>https://news.ycombinator.com/item?id=45465778</link><dc:creator>krono</dc:creator><comments>https://news.ycombinator.com/item?id=45465778</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45465778</guid></item><item><title><![CDATA[New comment by krono in "Modern Font Stacks"]]></title><description><![CDATA[
<p>Oh you flatterer!<p>My top level comment was not a complaint at all, but rather a heads-up regarding the potentially unexpected or often misunderstood effects of applying these font stacks, accompanied by a practical example, and a personal recommendation with my reasoning.<p>Now, please, don't be so hostile. It's nasty and makes you come across as a lot more stupid than I believe you really are.</p>
]]></description><pubDate>Fri, 03 Oct 2025 17:55:15 +0000</pubDate><link>https://news.ycombinator.com/item?id=45465727</link><dc:creator>krono</dc:creator><comments>https://news.ycombinator.com/item?id=45465727</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45465727</guid></item><item><title><![CDATA[New comment by krono in "Modern Font Stacks"]]></title><description><![CDATA[
<p>It already works as intended. If the intent is to render a default system font, then let the system handle that by simply applying 'monospace'.</p>
]]></description><pubDate>Fri, 03 Oct 2025 15:01:42 +0000</pubDate><link>https://news.ycombinator.com/item?id=45463762</link><dc:creator>krono</dc:creator><comments>https://news.ycombinator.com/item?id=45463762</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45463762</guid></item><item><title><![CDATA[New comment by krono in "Modern Font Stacks"]]></title><description><![CDATA[
<p>These font stacks don't handle anything at all, they just throw a bunch of common typeface names at the wall and they can't even tell what sticks because it's so random. All the while, the user might have a prefered fallback font set that they prefer over any of the ones in the font stack - and even if that isn't the case, simply using 'monospace' as the only fallback will render the default monospace font anyway.<p>I disagree with the notion that common browser configuration options available for users to change through the main/general browser settings UI would in any way be esoteric. It is wholly irrelevant anyway.<p>The setting you mention has no effect in the case I outlined above - Even with "Allow pages to choose their own fonts, instead of your selections above." enabled, the same results are observed.</p>
]]></description><pubDate>Fri, 03 Oct 2025 13:52:44 +0000</pubDate><link>https://news.ycombinator.com/item?id=45463046</link><dc:creator>krono</dc:creator><comments>https://news.ycombinator.com/item?id=45463046</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45463046</guid></item><item><title><![CDATA[New comment by krono in "Modern Font Stacks"]]></title><description><![CDATA[
<p>An example of something to keep in mind with this technique is that you might actually end up causing the browser to render a different font than either you or the user intended.<p>For a practical example:<p>Environment<p><pre><code>  - Latest Firefox on Windows 10.
  - Manually installed fonts 'Cascadia Code' and 'JetBrains Mono NL'.
  - Firefox default 'monospace' font set to 'JetBrains Mono NL'.

</code></pre>
Setting `font-family: monospace;` would end up rendering 'JetBrains Mono NL' - the user-configured default monospace font.<p>Setting `font-family: 'Cascadia Code', monospace;` would also render 'JetBrains Mono NL' - privacy features prevent pages from querying non-standard system fonts and this will also be reflected as a console warning message: 'Request for font "Cascadia Mono" blocked at visibility level 2 (requires 3)".'<p>Now, if you were to use he "Monospace Code" font stack listed on this page `font-family: ui-monospace, 'Cascadia Code', 'Source Code Pro', Menlo, Consolas, 'DejaVu Sans Mono', monospace;`, you will render... Yup, 'Consolas'!<p><pre><code>  1. `ui-monospace` - remains unsupported by Firefox which is lame (would also render 'Consolas').

  2. `Cascadia Code` - see above, access denied because it isn't natively available on Windows 10 (also, coding ligatures... more like illigatures, amirite?).

  3. `Source Code Pro` - skipped due to unavailability.

  4. `Menlo` - skipped due to unavailability.

  5. `Consolas` - next option in line, this one is available and is the one that will be chosen.

  6. `DejaVu Sans Mono`  - skipped, font already determined.

  7. `monospace` - skipped, font already determined.

</code></pre>
These modern font stacks suck. Please, if you want to render font and it has to be something specific, then use an actual web font and simply fall back to the default 'monospace' which is controlled by the user.</p>
]]></description><pubDate>Fri, 03 Oct 2025 13:03:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=45462501</link><dc:creator>krono</dc:creator><comments>https://news.ycombinator.com/item?id=45462501</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45462501</guid></item><item><title><![CDATA[New comment by krono in "Show HN: Browser MCP – Automate your browser using Cursor, Claude, VS Code"]]></title><description><![CDATA[
<p>Just found this[0] implementation roadmap on Mozilla's wiki, recently updated too! At least it's actively being worked on.<p>Not going to lie, this makes me happy.<p>[0]: <a href="https://wiki.mozilla.org/WebDriver/RemoteProtocol/WebDriver_BiDi" rel="nofollow">https://wiki.mozilla.org/WebDriver/RemoteProtocol/WebDriver_...</a></p>
]]></description><pubDate>Mon, 07 Apr 2025 18:47:38 +0000</pubDate><link>https://news.ycombinator.com/item?id=43614601</link><dc:creator>krono</dc:creator><comments>https://news.ycombinator.com/item?id=43614601</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43614601</guid></item><item><title><![CDATA[New comment by krono in "An update on Google's compliance with the DMA"]]></title><description><![CDATA[
<p>I think it's highly disingenuous of you to claim that the regulators in question are acting without any plan or purpose even if those might not be immediately clear. "If you don't like how the table is set, turn over the table."</p>
]]></description><pubDate>Tue, 26 Nov 2024 17:07:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=42247498</link><dc:creator>krono</dc:creator><comments>https://news.ycombinator.com/item?id=42247498</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42247498</guid></item><item><title><![CDATA[New comment by krono in ""Firefox added [ad tracking] and has already turned it on without asking you""]]></title><description><![CDATA[
<p>There is chrome://geckoview/content/config.xhtml but many options shown there are nonfunctional. The relevant option is listed but I'm not sure if setting it to false has any effect.<p>Edit: Just found out that on that link above, you can set general.aboutConfig.enable to true to enable about.config.<p>It looks like the xml page and the about.config one are the same, as the modifications I made are synced.</p>
]]></description><pubDate>Sat, 13 Jul 2024 17:31:16 +0000</pubDate><link>https://news.ycombinator.com/item?id=40955452</link><dc:creator>krono</dc:creator><comments>https://news.ycombinator.com/item?id=40955452</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40955452</guid></item><item><title><![CDATA[New comment by krono in "Show HN: Pi-C.A.R.D, a Raspberry Pi Voice Assistant"]]></title><description><![CDATA[
<p>Good point, I did conveniently gloss over that one didn't I!<p>A switch to break the physical wire connection is about the only thing I can come up with out of hand right now. I believe the PinePhones come with physical switches for their antenna's so there's that.</p>
]]></description><pubDate>Tue, 14 May 2024 18:46:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=40358651</link><dc:creator>krono</dc:creator><comments>https://news.ycombinator.com/item?id=40358651</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40358651</guid></item><item><title><![CDATA[New comment by krono in "Firefox search update"]]></title><description><![CDATA[
<p>That still doesn't disable all telemetry from being sent. There's a whole slue of settings that you need to change in about:config and then there's still no guarantee.<p>Even if you follow those steps you listed there and uncheck all those boxes you're shown in the standard settings pages, then Firefox will just continue to send out 'pings' when you interact with certain elements in the browser interface. And that's just the tip of the iceberg.<p>Mozilla is like one of those politicians that just won't stop yapping about traditional conservative family values, who is later found to have several extramarital children and numerous affairs with same-sex partners themselves.</p>
]]></description><pubDate>Tue, 14 May 2024 17:34:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=40357748</link><dc:creator>krono</dc:creator><comments>https://news.ycombinator.com/item?id=40357748</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40357748</guid></item><item><title><![CDATA[New comment by krono in "Claude is now available in Europe"]]></title><description><![CDATA[
<p>You wouldn't know if they're doing a good enough job of it, that's the point of censorship.</p>
]]></description><pubDate>Tue, 14 May 2024 10:47:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=40353733</link><dc:creator>krono</dc:creator><comments>https://news.ycombinator.com/item?id=40353733</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40353733</guid></item><item><title><![CDATA[New comment by krono in "Show HN: Pi-C.A.R.D, a Raspberry Pi Voice Assistant"]]></title><description><![CDATA[
<p>Thinkpads come with that, an unspoofable indicator that will tell you with 100% certainty that your image is not being recorded or even recordable unless the physical operator of the machine allows it. Can't beat a physical cover if you really want to be sure!</p>
]]></description><pubDate>Tue, 14 May 2024 00:41:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=40350325</link><dc:creator>krono</dc:creator><comments>https://news.ycombinator.com/item?id=40350325</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40350325</guid></item><item><title><![CDATA[New comment by krono in "Machine Unlearning in 2024"]]></title><description><![CDATA[
<p>Say you tell me you want a red sphere. Taken at face value, you show a prejudice for red sphere's and discriminate against all other coloured shapes.<p>We've all had to dance that dance with ChatGPT by now, where you ask for something perfectly ordinary, but receive a response telling you off for even daring to think like that, until eventually you manage to formulate the prompt in a way that it likes with just the right context and winner vocabulary + grammar, and finally the damned thing gives you the info you want without so much as any gaslighting or snarky insults hiding in the answer!<p>It doesn't understand racism, it simply evaluates certain combinations of things according to how it was set up to do.</p>
]]></description><pubDate>Sun, 05 May 2024 20:58:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=40268306</link><dc:creator>krono</dc:creator><comments>https://news.ycombinator.com/item?id=40268306</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40268306</guid></item><item><title><![CDATA[New comment by krono in "The AI bullshit singularity"]]></title><description><![CDATA[
<p>Absolutely, I also replied to the OP's response below that I failed to specify that I was arguing parrots' ability to reason which I do believe exists to a great extend.<p>Regardless, speech is just another means of communication. In the end it doesn't really matter if I use perfectly articulated Swahili or just scream "aaar" at you for a few seconds as long as I get the cheeseburger with extra cheese I want from you. These parrots, much like children, just push your buttons and are quite good at finding (or negotiating) the right pattern of things to do and sounds to make to get to a certain outcome.</p>
]]></description><pubDate>Sun, 18 Feb 2024 23:33:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=39424657</link><dc:creator>krono</dc:creator><comments>https://news.ycombinator.com/item?id=39424657</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39424657</guid></item><item><title><![CDATA[New comment by krono in "The AI bullshit singularity"]]></title><description><![CDATA[
<p>Oh yes I agree on that. I should have specified that I was arguing their ability to reason - which from my own experience these birds do most definitely possess to a surprising extend. They are smart, and they have all day to figure out which buttons to press to get you to do something specific they find funny or other such things.</p>
]]></description><pubDate>Sun, 18 Feb 2024 23:16:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=39424530</link><dc:creator>krono</dc:creator><comments>https://news.ycombinator.com/item?id=39424530</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39424530</guid></item><item><title><![CDATA[New comment by krono in "The AI bullshit singularity"]]></title><description><![CDATA[
<p>I believe you are vastly underestimating the capabilities of parrots or similarly intelligent birds.<p>At least when my pet parrot manages to fool me into whatever it is he wants to get out of me that time, he does it for his own primal benefit and not because it was programmed to adhere to some strict set of ethic and moral boundaries set by legal requirements and someone else's idea of how people should think and behave.</p>
]]></description><pubDate>Sun, 18 Feb 2024 20:59:52 +0000</pubDate><link>https://news.ycombinator.com/item?id=39423270</link><dc:creator>krono</dc:creator><comments>https://news.ycombinator.com/item?id=39423270</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39423270</guid></item><item><title><![CDATA[New comment by krono in "How we crowdfunded $750k for a giant book about keyboard history"]]></title><description><![CDATA[
<p>If you're familiar with the sandbox mmo EVE Online you might like Empires of EVE. They're very well put together and very thorough historical accounts of some massive and long term player driven content/conflicts throughout the history of the game. It was so much fun to read about why my side's leadership made certain decisions and about the other sides' perspectives of some of the space wars I was part of when I still played.<p><a href="https://www.empiresofeve.com/" rel="nofollow">https://www.empiresofeve.com/</a></p>
]]></description><pubDate>Thu, 01 Feb 2024 13:22:11 +0000</pubDate><link>https://news.ycombinator.com/item?id=39215636</link><dc:creator>krono</dc:creator><comments>https://news.ycombinator.com/item?id=39215636</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39215636</guid></item><item><title><![CDATA[New comment by krono in "iPhone apps harvest data when they send you notifications, researchers find"]]></title><description><![CDATA[
<p>You'd think opting out of sharing analytics data with app developers would also cover push notification metrics but it doesn't seem to be that way from a quick look over the official docs.<p><a href="https://developer.apple.com/notifications/push-notifications-console/" rel="nofollow">https://developer.apple.com/notifications/push-notifications...</a></p>
]]></description><pubDate>Thu, 25 Jan 2024 14:23:14 +0000</pubDate><link>https://news.ycombinator.com/item?id=39129836</link><dc:creator>krono</dc:creator><comments>https://news.ycombinator.com/item?id=39129836</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39129836</guid></item><item><title><![CDATA[New comment by krono in "Show HN: Quetta – A privacy-first web browser with enhanced ad blocker inside"]]></title><description><![CDATA[
<p>Having some issues with the system I want to use for these tests. Expecting to get this done over the weekend.</p>
]]></description><pubDate>Wed, 24 Jan 2024 15:04:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=39118146</link><dc:creator>krono</dc:creator><comments>https://news.ycombinator.com/item?id=39118146</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39118146</guid></item></channel></rss>