THIS GIST WAS MOVED TO TERMSTANDARD/COLORS REPOSITORY.
PLEASE ASK YOUR QUESTIONS OR ADD ANY SUGGESTIONS AS A REPOSITORY ISSUES OR PULL REQUESTS INSTEAD!
THIS GIST WAS MOVED TO TERMSTANDARD/COLORS REPOSITORY.
PLEASE ASK YOUR QUESTIONS OR ADD ANY SUGGESTIONS AS A REPOSITORY ISSUES OR PULL REQUESTS INSTEAD!
To remove a submodule you need to:
| #!/bin/bash | |
| # This scripts lets you check which minimum GLIBC version an executable requires. | |
| # Simply run './glibc-check.sh path/to/your/binary' | |
| # | |
| # You can set `MAX_VER` however low you want, although I (fasterthanlime) | |
| # feel like `2.13` is a good target (For reference, Ubuntu 12.04 has GLIBC 2.15) | |
| MAX_VER=2.13 | |
| SCRIPTPATH=$( cd $(dirname $0) ; pwd -P ) |
| image: golang:latest | |
| variables: | |
| REPO_NAME: gitlab.com/***/*** | |
| before_script: | |
| - go version | |
| - echo $CI_BUILD_REF | |
| - echo $CI_PROJECT_DIR |
| #!/bin/bash | |
| IMAGE="gcr.io/google-containers/ubuntu-slim:0.14" | |
| COMMAND="/bin/bash" | |
| SUFFIX=$(date +%s | shasum | base64 | fold -w 10 | head -1 | tr '[:upper:]' '[:lower:]') | |
| usage_exit() { | |
| echo "Usage: $0 [-c command] [-i image] PVC ..." 1>&2 | |
| exit 1 | |
| } |
| { | |
| "Command": "skin", | |
| "Skins": [ | |
| { | |
| "Item Shortname": "fun.guitar", | |
| "Skins": [ | |
| 0, | |
| 809801196, | |
| 826914904, | |
| 809938266, |
This uses Linux kernel dyamic debug features
https://www.kernel.org/doc/html/latest/admin-guide/dynamic-debug-howto.html
This asumes that debugfs is mounted under /sys/kernel/debug
echo 'module wireguard +p' | sudo tee /sys/kernel/debug/dynamic_debug/control
| #!/bin/bash | |
| # | |
| # MOVED TO https://github.com/TheDevMinerTV/sh.devminer.xyz/blob/master/scripts/copy_ssh_keys.sh | |
| # | |
| # You can use this script to copy all public keys from your local machine to multiple remote machines. | |
| # | |
| # Usage: ./copy_ssh_keys.sh <non-root username> <own public key> <folder with pub keys> <host1> [host2]... | |
| # |
| ;===== Change filament G-code without AMS === | |
| ;===== version: 1.2 ========================= | |
| ;===== original version date: 20230719 ====== | |
| ;===== description ========================== | |
| ; Everything between M620 and M621 is executed only if AMS is connected. | |
| ; All M620, M620.x and M621 commands are removed to enable manual filament change. | |
| ; first filament change is skipped | |
| {if toolchange_count > 1} |
| import { useEffect, useState } from 'react'; | |
| import { PopoverContent, PopoverTrigger } from '../primitives/ui/popover'; | |
| import { Popover } from '../primitives/ui/popover'; | |
| import { BsCardHeading } from 'react-icons/bs'; | |
| import { Button } from '~ui/components/primitives/ui/button'; | |
| import { FiAlertCircle } from 'react-icons/fi'; | |
| import { TbAlertCircleFilled } from 'react-icons/tb'; | |
| type HeadValues = { | |
| title?: string; | |
| canonical?: string; |