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/)PU
purplemonkeymad @programming.dev
Posts 1
Comments 123
They did not reply.
  • HumanFemales and HumanM both inherit from the Ape base class, it's from an older java code base. We tried to change it once but it turned out the person that had written had retired and any changes we made just broke stuff.

  • Even in the slowest lane
  • The only time I actually experienced this was in the states. Lady doing 5 under in outside lane, big queue trying to get past by pulling in Infront of me (with space.) Had to push past my Britishness to undertake.

  • Slack Will Begin Deleting Older Content From Free Workspaces
  • This change has basically no effect for anyone on a free workspace. Since you can't read those messages anyway. It only matters if you were going to go paid.

    I think it's more likely that slack has decided that all free workspaces that would upgrade, probably have, and they don't want to store all those messages that aren't going to be read anyway.

  • Even Apple finally admits that 8GB RAM isn't enough
  • S mode does allow you to turn it off, so it's more like a hobbled version of home.

    The computer is as bad as one I saw several years ago with 64g emmc and "Quad core processor." not a quad core, it was literally the name that showed in system. It did have 4 cores: at 400Mhz, boosting to 1.1Ghz. Buyer changed their mind and we couldn't give it away.

  • It's easier to remember the IPs of good DNSes, too.
  • Because 48 bits over 32 bits does not really solve the problems with ip4. 128 bits basically gives one ip4 address space to each square meter of earth. Ip6 also drops all the unused and silly parts of ip4 too.

  • Good evening I hate Windows. Yes, I have to do this.
  • Since you added a question mark, commands is the correct general term. However there are two types that can be a command. Functions: which are written in pure powershell and cmdlets: which are commands provided by dotnet classes. (Also exes and a bunch of other stuff common to other shells can be a command, but that's not important.)

    The reason they have different names is early on functions didn't support some of the features available to cmdlets, such as pipeline input. There was later a way to add this support to functions.

    In practice call them any of the 3 and people will know that you mean.

  • I feel like I might be missing a trick regarding combinations

    So I managed to get part 1 of the day, but it took 2 seconds to run on the real input, which is a bad sign.

    I can't see any kind of optimisation that means I can skip checks and know how many combinations are in those skipped checks (aside from 0.) I can bail out of branches of combinations if the info so far won't fit, but that still leads me to visiting every valid combination which in one of the examples is 500k. (And probably way more in the input, since if I can't complete the example near instantly the input is not happening.)

    Right now I take the string, then replace the first instance of a ? with the two possible options. Check it matches the check digits so far then use recursion on those two strings.

    I can try to optimise the matching, but I don't think that solves the real problem of visiting every combination.

    I don't think (or hope) it's just bad code but this is my code so far (python.)

    edit:

    spoiler

    a cache was the solution!

    5