This file contains 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
#include <tunables/global> | |
/usr/games/pyrogenesis { | |
#include <abstractions/audio> | |
#include <abstractions/base> | |
#include <abstractions/dbus-session-strict> | |
#include <abstractions/freedesktop.org> | |
#include <abstractions/nameservice> | |
#include <abstractions/nvidia> | |
#include <abstractions/wayland> |
This file contains 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/sudo sh | |
## ruby_revealer.sh -- decrypt obfuscated GHE .rb files. 2.0.0 to 2.3.1+. | |
## From `strings ruby_concealer.so`: | |
## | |
## > This obfuscation is intended to discourage GitHub Enterprise customers | |
## > from making modifications to the VM. | |
## | |
## Well, good, as long as its not intended to discourage *me* from doing this! |
This file contains 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/sh | |
# Executes the command provided as argument and respawns it if it got | |
# terminated. | |
# | |
# Licensed under CC0 <https://creativecommons.org/publicdomain/zero/1.0/> | |
$@ & | |
PID=$! | |
while : |
This file contains 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 | |
# Licensed under CC0 <https://creativecommons.org/publicdomain/zero/1.0/> | |
AWS_PROFILE="default" | |
BUCKETS=$(aws --profile $AWS_PROFILE s3api list-buckets --query 'Buckets[*].Name' --output text) | |
echo -e "bucket name\tstatus of the transition\tprefix the transition applies to\tdays after which the transition applies\tto storage class\tdelete after days\tdescription" | |
for bucket in $BUCKETS; do |
This file contains 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/sh | |
# Reads OTP secrets belonging to an readable name from a file and generates OTP | |
# tokens. The secrets should be in a file, separated by a colon. | |
# E.g. test:secretkey | |
# | |
# Works really nicely together with an alias: | |
# alias otp='~/otp.sh' | |
# | |
# Licensed under CC0 <https://creativecommons.org/publicdomain/zero/1.0/> |