2023-08-01
Check the file (right below this if you're viewing the gist on github) called
bash_zreqs.prompt
for the prompt.
<REDACTED>
{ "link": "https://www.pcmag.com/picks/the-best-vps-web-hosting-services", "user_has_request": true }
Certainly! Here's a full summary of the stipulations from the Spirit Airlines Terms & Conditions in markdown README format:
This summary provides an overview of the key stipulations found in the Spirit Airlines Terms & Conditions document.
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
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.' | |
--------------------------------------------------------------- |
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
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(); |
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 | |
# 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. | |
# |
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 | |
# 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. |
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 | |
# [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 |
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 | |
# [GPT-3.5] OBVIOUSLY ITS BY THE ROBOT ITS ALL BY THE ROBOT | |
# v4.2.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 |
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
upstream node_server { | |
server localhost:3000; | |
} | |
server { | |
listen 80; | |
server_name localhost; | |
root /usr/share/nginx/html; |