javascript:window.location="https://cooked.wiki/"+window.location
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # | |
| # Usage: | |
| # bash readeck-cleanup.sh <limit> | |
| # | |
| # This script is based on https://codeberg.org/gollyhatch/readeck-cleanup | |
| # | |
| # The script tries to refetch "broken" bookmarks (i.e. bookmarks that "have errors") or bookmarks | |
| # whose content is empty from either the original URL or, failing that, from the Wayback Machine. If | |
| # fresh content is refetched, it replaces the broken bookmark but inherits its creation timestamp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| email [email protected] | |
| } | |
| *.mislav.net { | |
| tls { | |
| # xcaddy build --with github.com/caddy-dns/dnsimple | |
| dns dnsimple {env.DNSIMPLE_API_TOKEN} | |
| } | |
| request_body { |
Based on https://docs.getutm.app/guides/windows/
- You will need:
- A Windows 10 or Windows 11 license key;
- UTM for Mac - the App Store version is offered as a way to support the developers, since it's paid, but has the same features as the free build.
- Obtain scripts that bootstrap an arm64 Windows 11 22H2 (I've chosen Windows Home edition and not Pro);
brew install aria2 cabextract wimlib cdrtools minacle/chntpw/chntpw;- cd into the directory extracted in step 1 and
bash uup_download_macos.sh- this will produce an ISO; - In the UTM app, create a new “Virtualize” machine and mount the ISO file from the previous step;
- Check “Install drivers and SPICE tools”;
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # you must also upload the public key as signing key to https://github.com/settings/keys | |
| git config --global user.signingkey '~/.ssh/id_rsa' | |
| git config --global commit.gpgsign true | |
| git config --global gpg.format ssh | |
| # (optional) this file enables `git log --show-signature` and contains email addresses associated with public keys | |
| git config --global gpg.ssh.allowedsignersfile '~/.ssh/git-signers' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| hostname="MYHOST" # set this to where the Unifi Controller is served from | |
| root_ca="rootCA.pem" | |
| root_ca_key="rootCA.key" | |
| cert="unifi.pem" | |
| cert_key="unifi.key" | |
| # these don't really matter | |
| csr="unifi.csr" | |
| pfx_password="whatever" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ~/docker/config.json | |
| { | |
| "credsStore": "desktop", | |
| "credHelpers": { | |
| "docker.pkg.github.com": "gh", | |
| "ghcr.io": "gh" | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // > Preferences: Open Keyboard Shortuts (JSON) | |
| [ | |
| { | |
| "key": "shift+enter", | |
| "command": "go.test.cursorOrPrevious", | |
| "when": "editorTextFocus && editorLangId == 'go' && !findInputFocused && !replaceActive" | |
| }, | |
| { | |
| "key": "ctrl+shift+enter", | |
| "command": "go.test.package" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Auto-merge | |
| on: | |
| pull_request: | |
| types: [opened] | |
| jobs: | |
| automerge: | |
| runs-on: ubuntu-latest |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Usage: bash label-copy.sh <source-repo> <destination-repo> <label-names>... | |
| # | |
| # Requirements: GitHub CLI, jq | |
| # | |
| # Example: | |
| # brew install gh jq | |
| # bash label-copy.sh owner/repo1 owner/repo2 "bug" "help wanted" "feature" | |
| # | |
| set -e |
NewerOlder