frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

How to Enable SFTP Without Shell Access on Ubuntu

https://www.digitalocean.com/community/tutorials/how-to-enable-sftp-without-shell-access-on-ubunt...
1•thunderbong•1m ago•0 comments

RND1-Base-0910: experimental diffusion LM with 30B params (3B active)

https://huggingface.co/radicalnumerics/RND1-Base-0910
1•jasonjmcghee•1m ago•0 comments

State of AI Report

https://www.stateof.ai/
1•kyahwill•9m ago•0 comments

The Underscore Music Player

https://kottke.org/25/10/the-underscore-music-player
1•tobr•15m ago•0 comments

A trader's 5-minute fix for missing IPO momentum plays

1•kvallans•16m ago•0 comments

Ask HN: Will large scale cross-holdings in US stocks lead to a market crash?

1•roschdal•17m ago•0 comments

When Will Quantum Computing Work?

https://tommccarthy.net/when-quantum.html
1•pongogogo•18m ago•0 comments

Every website builder felt like torture – so I built my own

https://instantsite.app
1•emanuilv•20m ago•0 comments

Laion, the dataset behind Stable Diffusion (2023)

https://www.deeplearning.ai/the-batch/the-story-of-laion-the-dataset-behind-stable-diffusion/
1•thelastgallon•28m ago•0 comments

Ask HN: Laptop for learning intermediate modern sysadmin

1•shivajikobardan•29m ago•2 comments

Response times and what to make of their percentile values

https://www.ombulabs.com/blog/performance/response-times-and-what-to-make-of-their-percentile-val...
1•thelastgallon•30m ago•0 comments

Numair Faraz Is R*

1•kwoii•34m ago•0 comments

Apple Reorganization Moves Health and Fitness to Services

https://www.bloomberg.com/news/articles/2025-10-10/apple-to-move-health-fitness-divisions-to-serv...
1•ksec•41m ago•1 comments

Tom's Data Onion

https://www.tomdalling.com/toms-data-onion/
1•archargelod•44m ago•1 comments

Syneris — Instantly share videos, images, and websites with zero friction

https://syneris.netlify.app
1•brandon22•44m ago•0 comments

Flowcharts vs. Handoffs: a simple math framing

https://blog.rowboatlabs.com/flowcharts-vs-handoffs-a-simple-math-framing/
1•thunderbong•48m ago•0 comments

Battlefield 6 players hit server queues as over 500k concurrents after launch

https://www.pcgamer.com/games/fps/battlefield-6-players-hit-server-queues-as-it-rockets-to-over-5...
2•ksec•51m ago•2 comments

AutomatosX – Multi-agent framework with persistent memory for developers

https://github.com/defai-digital/automatosx
2•akira921•57m ago•1 comments

Filmmaker Mode adapts to daylight to fix dark movies

https://www.flatpanelshd.com/news.php?subaction=showfull&id=1759990647
1•ksec•59m ago•0 comments

Why it took 4 years to get a lock files specification

https://snarky.ca/why-it-took-4-years-to-get-a-lock-files-specification/
1•todsacerdoti•1h ago•0 comments

More than half of entrepreneurs are considering moving to a new country

https://www.cnbc.com/2025/10/10/entrepreneurs-moving-motivations-hsbc-survey.html
1•jnord•1h ago•1 comments

The A.I. Prompt That Could End the World

https://www.nytimes.com/2025/10/10/opinion/ai-destruction-technology-future.html
1•axiomdata316•1h ago•0 comments

Family of ducks crossing Perth's Kwinana Freeway cause six-car peak-hour pile up

https://www.abc.net.au/news/2025-10-10/ducks-crossing-kwinana-freeway-cause-pile-up-/105877568
1•defrost•1h ago•0 comments

Bose SoundTouch home theater systems regress into dumb speakers on Feb 18

https://arstechnica.com/gadgets/2025/10/bose-soundtouch-home-theater-systems-regress-into-dumb-sp...
1•jnord•1h ago•0 comments

All fluffed up: why modern balls spark injury worries and frustration in tennis

https://www.theguardian.com/sport/2025/oct/10/all-fluffed-up-why-modern-balls-are-causing-frustra...
7•ggm•1h ago•0 comments

Telegram's Durov Warns of Digital Freedom Collapse

https://reclaimthenet.org/telegram-ceo-pavel-durov-warns-decline-of-online-freedom
1•mikece•1h ago•0 comments

Investments in data centers responsible for 92 % of GDP growth

https://twitter.com/jasonfurman/status/1971995367202775284
2•tu7001•1h ago•0 comments

AMD and Sony's PS6 chipset aims to rethink the current graphics pipeline

https://arstechnica.com/gaming/2025/10/amd-and-sony-tease-new-chip-architecture-ahead-of-playstat...
3•zdw•1h ago•0 comments

Bite Genie

https://bitegenie.com
1•maezeller•1h ago•0 comments

Login to Swerte99 Casino – Play Smart, Win Big

https://panalobet.one/swerte99-login/
1•bewan•1h ago•1 comments
Open in hackernews

Firefox always use DoH even when you disable it

https://mastodon.social/@fernvenue/115352976388120059
5•fernvenue•4h ago

Comments

Bender•3h ago
I am replying in this thread with Firefox 140.3.1 ESR. My queries are going to my router/firewall.

Verify that about:config network.trr.mode is set to 5.

If one has control over their local DNS they can also create a local record, example in Unbound DNS. Some applications will query this to see if DoH is permitted in the network.

    local-zone:     "use-application-dns.net." always_nxdomain
If that does not work create a startup script that will loop through all the common DoH providers and blackhole route them. Some may say that DoH could be on any CDN node but that is not the case. The DoH providers use static addresses and in some cases vanity IP addresses. [1] using this entire data-set is unnessecary as Firefox has only ever used Cloudflare and Google in the past.

    for OpenRes in $(grep -Ev ^# /usr/local/etc/_open_resolvers.txt);do /sbin/ip route add blackhole "${OpenRes}" 2>/dev/null;done
If using Unbound DNS enable logging of query responses to a tmpfs mount and ensure log rotation keeps the usage small and sends the compressed rotated files to the disk. Query logs can help verify requests are being processed by local DNS.

    log-queries: no
    log-replies: yes
    log-servfail: yes
[1] - https://github.com/dibdot/DoH-IP-blocklists
fernvenue•3h ago
Thx! And seems that `use-application-dns.net` works for me. But I will still consider replacing Firefox, because this behavior, which is inconsistent with the settings, is unacceptable to me. However, I'm glad I learned a new thing, thx again :)
Bender•3h ago
No problem. I've never see Firefox exhibit this behavior. Out of curiosity have you started in safe mode disabling all the addons and does it still do this?
fernvenue•3h ago
Hi, I just tried safe mode, and still the same :)
Bender•3h ago
Interesting. If network.trr.mode is set to 5 this should not be occurring. If there is no plan to use FF again then I suppose submitting a bug would be a waste of time. Perhaps others will run into whatever condition is causing this behavior or perhaps it would happen on mine and my blackhole routes are breaking it.
fernvenue•3h ago
Yep, that `network.trr.mode` is `5`, just confirmed. I'm considering Zen now.