Skip to content

Instantly share code, notes, and snippets.

View rolltidehero's full-sized avatar
☠️
chemo & radiation treatments again... I hate cancer :(

Heath B rolltidehero

☠️
chemo & radiation treatments again... I hate cancer :(
View GitHub Profile
@rolltidehero
rolltidehero / heath-chatgpt.md
Last active February 8, 2023 03:21
Heath vs. ChatGPT - Biblical

HEATH

Some people think that ChatGPT could potentially fulfill the "Image of the Beast" prophecy in Revelation 13. Write an article that explains why that is false.

ASSISTANT

The idea that ChatGPT or any form of artificial intelligence could fulfill the "Image of the Beast" prophecy in Revelation 13 is a common misconception, but it is important to understand that the prophecy has a different meaning in the context of its original time and culture.

The Book of Revelation was written during a time of great persecution and upheaval for the early Christian communities. The author, John of Patmos, used powerful imagery and symbols to communicate messages of hope, encouragement, and warning to these communities. The "Image of the Beast" was one such symbol, representing the oppressive and idolatrous Roman Empire and its false gods.

Therefore, it is not a technology or machine, but rather a representation of human power and oppression. The prophecy serves as a warning to resist the lure of worldly power an

@rolltidehero
rolltidehero / hide-porkbun-handshake-tlds.js
Created January 9, 2023 01:42 — forked from MrDOS/hide-porkbun-handshake-tlds.js
Userscript to hide Handshake TLDs from Pornbun's all-extensions page.
// ==UserScript==
// @name Hide Porkbun Handshake TLDs
// @description Hide Handshake TLDs from Pornbun's all-extensions page.
// @namespace http://seenet.ca/
// @version 1.0
// @match https://porkbun.com/products/domains
// @icon https://www.google.com/s2/favicons?sz=64&domain=porkbun.com
// @grant none
// ==/UserScript==
@rolltidehero
rolltidehero / docker-compose-oneliner.txt
Last active January 8, 2025 08:33 — forked from TheTinkerDad/docker-compose-oneliner.txt
docker-compose-oneliner.txt
curl -L "https://github.com/docker/compose/releases/download/v2.12.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/bin/docker-compose
@rolltidehero
rolltidehero / install_duplicati_centos8.sh
Created July 6, 2022 07:35 — forked from SamSirry/install_duplicati_centos8.sh
Installing Duplicati 2.6 on CentOS 8
# Start this script while logged in as root.
# Preparations:
# Update manually with yum if it's a new OS installation.
# yum update -y && reboot
yum install wget curl -y
mkdir /downloads
cd /downloads
https://education.github.com/pack/redeem/appfigures-student
https://education.github.com/pack/redeem/arduino-student
https://education.github.com/pack/redeem/astra-student
https://education.github.com/pack/redeem/atom-student
https://education.github.com/pack/redeem/baremetrics-student
https://education.github.com/pack/redeem/bettercodehub-student
https://education.github.com/pack/redeem/blackfire-student
https://education.github.com/pack/redeem/blockchair-student
https://education.github.com/pack/redeem/bootstrapstudio-student
https://education.github.com/pack/redeem/browserstack-student
@rolltidehero
rolltidehero / SEE.COMMENTS
Last active June 19, 2022 07:30
All GitHub Student Dev Pack Redemption Links... See Comments!
COMMENTS
#!/bin/bash
# Clone the repo you care about
echo "Enter original git repository url"
read -p '(From GitHub and looks like "https://github.com/some-user/repo-name.git"): ' upstreamVar
echo Ready to clone in this here directory? `pwd`
read -p '(CTRL+C) if you want to quit, otherwise just press "ENTER"'
echo
# Clone the repo
@rolltidehero
rolltidehero / Ricky.domains.txt
Created May 7, 2022 00:27
Ricky.domains.txt
Domain
amazons.deals
amazons.digital
amazons.quest
amazons.rest
amazons.store
amazons.toys
amazons.uno
canyon.codes
codecanyon.biz
@rolltidehero
rolltidehero / domdetailer.php
Created May 6, 2022 21:30 — forked from shanecp/domdetailer.php
DomDetailer PHP Code
<?php
$results = [];
if (!empty($_POST['domains'])) {
$apiKey = 'INSERT_API_KEY';
$domains = explode("\n", $_POST['domains']);
foreach ($domains as $domain) {
@rolltidehero
rolltidehero / waybackurls.py
Created April 27, 2022 23:14 — forked from mhmdiaa/waybackurls.py
waybackurls.py
import requests
import sys
import json
def waybackurls(host, with_subs):
if with_subs:
url = 'http://web.archive.org/cdx/search/cdx?url=*.%s/*&output=json&fl=original&collapse=urlkey' % host
else:
url = 'http://web.archive.org/cdx/search/cdx?url=%s/*&output=json&fl=original&collapse=urlkey' % host