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/)QU
Posts
0
Comments
52
Joined
5 mo. ago

  • Here's a screenshot of my headphone testing playlist. Songs I like, but also having either deep bass, bright highs, or both. Plus, they're songs I've listened to a million times, so I know how they're supposed to sound.

    As for music I'd want to get first when starting over: Dark Side of the Moon.

  • Those 4% can make an RTX 5070 Ti perform at the levels of an RTX 4070 Ti Super, completely eradicating the reason you’d get an RTX 5070 Ti in the first place.

    You'd buy a 5070 Ti for a 4% increase in performance over the 4070 Ti Super you already had? Ok.

  • Since it needs to be compiled to JavaScript in order to be used, I kind of consider it a different language. Yes, it's a strict superset of JavaScript, but that makes it different.

  • It's much better to make your own function that uses bitwise operations to do addition.

     
        
    function add(a, b) {
        while (b !== 0) {
            // Calculate carry
            let carry = a & b;
    
            // Sum without carry
            a = a ^ b;
    
            // Shift carry to the left
            b = carry << 1;
        }
        return a;
    }
    
      

    (For certain definitions of better.)