<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: myfonj</title><link>https://news.ycombinator.com/user?id=myfonj</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Tue, 07 Apr 2026 10:27:00 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=myfonj" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by myfonj in "LinkedIn uses 2.4 GB RAM across two tabs"]]></title><description><![CDATA[
<p>That's peanuts. LI's third-party bot prevention service, "protechts.net", took 42 GB RAM on my laptop with 32 GB the other day. Obviously found out because it got suspiciously slow and wheezing, and Firefox swapping like crazy seemed to be the culprit. Looking at its performance, this scare jump happened: [1].<p>I have to say I haven't spotted anything at this brutality scale neither before, not after this incident. Also, I had no third-party adblocking software deployed, just Firefox's native defaults. (I use quite a few other extensions, userscripts and userstyles, though, so I cannot rule out some clash induced by them.)<p>I see LI is using protechts.net stuff in hidden iframes with charming id="humanThirdPartyIframe" and even nicer id="humanSecurityEnforcerIframe". Lovely!<p>[1] <a href="https://pasteboard.co/9eDQ84szy3d9.jpg" rel="nofollow">https://pasteboard.co/9eDQ84szy3d9.jpg</a></p>
]]></description><pubDate>Mon, 30 Mar 2026 00:16:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=47568924</link><dc:creator>myfonj</dc:creator><comments>https://news.ycombinator.com/item?id=47568924</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47568924</guid></item><item><title><![CDATA[New comment by myfonj in "CSS Optical Illusions"]]></title><description><![CDATA[
<p>These "dots appearing only while (not) focused" are known as "extinction illusions", namely<p><pre><code>    "25 - Appearing Dots"
</code></pre>
is "McAnany's type" [1], and<p><pre><code>    "26 - Disappearing Dots"
</code></pre>
is known as "Ninio's type" [2], according Akiyoshi Kitaoka's materials. (I have recreated them too few years ago [3][4], before getting to the source.)<p>[1] <a href="https://www.psy.ritsumei.ac.jp/akitaoka/kieru3e.html#:~:text=McAnany%27s%20typeMcAnany" rel="nofollow">https://www.psy.ritsumei.ac.jp/akitaoka/kieru3e.html#:~:text...</a><p>[2] <a href="https://www.psy.ritsumei.ac.jp/akitaoka/kieru3e.html#:~:text=Ninio%27s%20type" rel="nofollow">https://www.psy.ritsumei.ac.jp/akitaoka/kieru3e.html#:~:text...</a><p>[3] <a href="https://codepen.io/myf/full/XjdmJy" rel="nofollow">https://codepen.io/myf/full/XjdmJy</a> ( scintillation warning)<p>[4] <a href="https://codepen.io/myf/full/jMqoMW" rel="nofollow">https://codepen.io/myf/full/jMqoMW</a> ( scintillation warning)</p>
]]></description><pubDate>Thu, 22 Jan 2026 20:14:24 +0000</pubDate><link>https://news.ycombinator.com/item?id=46724590</link><dc:creator>myfonj</dc:creator><comments>https://news.ycombinator.com/item?id=46724590</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46724590</guid></item><item><title><![CDATA[New comment by myfonj in "Show HN: An interactive guide to how browsers work"]]></title><description><![CDATA[
<p>The "guesswork" done by browsers is actually pretty nuanced and not standardised in a slightest way. Some defaults are pretty common, and could be maybe considered de-facto standard, but I wouldn't want to draw the line where "most" browsers agree or should agree.<p>Personally, I have my browser set up to "guess" as little as possible, never do the search from the URL bar unless explicitly told to do so using a dedicated search keyword (plus I still keep separated auto-collapsing search bar). I have disabled all guessing for TLDs, auto prepending www. In short, when I enter "whatever" into my URL bar, my browser tries to load to "http://whatever/", what could be my local domain and I could get an answer -- it is is a valid URL after all.  In a related note, I strongly doubt that any browser does the web search for "localhost".<p>The rabbit hole could naturally go even deeper: for example most browser still interpret top-level dataURIs. It is not that long browsers interpreted top-level `javascript:` URIs entered into URL bar, now surviving in bookmarklets but taken from all users for the sake of a pitiful "self-XSS prevention".<p>So I would be really careful telling what happens -- or, god forbid, should happen -- when someone types something into their URL bar: "whatever" could be a search keyword with set meaning:
- it could be bound to http URL (bookmark),
- the bookmark URL could have a `%s` or `%S` and then it would do the substitution,
- it could be a `javascript:…` bookmark ("bookmarklet"/"favelet"; yes, most browser still let you do that, yet alas, mostly fail to treat CSP in a way it would remain operational).
- It could be a local domain.<p>The fact that, statistically, "most" browsers will do a web search using some default engine is probably correct but oversimplifying claim that glosses over quite a lot of interesting possibilities.</p>
]]></description><pubDate>Sun, 04 Jan 2026 21:01:14 +0000</pubDate><link>https://news.ycombinator.com/item?id=46492154</link><dc:creator>myfonj</dc:creator><comments>https://news.ycombinator.com/item?id=46492154</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46492154</guid></item><item><title><![CDATA[New comment by myfonj in "Pixnapping Attack"]]></title><description><![CDATA[
<p>> I am an app developer. How do I protect my users?
> We are not aware of mitigation strategies to protect apps against Pixnapping. If you have any insights into mitigations, please let us know and we will update this section.<p>IDK, I think there are obvious low-hanging attempts [0] such as: do not display secret codes in stable position on screen? Hide it when in background? Move it around to make timing attacks difficult? Change colours and contrast (over time)? Static noise around? Do not show it whole at the time (not necessarily so that user could observe it: just blink parts of it in and out maybe)? Admittedly, all of this will harm UX more or less, but in naïve theory should significantly raise demands for the attacker.<p>[0] Provided the target of the secret stealing is not in fact some system static raster snapshot containing the secret, cached for task switcher or something like that.</p>
]]></description><pubDate>Wed, 15 Oct 2025 14:43:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=45593403</link><dc:creator>myfonj</dc:creator><comments>https://news.ycombinator.com/item?id=45593403</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45593403</guid></item><item><title><![CDATA[New comment by myfonj in "gsay: Fetch pronunciation of English vocabulary from Google"]]></title><description><![CDATA[
<p>Ha ha, really glad to hear that. (The fact is, I am kinda freak/junkie about human voices, and that particular one stands really high on my list of irresistible tingles-inducing specimens. So happy to hear I am not alone.)</p>
]]></description><pubDate>Mon, 13 Oct 2025 14:19:05 +0000</pubDate><link>https://news.ycombinator.com/item?id=45568603</link><dc:creator>myfonj</dc:creator><comments>https://news.ycombinator.com/item?id=45568603</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45568603</guid></item><item><title><![CDATA[New comment by myfonj in "gsay: Fetch pronunciation of English vocabulary from Google"]]></title><description><![CDATA[
<p>I've made something (probably) very similar for quick GB vs US pronunciation check that also leeches on Google's snapshot of what I believe is a licensed copy of the Oxford collection the same way the shell script does, but mine "runs in browser's URL bar" instead. It's a super tiny dataURI HTML document, intended to be bookmarked with a keyword (say, "say"):<p><pre><code>    data:text/html;charset=utf-8,<title>US-GB pronunciation 2.0.2</title><body onload=x='https://ssl.gstatic.com/dictionary/static/sounds/20160317/' text=snow bgcolor=black><button onfocus=click() onclick=a.src=x+i.value+'--_us_1.mp3';a.play()>US</button><input id=i placeholder=(shift+)tab value="%s"><button onfocus=click() onclick=a.src=x+i.value+'--_gb_1.mp3';a.play()>GB</button><audio id=a onplay=i.focus()></audio>
</code></pre>
so when I do<p><pre><code>    Alt+D, "say something", Enter
</code></pre>
then hitting Tab plays it in British and Shift+Tab plays it in US English. It uses older 2016 batch, because I totally adore the US voice in it: just listen to "music" [1] and tell it isn't pure ASMR.<p>(I'm afraid it just a matter of time they will prevent our mischief, though.)<p>[0] oxfordlearnersdictionaries.com uses the same collection.
[1] <a href="https://ssl.gstatic.com/dictionary/static/sounds/20160317/music--_us_1.mp3" rel="nofollow">https://ssl.gstatic.com/dictionary/static/sounds/20160317/mu...</a></p>
]]></description><pubDate>Mon, 13 Oct 2025 14:10:45 +0000</pubDate><link>https://news.ycombinator.com/item?id=45568527</link><dc:creator>myfonj</dc:creator><comments>https://news.ycombinator.com/item?id=45568527</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45568527</guid></item><item><title><![CDATA[New comment by myfonj in "The least amount of CSS for a decent looking site (2023)"]]></title><description><![CDATA[
<p>> <i>I do think an interesting approach would be a browser extension that lets you override the prefers-color-scheme property on a per-domain basis, similar to the toggle in dev tools.</i><p>Presumably, most users wanting flashbang-less browsing experience use Dark Reader extension or similarly radical solutions.<p>The sad truth is that the user preferences and per-site persistence for stuff like this should always have been browser's responsibility to begin with: just the same way like the font-size/page zoom already is, and likewise some (blatantly limited) security settings.  (Bitterly) amusing fact is that there was (and still is) concept of "alternate stylesheets" from the beginning of CSS (still part of the spec [0], no support outside Gecko), that <i>also</i> fade into obsolescence for it's lack of persistence. So to this days, Firefox, for example, has View → Page Style menu, where user can choose alternate stylesheet but the choice is not preserved across navigations, so is pretty useless on its own.<p>Similarly userstyles: specifications dictate there is like CSS origin level and how they should behave and that all "user agents" are supposed to give user a way to enter the cascade this way, but does not give any official way how to scope individual recipes to concrete origins. That's what the unofficial `@-moz-document` extension was that, and briefly had a chance to be formalised [1]. But I digress.<p>(Likewise all the "European" cookies banners: tragic example of regulation applied on the wrong level. Instead of putting users in charge with help of their "user agents": implicitly blocking pretty much everything and using permissions system that actually would have a chance to be more than <i>"pinky promise we will not track you if you don't click this toggle inside our banner"</i>. But I digress even more, sorry.)<p>> <i>I'd be curious to know if anybody has found a way to avoid this issue with JS switchers -- ideally without needing to delay the initial paint.</i><p>At this point, when browsers do not support per-site user preference for that natively, pragmatic (most robust) way would be to respond with properly set HTML payload straight away. There is even specified HTTP header for this, so once adopted in browsers, we could even ditch HTTP cookies [2] for the persistence, but it seems quite demanding on the server (IIUC negotiating these "Client Hints" takes extra initial request round-trip).<p>Pragmatically, I guess having early running JS in the HEAD that ensures the proper color-scheme is set on the root not and only proper stylesheets load should pretty much prevent most flashbangs, provided the relevant bit would arrive early enough from the server. I think there does not exist any good no-JS-no-Cookie (or any JS-less persistence) solution that supports navigations, sadly.<p>[0] <a href="https://html.spec.whatwg.org/multipage/links.html#rel-alternate" rel="nofollow">https://html.spec.whatwg.org/multipage/links.html#rel-altern...</a><p>[1] <a href="https://www.w3.org/TR/2012/WD-css3-conditional-20121213/#changes" rel="nofollow">https://www.w3.org/TR/2012/WD-css3-conditional-20121213/#cha...</a><p>[2] <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers/Sec-CH-Prefers-Color-Scheme" rel="nofollow">https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/...</a></p>
]]></description><pubDate>Tue, 07 Oct 2025 15:30:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=45504379</link><dc:creator>myfonj</dc:creator><comments>https://news.ycombinator.com/item?id=45504379</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45504379</guid></item><item><title><![CDATA[New comment by myfonj in "Modern Font Stacks"]]></title><description><![CDATA[
<p>Good question! Actually (to my minor dismay): <i>not completely</i>.
Disabling "font support" in Firefox surprisingly still has a hatch for "well-known" icon fonts, with intention to prevent "blind" icons in webpages. I believe it is driven by the pref<p><pre><code>    browser.display.use_document_fonts.icon_font_allowlist
</code></pre>
that contains "FontAwesome" and (Google) Material Icons and Symbols (many, presumably all, variants). So to <i>truly</i> disable all "non-preferred" fonts, we have to both wipe that pref and also change for the<p><pre><code>    browser.display.use_document_fonts
</code></pre>
to zero. But that's what the GUI checkbox controls, so no need to go to about:config for this one.</p>
]]></description><pubDate>Fri, 03 Oct 2025 16:57:44 +0000</pubDate><link>https://news.ycombinator.com/item?id=45465052</link><dc:creator>myfonj</dc:creator><comments>https://news.ycombinator.com/item?id=45465052</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45465052</guid></item><item><title><![CDATA[New comment by myfonj in "Modern Font Stacks"]]></title><description><![CDATA[
<p>> Great!  Then the user gets his preferred font, as requested, instead of the one the page specified.<p>No. You've misread the main point. The user <i>would have gotten</i> his preferred font <i>if</i> the font stack was either just plain<p><pre><code>    font-family: monospace;
</code></pre>
or<p><pre><code>    font-family: <list of fonts their system does *not* support or does *not* allow to be used>, monospace;
</code></pre>
. But the case is that the suggested font stack contains some "unwanted" font that their system both supports and allows to be used, that precedes the generic `monospace` font family the user actually prefers, or, more precisely, have assigned their typeface to.  Is it more clear now?<p>I agree it is not a huge "bug" on the first sight, and as it seems even this is somewhat solvable without disabling font support completely. But since it takes some effort and expertise <i>on the user's side</i>, it adds the "bug" some weight nonetheless.</p>
]]></description><pubDate>Fri, 03 Oct 2025 16:42:02 +0000</pubDate><link>https://news.ycombinator.com/item?id=45464899</link><dc:creator>myfonj</dc:creator><comments>https://news.ycombinator.com/item?id=45464899</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45464899</guid></item><item><title><![CDATA[New comment by myfonj in "Modern Font Stacks"]]></title><description><![CDATA[
<p>> esoteric browser prefs<p>That hurts.  I see where you are standing, and can confirm you expressed opinion of the contemporary majority of browser users, but man, how sad it that.  The attitude diverged by a light years, when "Setting preferred fonts for generic font families" is now "esoteric". (Web) browsers ("user agents") came to existence with these capabilities in mind, and even now are build around the principle of "preferences reconciliation" between defaults, author and user (as opposed to simple "display what author dictates"). And default font choice is probably <i>the</i> very first aspect it ever had to handle.<p>(Or were you referring to some other "pref"?)</p>
]]></description><pubDate>Fri, 03 Oct 2025 14:42:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=45463574</link><dc:creator>myfonj</dc:creator><comments>https://news.ycombinator.com/item?id=45463574</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45463574</guid></item><item><title><![CDATA[New comment by myfonj in "Modern Font Stacks"]]></title><description><![CDATA[
<p>This is excellent analysis, but I think you've forgot to mention one particular detail in your environment description:<p><pre><code>    - Firefox Browser Privacy Enhanced Tracking Protection setting changed to "Strict".
</code></pre>
It is not default, and explicitly indicates this kind of outcome can potentially happen.  But truly agree that the situation here is suboptimal in all aspects.<p>Also maybe worth noting that we can always force our (three) font faces everywhere simply by unchecking the "Allow pages to choose their own fonts" in settings. Yes, this is nuclear option, but I can attest that I use it time to time, and it is quite usable.<p>BTW, I have somewhat softer workaround that interestingly makes the (local) Cascadia on modernfontstacks work even in the Strict Tracking Protection mode: I have a "userstyle" [0] (more precisely userCSS in Stylus) that "remaps", among other things, "Consolas" to a @font-face of the same name but loading `src: local("Cascadia Mono")` instead. Not sure why exactly this circumvents that (I don't think that Stylus-injected styles have more privileges than page styles), but I am glad it works nonetheless.<p>[0] <a href="https://userstyles.world/style/23838" rel="nofollow">https://userstyles.world/style/23838</a></p>
]]></description><pubDate>Fri, 03 Oct 2025 13:53:52 +0000</pubDate><link>https://news.ycombinator.com/item?id=45463058</link><dc:creator>myfonj</dc:creator><comments>https://news.ycombinator.com/item?id=45463058</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45463058</guid></item><item><title><![CDATA[New comment by myfonj in "The World Wide Web Consortium (W3C) adopts a new logo to signal positive changes"]]></title><description><![CDATA[
<p>Tried to dig some info about what (the hell) it is supposed to depict and the only official hint so far was from their video reveal transcript [0]:<p>> It depicts a symbol made of three flowing lines that resemble the links of a chain. The words ‘The World Wide Web Consortium’ circle around it.<p>So the main part is not a word mark, after all, or at least not intended to be one. (Yes, hard to believe.) Some more hints may eventually appear in their mastodon thread [1] what (to me) does not seem like a properly managed public relations shtick at all, starting from the "alt text" of the new logo, that reads "new W3C logo" (sic), to single (at this point) response<p>> it's not a 'W', darling<p>(also sic).  Yes, it seems that the this standards body public relations had been hijacked by some covert adversary, and can only hope it is just the PR part.<p>[0] <a href="https://www.w3.org/about/press-media/#transcripts:~:text=The%20animated%20W3C%20logo%20appears.%20It%20depicts%20a%20symbol%20made%20of%20three%20flowing%20lines%20that%20resemble%20the%20links%20of%20a%20chain.%20The%20words%20%E2%80%98The%20World%20Wide%20Web%20Consortium%E2%80%99%20circle%20around%20it%2e" rel="nofollow">https://www.w3.org/about/press-media/#transcripts:~:text=The...</a><p>[1] <a href="https://w3c.social/@w3c/115299385112878605" rel="nofollow">https://w3c.social/@w3c/115299385112878605</a></p>
]]></description><pubDate>Fri, 03 Oct 2025 11:59:21 +0000</pubDate><link>https://news.ycombinator.com/item?id=45461918</link><dc:creator>myfonj</dc:creator><comments>https://news.ycombinator.com/item?id=45461918</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45461918</guid></item><item><title><![CDATA[New comment by myfonj in "Just let me select text"]]></title><description><![CDATA[
<p>> If you really need to translate ONE WORD, it's not that onerous to type it.<p>I'm confident that I can type just a tiny fraction of all Latin characters all world languages use.  I'm sure that pretty much any Vietnamese word is way beyond my keyboard layout. No clue about writing any non-Latin script. Can <i>you</i> type any Cyrillic, Kanji, Hebrew, Abjad, …, character you see?</p>
]]></description><pubDate>Wed, 24 Sep 2025 15:43:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=45361937</link><dc:creator>myfonj</dc:creator><comments>https://news.ycombinator.com/item?id=45361937</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45361937</guid></item><item><title><![CDATA[New comment by myfonj in "Starlink is currently experiencing a service outage"]]></title><description><![CDATA[
<p>Fair enough, I remember being sceptical myself when I first read about that.  Well, learnt something new today, at least. (In that WP article I see that wire-guided war devices are much older invention than I thought.)</p>
]]></description><pubDate>Mon, 15 Sep 2025 08:52:47 +0000</pubDate><link>https://news.ycombinator.com/item?id=45247539</link><dc:creator>myfonj</dc:creator><comments>https://news.ycombinator.com/item?id=45247539</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45247539</guid></item><item><title><![CDATA[New comment by myfonj in "Starlink is currently experiencing a service outage"]]></title><description><![CDATA[
<p>Sorry if I've misunderstood sarcasm and taken your comment at face value, but are you really unaware of current developments? There are fields literally covered with thick webs of optical fibre near front lines. "Fibre optic drone" even has its own Wikipedia entry: <a href="https://en.wikipedia.org/wiki/Fiber_optic_drone" rel="nofollow">https://en.wikipedia.org/wiki/Fiber_optic_drone</a><p>I understand that keeping track of news can be difficult, and staying out of that depressing information cycle has clear mental health benefits. However, when joining discussions about current conflicts, it's worth acknowledging any resulting knowledge gaps.</p>
]]></description><pubDate>Mon, 15 Sep 2025 08:26:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=45247391</link><dc:creator>myfonj</dc:creator><comments>https://news.ycombinator.com/item?id=45247391</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45247391</guid></item><item><title><![CDATA[New comment by myfonj in "Semantic Line Breaks (2017)"]]></title><description><![CDATA[
<p>> are not shown to readers.<p>I also wonder, why conceal bits of information from readers, while they could possibly benefit of them the same way editors and writers do.  Admittedly, the outcome then seem like a poetry, but … why not?<p>To give it a shot on that page, simple way to see these breaks it to run<p><pre><code>    document.body.insertAdjacentHTML
    ( 'afterend'
    ,`<style>p, li { white-space: pre-line; }</style>`
    )
