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/python3 | |
| # encoding: utf-8 | |
| import struct | |
| import sys | |
| import zipfile | |
| def _has_timestamp(info): | |
| xtr = info.extra |
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 python3 | |
| import os | |
| import shutil | |
| import subprocess | |
| import sys | |
| import zipfile | |
| from collections import namedtuple |
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
| #!/bin/bash | |
| # Usage: github-sshkeys.sh USERNAME >> ~/.ssh/authorized_keys | |
| curl "https://api.github.com/users/$1/keys" | jq -r '.[] | .key' |
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
| git clone --no-checkout -o upstream [email protected]:obfusk/jiten.git | |
| git tag v0.3.6-26-ga981f30 remotes/upstream/master | |
| git checkout -b debian/sid v0.3.6-26-ga981f30 | |
| gbp export-orig | |
| dpkg-source --include-binaries --build . | |
| gbp buildpackage --git-pristine-tar --git-pristine-tar-commit --git-debian-branch=debian/sid |
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
| { nixpkgs ? import <nixpkgs> {} }: | |
| with nixpkgs; | |
| let | |
| callPkg = lib.callPackageWith (nixpkgs // pkgs); | |
| pkgs = rec { | |
| jiten = callPkg ( | |
| { lib | |
| , fetchFromGitHub | |
| , python3Packages | |
| , makeWrapper |
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
| #!/bin/bash | |
| case "${1:-on}" in | |
| on) | |
| xrandr --output HDMI-1 --auto --output eDP-1 --off | |
| xrdb -merge <<< 'Xft.dpi: 96' | |
| ;; | |
| off) | |
| xrandr --output HDMI-1 --off --output eDP-1 --auto | |
| xrdb -merge <<< 'Xft.dpi: 120' | |
| ;; |
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
| #!/bin/bash | |
| /bin/virsh -c qemu:///system "$@" |
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
| ├── lib/arm64-v8a/libpython3.9.so | |
| │ ├── objdump --line-numbers --disassemble --demangle --reloc --no-show-raw-insn --section=.text {} | |
| │ │ @@ -190721,18 +190721,18 @@ | |
| │ │ sub w13, w10, #0x1 | |
| │ │ cmp w14, #0xff | |
| │ │ b.ne 1b8ddc <PyUnicode_BuildEncodingMap@@Base+0x668> // b.any | |
| │ │ add w16, w9, #0x1 | |
| │ │ strb w9, [x20, x15] | |
| │ │ mov w14, w9 | |
| │ │ mov w9, w16 |
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
| #!/bin/bash | |
| exec v -R "$@" |