Skip to content

Instantly share code, notes, and snippets.

View zudsniper's full-sized avatar
🎲
snake eyes every time

zod zudsniper

🎲
snake eyes every time
View GitHub Profile
@zudsniper
zudsniper / get_dock.sh
Last active August 2, 2023 03:03
https://gh.zod.tf/bashbits/tree/master/installers/get_dock.sh [DEPRECATED] Gist to install docker & docker-compose from docker sources using apt. ℹ Ubuntu/Debian only!
#!/bin/bash
# get_dock.sh
# -----------
#
# Installs docker as well as docker-compose directly from docker sources using aptitude package manager.
# 🚫 ONLY LINUX UBUNTU/DEBIAN SYSTEMS SUPPORTED
#
# @zudsniper
#############################################
@zudsniper
zudsniper / dlgh.sh
Last active June 7, 2023 13:23 — forked from erdincay/sugh.sh
download all repositories from a specified organization. Uses the gh command line tool for authentication of private repositories.
#!/bin/bash
# dlgh.sh
# --------
#
# Download all repositories of a user or organization using the gh commandline tool.
# REQUIRES `gh auth login`!
#
# @zudsniper
# GitHub-themed header
@zudsniper
zudsniper / BOOT_TO_BIOS_WIN10.md
Last active June 4, 2023 22:27
HP article converted to Markdown explaining multiple ways to access the BIOS of older Windows 10 systems.

(hp.com article)


How to Boot from a USB Drive on Windows 10 PCs

By Michelle Wilson and Tulie Finley-Moise

@zudsniper
zudsniper / bash_script.prompt.md
Last active August 2, 2023 02:52
🖨 [GPT-4] Prompt to qualify a bash script generation so as to fit my specifications. (07/15/2023)

UPDATE regarding this README file

2023-08-01

THIS FILE IS NOT BE GUARANTEED, OR EVEN ASSUMED, TO BE UP TO DATE.

Check the file (right below this if you're viewing the gist on github) called bash_zreqs.prompt for the prompt.


the_answers


@zudsniper
zudsniper / VPS_COMPARISONS.md
Last active May 28, 2023 14:39
A ChatGPT-4 w/ WebPilot Plugin Response to a Prompt asking for a list of various VPS services compared to AWS as industry standard.
@zudsniper
zudsniper / SPIRIT_AIRLINES_SUCKS.md
Created May 13, 2023 21:21
Spirit Airlines Terms & Conditions... I don't like Spirit Airlines very much

Certainly! Here's a full summary of the stipulations from the Spirit Airlines Terms & Conditions in markdown README format:

Spirit Airlines Terms & Conditions Summary

This summary provides an overview of the key stipulations found in the Spirit Airlines Terms & Conditions document.

Table of Contents

1. Add dependecy:
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<version>${log4j.version}</version>
</dependency>
2.Create config file for log4j (https://logging.apache.org/log4j/2.x/manual/configuration.html).
I prefer log4j2-test.properties because according documentation this format will look second, after configFile:
'If no system property is set the properties ConfigurationFactory will look for log4j2-test.properties in the classpath.'
---------------------------------------------------------------
@zudsniper
zudsniper / GRAB_TOKEN.js
Created May 10, 2023 02:11
discord webapp token grabber -- educational purposes only
function getToken() {
let a = [];
webpackChunkdiscord_app.push([[0],,e=>Object.keys(e.c).find(t=>(t=e(t)?.default?.getToken?.())&&a.push(t))]);
console.log(`${a}`);
return a[0];
}
getToken();
@zudsniper
zudsniper / simple_init_agpt.sh
Created May 1, 2023 20:07
[V1] initialization of Auto-GPT image with Redis memory. Version 1
#!/bin/bash
# init_agpt.sh
# ------------
#
# this script will initialize the redis server for AutoGPT
# then start the AutoGPT instance of name $1
# ---------------------------------------------------------
# MAKE SURE YOU SET YOUR REDIS ENVIRONMENT VARIABLES WITHIN YOUR CONFIGURATION!
# it may be `config.json` or `.env`, or some other way.
#
@zudsniper
zudsniper / init_agpt.sh
Last active June 29, 2023 08:31
[V4.7.0] Auto-GPT init script with docker.compose (snap) and python venv
#!/bin/bash
# init_agpt.sh
# ------------
#
# V4.7.0
# This script will initialize the redis server for AutoGPT
# then start the AutoGPT instance of name $1
# ---------------------------------------------------------
# MAKE SURE YOU SET YOUR REDIS ENVIRONMENT VARIABLES WITHIN YOUR CONFIGURATION!
# it may be `config.json` or `.env`, or some other way.