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/)BJ
Posts
0
Comments
275
Joined
2 yr. ago

  • If male tears were the only control, then they run the risk of not finding any result. If you have 3 groups, you need a substantially larger sample size because you are running a less powerful statistical test.

    Easier to start with the test that's most likely to work, and narrow it down from there if you succeed

  • When I bought my laptop i was using windows and didn't research Linux compatibility :(

    And yup. A decade ago was when Linux turned a corner on the wifi driver front, 11 years ago was hell

  • 10 years ago was the turning point. I remember as late as 2010 -2012 having to use NDISwrapper to install the windows XP wifi drivers because there were no native drivers so you had to run the windows drivers through an emulation layer to get wifi to work. Even within the past 5 years I've had to compile my own fixes for realtek chips because the auto installed drivers were not working optimally

  • Ticking the non-free driver box was child's play. As late as like 2012 I remember needing to download NDISwrapper so I could make the windows drivers work through a compatibility layer

  • This has already been patched on all 64 bit OSes though - whatever 32 bit systems are still in existence in another 15 years will just roll their dates back 50 years and add another layer of duct tape to their jerry-rigged existence

  • I haven't asked for implementation, nor have I specified a language.

    Cool, sorry for putting in the effort to go above and beyond when answering your question.

    Why the latter?

    It's better. I'd provide more details but I don't want to inconvenience you with extraneous information again

  • The latter. It sounds like you are sending 100 requests concurrently, not 1m, which makes this fairly trivial

    python:

     
            pool = ThreadPoolExecutor(max_workers=100)
        for task in million_tasks:
            future = pool.submit(requests.get, task, args, kwargs)
            future.add_done_callback(fn_to_handle_result)
    
    
    
      

    Async would probably be better than using a threadpool, albeit with a bit more complexity. Queueing up 1m tasks at once may have a lot of memory overhead so you may need to queue up 100k, free memory, store results, and queue up more before the first 100k finishes

  • using his parliamentary iPad as a data hotspot,

    Wow the article says the exact same thing I did, what are the odds

    Just as a heads up, we use £ in Scotland. Not $.

    Most people can infer fundamental meaning from conversational context, sorry that is lost on you

  • An iPad most likely associated with his business mobile plan. Companies generally cover the roaming charge for it's employees because it means that employee is reachable if shit hits the fan while they are abroad. Mine does, and it's silly to assume it would be any different for someone holding public office.

    The only difference here is he went from a country where roaming is free (or like $1/GB), to a country where it is crazy expensive, racked up a ludicrous bill on his company plan, and then hoped no one would notice

  • Disable automatic updates then. snap --help

    IMO snaps were prematurely pushed but that's about it - they were a worse experience like two years ago when canonical started pushing them and almost every app had some quirk due to the sandboxing, but they have improved to the point that I literally can't remember the last time I encountered an issue with the snap version of a program (granted I only really use snaps when something isn't available as a .deb or there is a conflict)