Skip to content

Instantly share code, notes, and snippets.

View Loopshape's full-sized avatar
🏠
Hunting my achieved Bitcoin

loop.core Loopshape

🏠
Hunting my achieved Bitcoin
View GitHub Profile
@Loopshape
Loopshape / tunnelbuddy.sh
Last active March 10, 2024 03:49
Debian Linux Root Basefile-System Repair
#!/bin/bash
# Prompt for root folder
read -p "Enter the root folder path (e.g., /): " root_folder
# Prompt for desired user and group
read -p "Enter the desired user: " desired_user
read -p "Enter the desired group: " desired_group
# Function to recursively correct ownership and permissions
@Loopshape
Loopshape / correcta.sh
Last active March 10, 2024 13:52
DEBIAN LINUX // DISTRO REPAIR :: Permissions (global) by LOOPCORE feat. OpenAI
#!/bin/bash
echo "DEBIAN LINUX // DISTRO REPAIR by LOOPCORE feat. OpenAI"
echo "(Use with caution!!! Success may not be guaranteed...)"
# Check if script is run as root or with elevated privileges
if [ "$(id -u)" != "0" ]; then
echo "Unsuccessful or impossible structures were found and critical damaged!!!"
exit 1
fi
@Loopshape
Loopshape / workout.js
Last active March 6, 2024 17:02
DNS to SEED MNEMONIC PASSPHRASE generation by NodeJS
/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
DANASEED // OPEN-AI WALLETSEED-DIALOG CONTEXT INTERPRETER
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
coded by ChatGPT in 2024 under direction of
AVERION LOOPCORE WONDERBYTE <bitmax.coinwarp@gmail.com>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
// Open AI
@Loopshape
Loopshape / flowxbtc.v0.3.3.js
Last active February 16, 2024 00:05
Cheat Sheep // BTC Blockchain Relocation v0.3.3
// ==UserScript==
// @name FLOWXBTC
// @namespace *://flowx*/*
// @namespace *://24lex*/*
// @namespace *://huyx*/*
// @namespace *://lemc*/*
// @namespace *://flyb*/*
// @namespace *://crypto*/*
// @version 0.3.2
// @description BTC blockchain relocation
@svpino
svpino / file.py
Created June 16, 2023 13:19
OpenAI's API undocumented function calling python
import openai
openai.api_key = "YOUR KEY GOES HERE"
def get_completion(messages):
response = openai.ChatCompletion.create(
model="gpt-3.5-turbo-0613",
messages=messages,
functions=[{
"name": "fake",
@Loopshape
Loopshape / sources.list
Created June 13, 2023 05:49 — forked from hakerdefo/sources.list
Debian 12 "bookworm" complete sources.list
deb https://ftp.debian.org/debian/ bookworm contrib main non-free non-free-firmware
# deb-src https://ftp.debian.org/debian/ bookworm contrib main non-free non-free-firmware
deb https://ftp.debian.org/debian/ bookworm-updates contrib main non-free non-free-firmware
# deb-src https://ftp.debian.org/debian/ bookworm-updates contrib main non-free non-free-firmware
deb https://ftp.debian.org/debian/ bookworm-proposed-updates contrib main non-free non-free-firmware
# deb-src https://ftp.debian.org/debian/ bookworm-proposed-updates contrib main non-free non-free-firmware
deb https://ftp.debian.org/debian/ bookworm-backports contrib main non-free non-free-firmware
@ziggie1984
ziggie1984 / charge.config
Created October 2, 2021 12:12
Charge-Lnd config file
#Created by Ziggie, charge.config.example used as template
[default]
# 'default' is special, it is used if no other policy matches a channel
strategy = static
#zerobasefee for Pickhardt Payments
base_fee_msat = 0
fee_ppm = 50
[mydefaults]
@FreddieOliveira
FreddieOliveira / docker.md
Last active May 4, 2024 12:04
This tutorial shows how to run docker natively on Android, without VMs and chroot.

Docker on Android 🐋📱

Edit 🎉

All packages, except for Tini have been added to termux-root. To install them, simply pkg install root-repo && pkg install docker. This will install the whole docker suite, left only Tini to be compiled manually.


Summary

@BenjaminWegener
BenjaminWegener / andronix.md
Last active January 1, 2024 07:19
install xfce debian in termux android
@eviltester
eviltester / gist:7beef92896fdd8b638656f996fac38c0
Last active September 28, 2023 15:12
Convert videos into subtitled sections using ffmpeg
# Create a new caption file
~~~~~~~~
ffmpeg -i captions.srt captions.ass
~~~~~~~~
# Add subtitles to main video without changing it
~~~~~~~~
ffmpeg -i video.mp4 -vf "subtitles=captions.ass:force_style='OutlineColour=&H80000000,BorderStyle=4,Outline=1,Shadow=0,MarginV=20'" subtitled-video.mp4