2023-08-01
Check the file (right below this if you're viewing the gist on github) called
bash_zreqs.prompt
for the prompt.
#!/bin/bash | |
# [GPT-3.5] OBVIOUSLY ITS BY THE ROBOT ITS ALL BY THE ROBOT | |
# v4.6.0 | |
# (this file).sh < AutoGPT-Package < AutoGPT + Kurtosis < OpenAI GPT Models + lots more.... | |
# builder for `AutoGPT-Package`, a packaged deployment tool for AutoGPT. | |
# | |
# ⚠ WARNING ⚠ -- ONLY `.json` CONFIG FILES ARE FUNCTIONAL AT THE MOMENT. | |
# 4/29/2023 | |
# | |
# SOURCES |
#!/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. |
#!/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. | |
# |
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(); |
(hp.com article)
By Michelle Wilson and Tulie Finley-Moise
If you're looking into automating transactions in your Steam Account using Steam Bots, you most likely will need to:
- Have TOTP ("MFA" or "2FA") enabled via Steam Authenticator (Steam Guard)
- Have in hands both
shared secret
andidentity secret
Having Steam Guard enabled for your Steam Account ensures that there will be no holds on transactions such as trades. Having the shared
and identity
secrets are necessary for complete autonomy of your Steam Bot, meaning it won't require any human interaction from you.
There is a tremendous lack of information about all of this as Steam does not provide official support for implementing Steam Bots. The information available in this guide was gathered through lots of blood and sweat hard research, reverse eng
#/usr/bin/python3 | |
# get_coords.py v1.0.0 | |
# -------------------- | |
# | |
# @zudsniper | |
import requests | |
import json | |
import os | |
import sys | |
from loguru import logger |
easily convert markdown to pdf -- including variables provided in the header of the file or within a separate provided metadata.yaml
file
🔴 wkhtmltopdf
is REQUIRED
Installation process varies based on OS.
- Linux (debian based)
sudo apt-get install wkhtmltopdf -y
# 10ZIPPER.ps1 | |
# v2.0.3 | |
# ----------- | |
# | |
# @zudsniper | |
# @openai | |
param( | |
[Parameter(Mandatory=$true)] | |
[Alias("s")] | |
[string[]]$source, |