</code></pre>
in devtools console. (Using `pre-wrap` instead of `pre-line` is also interesting: indents "wrapped" lines by the source code indent, what gives it even more clarity.<p>(By the way, HN comments 
also 
preserve 
line 
breaks 
in 
the 
source output, but unless revealed by some extra style, they are usually not presented on the surface.)</p>
]]></description><pubDate>Wed, 10 Sep 2025 13:55:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=45197760</link><dc:creator>myfonj</dc:creator><comments>https://news.ycombinator.com/item?id=45197760</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45197760</guid></item><item><title><![CDATA[New comment by myfonj in "It’s not wrong that (for HN) “[facepalm emoji]”.length == 36"]]></title><description><![CDATA[
<p>I see delightful unintended layer of irony in a fact that what the page really uses for the Emoji display are in fact image elements: JavaScript on that page replaces Unicode text with them. So the main heading content<p><pre><code>    It’s Not Wrong that “[that formidable facepalm]”.length == 36
</code></pre>
(sic syntactically wrong quotes) is in reality (for JS-capable and enabled clients) presented as<p><pre><code>    <h1 class="wp-block-post-title">It’s Not Wrong tha
    t (for HN)&nbsp;“<img draggable="false" role="img"
     class="emoji" alt="[that formidable facepalm]" sr
    c="https://s.w.org/images/core/emoji/16.0.1/svg/1f
    926-1f3fc-200d-2642-fe0f.svg">”.length == 36</h1>
