Live data from Hacker News

Viewing profile — aqrit

aqrit

HN member
Joined
Wed, Aug 31, 2016, 9:01 PM UTC
HN karma
38
Public activity
30 items

About aqrit

No profile information was provided.

Recent public activity

  1. comment
    Comment #48529855

    >Is it really that difficult? Fiberglass handles are now standard on splitting mauls (for this reason). Rotten hearts, or driving wedges. It is easy to miss a swing by an inch or t…

  2. comment
    Comment #47015021

    [flagged]

  3. comment
    Comment #47014988

    _Daily_ hit pieces on Elon Musk (or Musk companies), going for something like a decade. These have petered out somewhat since he left DOGE. But they started way back before he shou…

  4. comment
    Comment #46233662

    MS makes "Times New Roman" available (at no cost), but not "Calibri".

  5. comment
    Comment #44868869

    `_mm_alignr_epi8` is a compile-time known shuffle that gets optimized well by LLVM [1]. If you need the exact behavior of `pshufb` you can use asm or the llvm intrinsic [2]. iirc, …

  6. comment
    Comment #44081704

    > health services in the area Massena Hospital is a 25-bed hospital. Might have to go to Canton or Ogdensburg for a family doctor (45 minutes by car). Most things serious get refer…

  7. comment
    Comment #44080377

    Alcoa (Aluminum Smelter, *cheap electricity*) was the major industry in the area. Massena plant now produces 85% less aluminum compared to ~15 years ago (AFAICT), leading to someth…

  8. comment
    Comment #43325558

    Limited internet connections (speed and/or data-caps). Something like Hughesnet (satellite ISP) couldn't stream more than 240p from youtube during peek times. The data-cap coerced …

  9. comment
    Comment #43312968

    > “regular” rejection sampling I was thinking naive: mask off unwanted bits then reject any value above the limit. It would seem like https://c-faq.com/lib/randrange.html would als…

  10. comment
    Comment #43310304

    A optimized version would use 64-bit accumulators (`psadbw` on SSE2, or some sort of horizontal adds on NEON). The `255` max constraint is pointless. Many programming languages/fra…

  11. comment
    Comment #43309954

    Why not use regular rejection sampling when `limit` is known at compile-time. Does fastrange[1] have fewer rejections due to any excess random bits[2]? [1] https://github.com/lemir…

  12. comment
    Comment #36571305

    That snippet would not reject bad chars, are non-digits rejected somewhere else? A simple scalar loop that multiplies an accumulator by 10, itoa() style, would be faster.

  13. comment
    Comment #36567969

    The methods in those articles could be slightly improved by picking better multipliers. https://stackoverflow.com/a/71594769

  14. comment
    Comment #36567805

    There are two digits for months. A check is required per-character to prevent bad chars (e.g 0x3A) from being laundered by the multiply. The '19' comes from fact that the first dig…

  15. comment
    Comment #35953764

    This was for a super optimizer.

  16. comment
    Comment #32727028

    One of the authors/contributors was looking into it: https://old.reddit.com/r/mainframe/comments/wevyvg/whats_the... I don't think this project was ready for a public announcement,…

  17. comment
    Comment #32681972

    The AVX2 version is using a 8 KiB table...? Even the range check is inefficient. I'd bet that the AVX2 version could be 50% faster.

  18. comment
  19. comment
    Comment #30848093

    related to IEEE 754 double-precision floating-point round-trips?

  20. comment
    Comment #29134346

    Any fine shows Walmart as liable. A free win for any $100mm civil lawsuit.

  21. comment
    Comment #27805055

    https://media.ccc.de/v/35c3-9788-memsad

  22. comment
    Comment #25606239

    www.central-boiler.co.uk ?

  23. comment
    Comment #25605836

    Outdoor wood furnaces (boilers) became very popular over the last 15 years. They are cheaper than fuel oil. A traditional wood stove has to be refilled every 2 hours (or so), and i…

  24. comment
    Comment #24843776

    The algorithm used by ClickHouse was "inspired" by https://github.com/cyb70289/utf8/ ... Which is known to be slower than this new method from simdjson.

  25. comment
    Comment #21561249

    here you go: https://github.com/expr-fi/fastlwc "Beating wc with C"