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/)A
Posts
1
Comments
276
Joined
3 yr. ago

  • Deleted

    Permanently Deleted

    Jump
  • Everybody wants science to cure cancer, but the moment someone does foundational research they lose their fuckin minds.Guys, the alternative is cutting up mice and pigs.

  • That's a legitimate thing to do if you have a slow implementation that's easy to verify and a fast implementation that isn't.

  • Deleted

    Permanently Deleted

    Jump
  • Robinia are taking over unmaintained areas like construction grounds and the edge of the forrest. Some in the forest are full size.What can I do against them spreading?

  • Under the peter principle you only get one level above your competency, that guy sounds high as a kite.

  • DIY

    Jump
  • I thought that was the cooler of a different component and the cpu just lacks one. Now that you said it, I see the CPU footprint on the cooler.

  • Yo momma's so fat she compresses everything she steps on to its Kolmogorov complexity.

  • I thought that goes without saying.

  • Ignore the reasonable comments that say you are more than ready.

    The next step is obviously learning Haskell, specifically sum types (like rusts enums), lists (lazy, like rusts iterators) and classes (like rusts traits).Then you will think, "if only there was a language that was a mix of C and Haskell" and that's rust.

  • And since it's a function with one argument we can interpret the exponent to mean repeated application.xm³=x(1 meter)(1 meter)(1 meter)xm³=x(1 meter)³ It all checks out.

  • Deleted

    Permanently Deleted

    Jump
  • If we can go back in time, we can recount the election, find those missing votes and have the person Americans actually wanted become president. Al Gore

  • Half of what the LLM did was basically:

     
        
    git clone https://github.com/servo/servo.git
    # todo mess up the code until it no longer compiles
    
    
      

    Where are my millions?

  • -u would give you the space back.The ransomware doesn't. There is a block of data, sitting there, taunting you.

  • Hebrew-based content appears machine-translated

    Did they vibe code their false identity as well?

  • Having done a few weeks of highly repetitive work, the worst was when I had to bundle items in groups of 10. I couldn't think a thought more complex, that repeating song lyrics to myself. When I got a few hours feeding a machine that counted for itself, it was liberating.

  • Spectre, because it forces us to acknowledge the abstractions we build upon.

  • Deleted

    Permanently Deleted

    Jump
  • Do whatever you want as long as you give them co-authorship.

  • 2Gb well spent

  • Deleted

    Permanently Deleted

    Jump
  • In lew of a hand cranked centrifuge, we installed a Crank machine next to the centrifuge, for "reforming offenders stimulating researchers by teaching them habits of industry."

  • You can design a language where you don't need to generate code to accomplish this.

    Other people have python scripts generate C, so having on in the same codebase and language is certainly an improvement.

    My question isn't why this is necessary in Rust. My question is why Rust was designed such that this was necessary.

    Because otherwise the compiler team either also needs to maintain a huge amount libraries or cut corners and move things to runtime that really should happen at compile time.

    Someone mentioned elsewhere that this allows for compile-time type safety. I'm still trying to wrap my head around how that works.

    printf is a great example. According to the C type system, it takes a string and a variable amount of untyped arguments dependent on the content of the string, but that doesn't actually describe the allowed arguments.Misusing printf like this printf("%s", 42); will get you a warning, but only because there is a special case for printf in the compiler. If you have your own function that does the same as printf, and you misuse the same way, you will find out by dissecting the core dump.

    In rust the format string gets parsed at compile time by a macro, which decides the type of each arguments that can than be checked by the compiler. Imagine printf("%s %d",...) created a function with the signature specialized_printf(char* agr0, int arg1), it would be impossible to pass the wrong types of arguments.

    Now that these tools exist people have gone further and made a library that checks SQL queries against the shema of a running database and causes a compile error if it doesn't fit.