</code></pre>
(arbitrary line breaks added for convenience). Here the "true" `.length` of the (scare)quoted content is: 144.<p>---<p>This comment is brought to you thanks: "View Selection Source" context menu entry in Firefox.</p>
]]></description><pubDate>Fri, 29 Aug 2025 16:08:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=45065915</link><dc:creator>myfonj</dc:creator><comments>https://news.ycombinator.com/item?id=45065915</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45065915</guid></item><item><title><![CDATA[New comment by myfonj in "Monodraw"]]></title><description><![CDATA[
<p>What is the Unicode support? Namely the "Symbols for Legacy Computing"[0] (including the latest supplements [1]) with "newly available" full octants palette could be neat to get sub-character "octant pixel" precision. (And/or exploitation of Braille [2] for the same purpose.)<p>(Not a Mac user, so cannot try, and not clear from screenshots for me; these all seem like ASCII + )<p>[0] <a href="https://www.unicode.org/charts/nameslist/c_1FB00.html" rel="nofollow">https://www.unicode.org/charts/nameslist/c_1FB00.html</a>
[1] <a href="https://www.unicode.org/charts/nameslist/c_1CC00.html" rel="nofollow">https://www.unicode.org/charts/nameslist/c_1CC00.html</a>
[2] <a href="https://www.unicode.org/charts/nameslist/c_2800.html" rel="nofollow">https://www.unicode.org/charts/nameslist/c_2800.html</a></p>
]]></description><pubDate>Fri, 29 Aug 2025 11:34:44 +0000</pubDate><link>https://news.ycombinator.com/item?id=45062718</link><dc:creator>myfonj</dc:creator><comments>https://news.ycombinator.com/item?id=45062718</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45062718</guid></item><item><title><![CDATA[New comment by myfonj in "Ask HN: The government of my country blocked VPN access. What should I use?"]]></title><description><![CDATA[
<p>Claude (pro, Sonnet 4) briefly showed something like "sorry, not going to answer this" at the beginning of its thought process, but eventually went ahead and provided something what seems believable full answer (cannot tell from a glance). The thought process (now) even includes this:<p>> The request is technical in nature and appears to be for legitimate circumvention purposes rather than anything malicious. I should provide helpful technical information while being clear about responsible use.
> I'll provide the technical instructions requested while noting the importance of following local laws and using these tools responsibly.<p>with no marks of prior obligations. (Strange.)<p><a href="https://claude.ai/share/cb6b3acb-540a-4c13-84ee-e0c093eb6a3f" rel="nofollow">https://claude.ai/share/cb6b3acb-540a-4c13-84ee-e0c093eb6a3f</a></p>
]]></description><pubDate>Fri, 29 Aug 2025 10:59:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=45062505</link><dc:creator>myfonj</dc:creator><comments>https://news.ycombinator.com/item?id=45062505</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45062505</guid></item><item><title><![CDATA[New comment by myfonj in "A small change to improve browsers for keyboard navigation"]]></title><description><![CDATA[
<p>Just chiming in with recommendation of yet another hints extension, this one is called »Yet Another Hints Extension (YAHE)« and is really minimal and nice.
Signed, happy long-time user.<p>(YAHE) <a href="https://gitlab.com/jpallari/yahe" rel="nofollow">https://gitlab.com/jpallari/yahe</a><p>(BTW, does anyone here remember extension called »Hit-A-Hint«?)</p>
]]></description><pubDate>Tue, 26 Aug 2025 10:15:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=45024550</link><dc:creator>myfonj</dc:creator><comments>https://news.ycombinator.com/item?id=45024550</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45024550</guid></item></channel></rss>