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

  • It's unavoidable - once the cheese gets hot enough the steam will either force the liquid cheese out of existing holes, or it will make its own holes.

    Make sure they are fresh out of the freezer when you put them in, as this lets the outside crisp up more before the inside becomes lava. Once you get close to the prescribed cooking time, you need to just sit in front of the oven door and watch them, and as soon as 2-3 break open, take the whole tray out

  • It's pretty common in Canada to be able to order fries with sour cream, green onion, tomatoes, and cheese/queso. (It's the best thing on taco bells menu and they don't even have it state-side)

    That being said fries are way greasier than a baked potato, and they are better suited to more acidic condiments (ketchup, malt vinegar, etc)

  • Mine died after 9 years or so. Did that thing where the rubber breaks down and gets super sticky and oily. Never had an issue with it losing its shape - you just have to make sure you store it fully pressed in so the lip pops out the far side of the tube

  • I expect it won't

    The year datatype is a 1 byte integer, but the engine adds/subtracts 1900 to the value under the hood and has special handling for zero.

    If you need to store more than 255 years range, you can use a 2 byte integer, which doesn't need that special handling under the hood, because with 2 bytes you can store 65000+ years

  • The nests (and many other thermostats) let you operate the fan independent from the AC.

    I configured my fan to run 15 minutes every hour regardless of whether or not the AC/heat is running and it fixed all of my issues with the upstairs being way too hot.

  • For every 1 person who knows how to use the windows command line, there are 50 people struggling because they didn't embed their video into their PowerPoint, or worse, their USB stick only contains a shortcut to their actual .ppt file

  • There are like 10,000 different solutions, but I would just recommend using what's built in to python

    If you have multiple versions installed you should be able to call python3.12 to use 3.12, etc

    Best practice is to use a different virtual environment for every project, which is basically a copy of an existing installed python version with its own packages folder. Calling pip with the system python installs it for the entire OS. Calling it with sudo puts the packages in a separate package directory reserved for the operating system and can create conflicts and break stuff (as far as I remember, this could have changed in recent versions)

    Make a virtual environment with python3.13 -m venv venv the 2nd one is the directory name. Instead of calling the system python, call the executable at venv/bin/python3

    If you do source venv/bin/activate it will temporarily replace all your bash commands to point to the executables in your venv instead of the system python install (for pip, etc). deactivate to revert. IDEs should detect the virtual environment in your project folder and automatically activate it

  • The feature is explicit sync, which is a brand new graphics stack API that would fix some issues with nvidia rendering under Wayland.

    It's not a big deal, canonical basically said 'this isn't a bug fix or security patch, it's not getting backported into our LTS release' - so if you want it you have to install GNOME/mutter from source, switch operating systems, or just wait a few months for the next Ubuntu release