Live data from Hacker News

Viewing profile — Mateon1

Mateon1

HN member
Joined
Thu, Jun 01, 2017, 3:12 PM UTC
HN karma
25
Public activity
19 items

About Mateon1

[ my public key: https://keybase.io/mateon1; my proof: https://keybase.io/mateon1/sigs/8KU5TUuNwXwt-6qWN9hnwWwezrx4xYfJ21o8C7qaoUE ]

Recent public activity

  1. comment
    Comment #44973448

    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…

  2. comment
    Comment #41571099

    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 repor…

  3. comment
    Comment #41019692

    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 annoy…

  4. comment
    Comment #41019622

    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 with…

  5. story
    Ask HN: Has anyone else been having issues with Cloudflare captchas this week?

    I seem to be getting blocked over 95% of the time on my laptop (10yr old 4-core gaming laptop), on all browsers, including Chrome and Firefox. It seems that Cloudflare increased so…

  6. comment
    Comment #40647679

    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…

  7. comment
    Comment #40133071

    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 …

  8. comment
    Comment #39974930

    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 rasteriz…

  9. comment
    Comment #39541368

    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 th…

  10. comment
    Comment #37249994

    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…

  11. comment
    Comment #18550295

    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 …

  12. comment
    Comment #16251034

    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://w…

  13. comment
    Comment #15806351

    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 fo…

  14. comment
    Comment #15549403

    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 h…

  15. comment
    Comment #15544490

    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 late…

  16. comment
    Comment #15378993

    `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); // Referen…

  17. comment
    Comment #15027236

    Is this project open source? Googling is ineffective due to an NES game called Mappy.

  18. comment
    Comment #15026519

    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 yo…

  19. comment
    Comment #14627119

    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.