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/)S
Posts
16
Comments
219
Joined
3 yr. ago

  • ♫ monopoly duopoly oligopoly cartel ♫

    ♪ anti-trust, pork barrel, propaganda lobbying ♪

    ♫ economies of scale, information asymmetry, regulatory capture and personal responsibility ♫

    ♪ unions, pinkertons, labor theory of value and the CIA ♪

    ♫ rent seeking, georgism, tax incentive, scarcity ♫

    ♪ free trade, minimum wage, petrodollar and the MIC ♪

    ♫ we didn't start the fire, it was always burning since the world's been turning ♫

    provided as is, no warranty in regard to serving any particular rhyme or meter, express or implied, consult a licensed physician before attempting to sing along

  • other techbros have praised him, citing the exact list of symptoms google gives for "high-functioning psychopath"

    (disclaimer: google may give bad medical advice)

  • C++ is std::__cxx11::list<std::__shared_ptr<table, (__gnu_cxx::_Lock_policy)0>, std::allocator<std::__shared_ptr<table, (__gnu_cxx::_Lock_policy)0> > >::erase(std::_List_const_iterator<std::__shared_ptr<table, (__gnu_cxx::_Lock_policy)0> >) /usr/include/c++/12/bits/list.tcc:158

  • your underflow error is someone's underflow feature (hopefully with -fwrapv)

  • how did I miss that..

  • also a fun fact, while commercial aviation is very safe, private planes are much more dangerous, being almost as dangerous per mile as a regular car (and you get a lot more miles per hour of travel)

  • This description could be anyone.

    CIA assassination is the leading cause of death worldwide

  • that works for 2 word names eg is_open or is_file, but in this case is_dialog_file_open is structured like a question, while dialog_file_is_open is structured like a statement

  • void *

    Jump
  • as many iterations as it takes

     
        
    void* x = &x;
    char* ptr = (char*)&x;
    
    while (1) {
        printf("%d\n", (unsigned int)*ptr);
        ptr--;
    }
    
      
  • that's based entirely on 4chan's advertising demographic claims which I'm not sure if they should be given much credence given there is no information at all about how it was determined.

    Also the statistic is at least 10 years old without being updated, and could even be much older

  • Jump
  • monospace means the width of the "whole" character is always the same, but the width of the visible part of the character is not (imagine how large the dot would have to be for that to work)

    ...mm.m.

  • [|(-,)

    Jump
  • or that I don't want to (google what it is and then) press some weird keybind and spend minutes scrolling through the list of emojis when good ol' emoticons do the trick

  • nah, but in hindsight it may be a bit too subtle

  • This is not a joke. If you don't wake up at 4 am to start harassing windows users, you will never become a GNU/Linux Trillionaire.

  • Paychecks? I am a self-made billionaire, all thanks to the Free Software Grindset

  • there was only space for 5 things ( *** Debloat Mindset *** )

  • Nokia bought the parent company of bell labs in 2016. By that point bell labs had already been completely restructured to the point that it has basically nothing to do with the historical bell labs.

  • slow inverse square root:

     
        
    float slowinvsqrt(float x)
    {
        const long accuracy = 100000000;    // larger number = better accuracy
        if (x <= 0.0f) {
            return NAN;
        }
        if (x == 1.0f) {
            return 1.0f;
        }
        if (x < 1.0f) {
            return 1.0f / slowinvsqrt(1.0f/x);
        }
    
        int max_power = log(accuracy) / log(x);
        long pow1 = pow(x, max_power - 1);
        long pow2 = pow(x, max_power);
        double current = 1.0;
        double previous = 1.0;
    
        for (long i = 0; i<10*accuracy; i++) {
            current = sin(current);
            if (i == pow1) {
                previous = current;
            }
            if (i == pow2) {
                return current / previous;
            }
        }
    }