- Unless you've gotten permission:
- Don't destroy decorations or buildings.
- Don't take items from chests, and leave the order of items in chests as is.
- Don't strip mine caves near a village, the location may have been chosen to gather resources to build/level the village.
Unix Command | Command | PowerShell | What It Does |
---|---|---|---|
which <EXECUTABLE> |
where <EXECUTABLE> |
(Get-Command -ErrorAction SilentlyContinue -Name <EXECUTABLE>).Path |
Outputs a path to an executable if it exists, or a blank string. Usually used to help determine if something is installed/available to use. |
How to remove device that can't be removed from the Bluetooth window?
Sometimes you can't pair a new device (like a new game controller) because there's a conflict with an old device. When you try to remove the device it may keep reporting 'Failed to remove'. If you go into Device Manager > View > Show Hidden Devices, and then expand the Bluetooth section you may see grayed out duplicate entries for your device. Try removing those and see if the troublesome device disappears from the Bluetooth window.
How to set up an XBox controller
I got a USB to Bluetooth dongle, and for an older controller I was able to just plug it in, go to Bluetooth > Add Device > Everything else, put the controller into pairing mode and it would just show up and pair.
Svelte has an open issue because of a "feature" that adds duplicate classses which breaks the expected cascade in favor of some inexplicable specificity. Instead of having to go through all your override/modifier rules and add !important
to them, you can just add this WP plugin to strip out the duplicate classes.
// in ./.webpack/loader.remove-duplicate-svelte-classes.js
module.exports = function removeDuplicateSvelteClasses(source) {
const SVELTE_RULE_REGEX = /\.svelte-[a-z0-9]+/g;
const ruleMatches = (source.match(SVELTE_RULE_REGEX) || []);