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 / nemodian.js
Last active March 26, 2024 15:39
NEMODIAN v2.2
// ==UserScript==
// @name Nemodian v2.3
// @namespace http://loopcore/?nemodian=true&api=v23
// @version v2.3
// @description <bitmax.coinwarp@gmail.com>
// @author You
// @match *://*/*
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant none
// ==/UserScript==
@Loopshape
Loopshape / polywrapper.js
Created March 26, 2024 15:25
Build a Javascript wrapper for JavaScript to React and from React to NextJS and from VueJS to NuxtJS and from Svelte to Sapper and from Ruby to Ruby on Rails and from PHP to Laravel and from Python to Django and from CSS to Tailwind CSS and build a onefiler NodeJS loader for that.
// Import necessary libraries
const React = require('react');
const ReactDOM = require('react-dom');
const Next = require('next');
const Nuxt = require('nuxt');
const Sapper = require('sapper');
const express = require('express');
const Rails = require('rails');
const Laravel = require('laravel');
const Django = require('django');
@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 / 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 / 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
@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
@Loopshape
Loopshape / termux-url-opener
Created February 22, 2023 17:53 — forked from smallneo/termux-url-opener
termux-url-opener
#!/data/data/com.termux/files/usr/bin/zsh
#
# This is a termux-url-opener script to do diffrent tasks on my Android phone
#
#
#
# How to use this script
#############################
# Create the bin directory
# ➜ ~ mkdir bin
@Loopshape
Loopshape / docker.md
Created February 22, 2023 17:53 — forked from FreddieOliveira/docker.md
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

@Loopshape
Loopshape / miui-instagram-video-encoding-fix.md
Created November 26, 2018 08:31
Splitting, cropping and converting video for Instagram

Short description

Just a short reminder to self, when i'll be struggling with uploading video to Instagram. For some reason my MIUI v5 port has troubles with recording proper video to be successfully uploaded to Instagram.

First of all: encoding should be mpeg4, not h264!, regardless of file extension (but should probably be mp4).

All the options passed to ffmpeg are order dependant: first options executed first, last will override previous. Thus, input file is defined early, output file is defined at the very end.

All filters can be setup per stream (a for audio and v for video) and should be defined as -filter (for both),