Skip to content

Instantly share code, notes, and snippets.

View CardealRusso's full-sized avatar
🎯
Focusing

Cardeal Russo CardealRusso

🎯
Focusing
View GitHub Profile
@CardealRusso
CardealRusso / _threaded-reply-to-empty-udp.py
Last active November 21, 2024 14:33 — forked from Manouchehri/reply-to-empty-udp.py
Simple Micropython UDP echo server
import socket, _thread
sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
server_address = '0.0.0.0'
server_port = 31337
sock_addr = socket.getaddrinfo(server_address, server_port)[0][-1]
sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
sock.bind(sock_addr)
@CardealRusso
CardealRusso / swss.py
Last active July 23, 2024 18:41
simple micropython safe (wss) multithreaded websocket server
import binascii, socket, ssl, _thread, hashlib
certkey = binascii.unhexlify(b"3082013b020100024100cc20643fd3d9c21a0acba4f48f61aadd675f52175a9dcf07fbef610a6a6ba14abb891745cd18a1d4c056580d8ff1a639460f867013c8391cdc9f2e573b0f872d0203010001024100bb17a54aeb3dd7ae4edec05e775ca9632cf02d29c2a089b563b0d05cdf95aeca507de674553f28b4eadaca82d5549a86058f9996b07768686a5b02cb240dd9f1022100f4a63f5549e817547dca97b5c658038e8593cb78c5aba3c4642cc4cd031d868f022100d598d870ffe4a34df8de57047a50b97b71f4d23e323f527837c9edae88c7948302210098560c89a70385c36eb07fd7083235c4c1184e525d838aedf7128958bedfdbb1022051c0dab7057a8176ca966f3feb81123d4974a733df0f958525f547dfd1c271f90220446c2cafad455a671a8cf398e642e1be3b18a3d3aec2e67a9478f83c964c4f1f")
cert = binascii.unhexlify(b"308201d53082017f020203e8300d06092a864886f70d01010505003075310b30090603550406130258583114301206035504080c0b54686550726f76696e63653110300e06035504070c075468654369747931133011060355040a0c0a436f6d70616e7958595a31133011060355040b0c0a436f6d70616e7958595a3114301206035504030c0b546865
@CardealRusso
CardealRusso / unws.py
Last active July 16, 2024 14:18
simple micropython unsafe (ws) multithreaded websocket server
import binascii, socket, _thread, hashlib
class WebSocketServer:
def __init__(self, host='0.0.0.0', port=8443, on_connect=None, on_disconnect=None, on_message=None):
self.host = host
self.port = port
self.clients = []
self.on_connect = on_connect
self.on_disconnect = on_disconnect
self.on_message = on_message
@CardealRusso
CardealRusso / fakepng.sh
Created November 29, 2023 16:24
Create a png with a false thumbnail
#!/bin/sh
# Create a png with a false thumbnail;
# looks different when you view it full res.
high="$1" # High image (full-size original view)
low="$2" # Low image (thumbnail) (should be the same size)
output="output.png"
[ ! -z "$3" ] && output="$3" # Output image
@CardealRusso
CardealRusso / 4chandl.sh
Created September 28, 2023 21:54
simple 4chan webm downloader
url_parts=$(echo "$1" | sed 's/.*\/\([^/]*\)\/thread\/\([0-9]*\)\/.*/\1 \2/')
board=$(echo "$url_parts" | cut -d ' ' -f 1)
thread=$(echo "$url_parts" | cut -d ' ' -f 2)
curl -s "https://a.4cdn.org/$board/thread/$thread.json" | jq -r '.posts[] | select(.ext==".webm") | "https://is2.4chan.org/'"$board"'/\(.tim).webm"' | xargs -n 1 -P 5 curl -O
@CardealRusso
CardealRusso / tk2dl.sh
Last active September 20, 2023 15:24
tk2dl mass downloader/watcher
clear
printf "\e]2;TK2DL Farmer\a"
[ ! -d "tk2dl_farm" ] && mkdir "tk2dl_farm"
while :; do
values=$(curl -s https://tk2dl.com/t/recent.html | grep -o 'value="[^"]*"' | cut -d'"' -f2)
for x in $values; do
if ls -1 tk2dl_farm/*.mp4 | awk '{ print $2 }' | grep $x >/dev/null; then continue; fi
du -ah tk2dl_farm | awk 'END {printf "%d - %s\r", NR-1, $1}'
response=$(curl -s -X POST -d "x=$x" -H "Referer: https://tk2dl.com/t/recent.html" https://tk2dl.com/t/playtw.html)
@CardealRusso
CardealRusso / patchelf_bulk.sh
Last active August 22, 2023 10:40
recursive patchelf
find . -type f -exec sh -c 'ldd "$1" | grep -q "/lib64/" && echo "$1 atualizado" && patchelf --set-interpreter /lib/ld-linux-x86-64.so.2 "$1"' sh {} \; 2>/dev/null
@CardealRusso
CardealRusso / basic_anim.c
Last active September 21, 2024 03:31 — forked from AlecsFerra/animated_wallpaper.c
basic animated wallpapers in Xorg https://youtu.be/guchbe-gKis?t=257
#include <stdio.h>
#include <stdlib.h>
#include <dirent.h>
#include <X11/Xlib.h>
#include <Imlib2.h>
#include <unistd.h>
int main(int argc, char *argv[]) {
if (argc < 4 || argc > 5) {
fprintf(stderr, "Usage: %s <image_folder> <frame_delay> <screen_number> [1 for infinite loop, optional]\n", argv[0]);
@CardealRusso
CardealRusso / FindAdDup.js
Last active February 24, 2023 12:01
Find adjacent duplicates in js (for basic flood protection)
const test = "imbecile kkk imbecile kkk imebicle kkk";
const results = {};
for (let i = 0; i < test.length; i++) {
for (let j = i + 1; j <= test.length; j++) {
const sequence = test.slice(i, j);
if (sequence === test.slice(j, j + sequence.length)) {
if (sequence in results) {
results[sequence]++;
} else {
results[sequence] = 1;