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

  • I still haven’t signed up my local windows account Into my Microsoft account, despite the nagging. I’ve opted out of everything I can and I have a encrypted, filtered dns to block tracking and ads system wide.

    Just because some people use windows doesn’t mean they are ok with being tracked everywhere.

    Unfortunately gaming is still just mostly easier on windows though Linux is making gains.

  • It supports attempting to convert them to their own format, it doesn’t natively actually read the file as is so sometimes still easier and less opaquely buggy to locally convert, where you can easily check the output then riffle through the depths of amazons website to find out why a auto conversion failed.

  • A large oven uses a lot of electricity that is wasted for heating up that entire space.

    An air fryer is nothing but a small convection oven. That means it heats up almost instantly, wastes much less heat, can circulate the air much faster for faster baking, and uses substantially less heat. And it doesn’t generate the smell of deep frying.

    We use ours almost every day. The oven is basically not used unless we make full size pizza.

    The standard convection oven isn’t a better tool except in size.

    Our air fryer is also quite good at making things like potatoes or tofu crispy, not deep fried crispy, but nice and crispy without that much oil or the amount of time it would need in the convection oven.

  • I don’t know, but Arceus wasn’t a released Pokémon at the time. Depends on how accurate the Pokémon myths are 😂 I’ve always seen it as like Pokémon “gods” for different areas of the world over one God

  • I have enough issues with being a chronic tab hoarder without having another website that will inevitably be open on multiple tabs over time. Is this a me problem? Probably 😁

    Also for websites you use a lot, it’s nice to have a dedicated app for it. I don’t want an app for ever single website but a well built app tailored to work on the system in a seamless native way is fantastic.

  • The two biggest reasons driving me to get a be headset! I played beat saber at a friends a bit and I just love it

    And I played super hot on my Mac years ago, and got to play it a bit in vr at a con and can’t wait to actually be able to play the whole thing

  • You just need to tell Memmy the url of the instance your account is on.

    So if you have a Lemmy.world account, you put Lemmy.world as the and the username and password you use to sign I to Lemmy.world.

    Memmy doesn’t run any Lemmy website. It just knows how to sign into any Lemmy instance.

  • I generally use a for each type loop or a map because I am usually applying some function across a collection, and in both cases I use the singular name from the collections plural.

    ’Cities.map(city -> …)’

    For (val city in cities)

    If I actually need the index for some reason I still prefer loop structures that give me the index and the item together

    *note syntax pulled out of my head and not necessarily belonging to any specific language.

    For ( city, index in cities)

    cities.map((city, index) -> … )

    If I need to double loop a matrix array I would use rowIndex and ColIndex for the indexes.