Skip Navigation
InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)VO
VonTum @programming.dev
Posts 2
Comments 13
Voice comments
  • I actually like this, at least in some way it could lower the barrier for actually explaining what a function does. Though I don't see this working in an office environment

  • Calculate the difference and intersection of any two regexes
  • Does this tool actually calculate regex differences? It seems more like a playground to look for the differences oneself.

    In any case, nice work! I've been looking to understand more of the mechanics of regex-to-dfa translation myself.

  • new mod 2

    Hi all I am also a new mod for the regex community! Let's make this place shine :)

    0
    Does anyone here have a Fairphone? How has your experience been?
  • I haven't tried any custom roms on my FP4. But I can say I wholeheartedly support their work. Maybe the older ones had issues, but mine has been running smoothly ever since I bought it when it launched.

    I've also dropped it like 200 times already, and haven't a single crack. The back cover is cracked though, but that's because I took it off so often to show people :P

    All in all, 10/10.

  • The move constructor that you have to declare, even though you don't want anyone to actually call it - The Old New Thing
  • True, though here the hack is incredibly unintuitive for the programmer. You have to declare the constructor, but then leave it unimplemented. Not to mention the compiler error that should catch this now only occurs at link time, and linking errors are even more cryptic to grok.

    When they made RVO mandatory, they should've removed the constructor declaration requirement as well, instead of a half-ass solution like this.

    As a final nail in the coffin, std::is_move_constructible<> suddenly returns true for this non-move-constructible type 😉

  • *Permanently Deleted*
  • This is the only way really to move forward with ISA extensions.

    Though, I think for this update we don't need to be too concerned. Since it changes the code in such an extensive way, compiler writers will be strongly incentivised to produce this duplicate path themselves. Instead of letting the burden of dispatching fall on the programmer like with AVX and friends

  • Hotspot performance engineering fails
  • Really nice article. It's almost always that optimizing a piece of code involves restructuring the data structure it operates on, instead of altering the details of how it operates on this datastructure. Optimizing compilers are already really good at the latter, while doing nothing about the former