Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
Mateon1
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
7 ms
·
1.
▲
by
Mateon1
10d ago
Sponsorblock does exactly that (and a bit more). I can't watch youtube without it nowadays. Subscription feed -> yt-dlp -> mpv with sponorblock. If this ever stops working I'm not suffering through ads, I'm ignoring you
2.
▲
by
Mateon1
1y ago
The problem it's originally fixing is bad scrapers accessing dynamic site content that's expensive to produce, like trying to crawl all diffs in a git repo, or all mediawiki oldids. Now it's also used on mostly static conte
3.
▲
by
Mateon1
2y ago
Several sites using cloudflare are partially down since just after 18:00Z. AO3_Status reports it's Cloudflare routing issues for IPv4 traffic. (but the Cloudflare status page reports nothing useful)
4.
▲
by
Mateon1
2y ago
I'm using Windows on this laptop, this seems to affect all sites with any sort of Cloudflare protection, including Cloudflare's support and discourse sites, pubs.acs.org, and annoyingly some sites necessary for my current projects
5.
▲
by
Mateon1
2y ago
Seems to affect all sites, even cloudflare's own sites like http://community.cloudflare.com/ and https://support.cloudflare.com/ , so I can't even report this directly to them without entering the
6.
▲
Ask HN: Has anyone else been having issues with Cloudflare captchas this week?
3 points
by
Mateon1
2y ago
|
4 comments
7.
▲
by
Mateon1
2y ago
I mean, technically they have? Maybe not in this update, but they include local AI models for webpage translation. It's pretty useful (when it's a supported language pair, at least)
8.
▲
by
Mateon1
2y ago
Yes, you'd just need to have a way to provide input (probably easiest as a demo file), and a machine big enough to simulate the pattern. You'd definitely be waiting for a while to see any action, though :P
9.
▲
by
Mateon1
2y ago
If you're interested in dives that deep, you might like Gynvael Coldwind's hello world in Python on Windows dive [1]. Goes through CPython internals, Windows conhost, font rasterization, and GPU rendering, among others. [1]: http
10.
▲
by
Mateon1
3y ago
The `single_ref` field is a fixed-size array in both of the objects referenced in this line, so this line can't panic, and no bounds checks are involved (since the compiler sees the index < length at compile time and doesn't ev
11.
▲
by
Mateon1
3y ago
In my experience, if you have to build an older maven project, you have to go through a lot of painful hoops, mostly around HTTP vs HTTPS repos and java source/compiler versions. I have encountered many old projects that don't bui
12.
▲
by
Mateon1
8y ago
I went back and forth, both ways. I started out in Python with snake_case identifiers, then moved to Javascript with camelCase, and now I mostly use Rust with snake_case for names and UpperCamelCase for types. I don't find either style
13.
▲
by
Mateon1
9y ago
I took a look at other days of your musical advent. I think my favorite is day 23. Day 4 strongly reminds me of the True Lab music from the Undertale soundtrack [1]. [1]: https://www.youtube.com/watch?v=y49b8aiQVBg - Undert
14.
▲
by
Mateon1
9y ago
Unfortunate that this project is only a partial reimplementation of QuickCheck. I was hoping that this would use fuzzing coverage. Coverage guided QuickCheck has been on my mind for a while, I believe it would greatly improve fuzzing experi
15.
▲
by
Mateon1
9y ago
BitTorrent isn't "not practical". It is however less practical than IPFS. With IPFS, you can effortlessly link from one tree to another, already existing tree. In BitTorrent, you have to include a .torrent file, or an infohas
16.
▲
by
Mateon1
9y ago
While I haven't looked for more info, I can assure you IPFS is a slower protocol than HDFS. The existing IPFS implementation involves a lot of overhead in memory, CPU use, and latency [and as you can see in the MapReduce bar graph, it&
17.
▲
by
Mateon1
9y ago
`let` is block scoped, while `var` is function scoped. Essentially: function do_something() { if (true) { var x = 42; let y = 42; } console.log(x); // 42 console.log(y); // R
18.
▲
by
Mateon1
9y ago
Is this project open source? Googling is ineffective due to an NES game called Mappy.
19.
▲
by
Mateon1
9y ago
Recently I came across the NASA Astronomy Picture of the Day website[1], it's old-school HTML, started in 1995 and still updated today. All the HTML takes 2-4 kB on average, but you might not get much use from the site in a terminal :)
20.
▲
by
Mateon1
9y ago
See how GNU units resolves this: 1/10 m -> 0.1 / m 1|10 m -> 0.1 m 27 ^ 2/3 -> 243 27 ^ 2|3 -> 9 You get the gist of it - a division operator with insane precedence.