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
| { | |
| inputs.secrets.url = "path:./secrets"; | |
| inputs.secrets.flake = false; | |
| inputs.dotfiles.inputs.secrets.follows = "secrets"; | |
| outputs = { dotfiles, ... }: dotfiles; | |
| } |
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 | |
| set -euo pipefail | |
| cat $(NIXPKGS_ALLOW_UNFREE=1 nix build --impure ln\#vscode-extensions.ms-vscode-remote.remote-ssh --json --out-link $(mktemp -d)/link | jq -r '.[0].outputs.out')/share/vscode/extensions/ms-vscode-remote.remote-ssh/out/extension.js | rg --only-matching --multiline-dotall --multiline 'echo "\$\{a\.getScriptStartMarker.*?\}\\n`;' | sed 's/\\n/\n/g' | sed 's/\\t/ /g' |
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 | |
| set -x | |
| NIXPKGS=$(nix flake metadata --json | jq -r '.path') | |
| STDENV_STORE_PATH=$(nix eval --raw $NIXPKGS#legacyPackages.aarch64-linux.stdenv.outPath) | |
| STDENV_STORE_PATH_HASH=$(echo $STDENV_STORE_PATH | cut -c 12-43) | |
| if ! curl --head --fail "https://cache.nixos.org/$STDENV_STORE_PATH_HASH.narinfo"; then |
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
| $ nix build --print-build-logs nixpkgs/952b88fd4efd6be925c9796be27a5d4126dbf4f2#airdrop-cli | |
| airdrop-cli> Running phase: unpackPhase | |
| airdrop-cli> unpacking source archive /nix/store/sjwali3jbi9qvsg04vdh2z412bmb3xws-source | |
| airdrop-cli> source root is source | |
| airdrop-cli> Running phase: patchPhase | |
| airdrop-cli> Running phase: updateAutotoolsGnuConfigScriptsPhase | |
| airdrop-cli> Running phase: configurePhase | |
| airdrop-cli> no configure script, doing nothing | |
| airdrop-cli> Running phase: buildPhase | |
| airdrop-cli> build flags: -j 2 -c release |
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
| // ==UserScript== | |
| // @name Element - Hide Activity-Only Notifications | |
| // @namespace https://github.com/Enzime | |
| // @match https://app.element.io/* | |
| // @grant none | |
| // @version 1.0 | |
| // @author Enzime | |
| // @description Only show unread indicators for "Mentions and keywords" rooms when mentioned | |
| // @license MIT | |
| // @run-at document-start |
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 nix-shell | |
| #! nix-shell -i python3 -p "python3.withPackages (ps: [ ps.pycdlib ])" | |
| """Inject autounattend.xml into a Windows ISO, preserving UDF structure and boot records.""" | |
| import hashlib | |
| import io | |
| import struct | |
| import sys | |
| import pycdlib |
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
| unexpected fault address 0x12a659d7c | |
| fatal error: fault | |
| [signal SIGSEGV: segmentation violation code=0x2 addr=0x12a659d7c pc=0x100d51e0c] | |
| goroutine 1 gp=0x3b09f7ca01e0 m=5 mp=0x3b09f7d80008 [running]: | |
| runtime.throw({0x1010cbdef?, 0x30373431203332?}) | |
| runtime/panic.go:1229 +0x38 fp=0x3b09f80ef590 sp=0x3b09f80ef560 pc=0x100dce258 | |
| runtime.sigpanic() | |
| runtime/signal_unix.go:945 +0x21c fp=0x3b09f80ef5f0 sp=0x3b09f80ef590 pc=0x100dcff7c | |
| runtime.memequal() |
OlderNewer