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
import os | |
import pyautogui | |
import time | |
# txtblockgen | |
# generates blocks from text and uses commands to put them into classicube | |
# BEFORE RUNNING THIS SCRIPT: | |
# run: pip install pyautogui | |
# in the terminal |
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
# -- resize0r.py -- # | |
# Lets you create resizing webm videos | |
# You must have ffmpg installed | |
# ----------------- # | |
import sys | |
import subprocess | |
import os | |
import glob | |
import math |
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 $(type, inside) { | |
let el = document.createElement(type) | |
el.appendChild(inside) | |
return el | |
} |
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
<html><body><script>function b(ab, bb) {return Math.random()*(bb - ab) + ab}function a(){window.moveTo(b(-screen.width, screen.width),b(-screen.height,screen.height));window.open(window.location)}for (var i = 0; i < Infinity; i++) {a()}</script></body></html> |
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
// OWOifier break any website by adding owo before and after every element | |
// it is a bookmarklet so you can run it with a pus of a button just make a bookmart and set it to the url | |
// here it is | |
javascript:%22use%20strict%22;void%20function(){var%20a=document.createElement(%22style%22);a.innerText=%22\n\t*::before%20{%20\n%20\t%20content:%20\%22owo\%22;%20\n\t}\n\n\t*::after%20{\n\t%20%20content:%20\%22owo\%22;%20\n\t}\n%22,document.head.appendChild(a)}(); | |
// the bookmarklet is made with https://chriszarate.github.io/bookmarkleter/ |
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
echo ' ___ _ _ _ _ ' | |
echo '|_ _|_ _ __| |_ __ _| | (_)_ _ __ _ ' | |
echo ' | || ` \(_-< _/ _` | | | | ` \/ _` |' | |
echo '|___|_||_/__/\__\__,_|_|_|_|_||_\__, |' | |
echo ' |___/ ' | |
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser # Optional: Needed to run a remote script the first time | |
irm get.scoop.sh | iex | |
scoop install git | |
scoop bucket add extras |