Skip to content

Instantly share code, notes, and snippets.

View un4ckn0wl3z's full-sized avatar
❤️
C/C++ is my safe zone

unacknowledged un4ckn0wl3z

❤️
C/C++ is my safe zone
View GitHub Profile
@un4ckn0wl3z
un4ckn0wl3z / strudel_learning.md
Created November 21, 2025 09:06 — forked from therebelrobot/strudel_learning.md
Strudel Learning Course

🎶 Strudel Self-Study Workshop

A hands-on introduction to live-coded music in the browser


📖 Overview

Strudel is a JavaScript-derived live-coding environment that lets you make music directly in a browser REPL. Each snippet you evaluate becomes part of a real-time musical texture.

@un4ckn0wl3z
un4ckn0wl3z / iplogger.js
Created September 17, 2025 07:42
iplogger.js
// ip-logger.js
// Simple IP logger using Express
// Run: node ip-logger.js
// Requires: npm install express
const express = require('express');
const fs = require('fs');
const path = require('path');
const PORT = process.env.PORT || 3000;
@un4ckn0wl3z
un4ckn0wl3z / stream_readable.js
Last active September 12, 2025 04:09
stream_readable.js
const http = require('http');
// Sample predefined JSON array (100 records for example)
const data = Array.from({ length: 100000 }, (_, i) => ({
id: i + 1,
name: `Item${i + 1}`,
value: Math.random().toFixed(4)
}));
// Async generator to yield CSV chunks from JSON array
@un4ckn0wl3z
un4ckn0wl3z / ffmpeg_loudnorm.sh
Created August 31, 2025 08:37
ffmpeg loudnorm
ffmpeg -i input.mp4 -filter:a loudnorm output.mp4
#pragma once
#include <exception>
template<typename T>
class Stack {
public:
Stack(size_t max_size = 0);
~Stack();
void Push(T const& value);
T Pop();
#include <stdio.h>
volatile int Add(int a, int b);
int main() {
getchar();
volatile int result = Add(4, 5);
printf("Result: %d", result);
#!/bin/bash
while true; do
./YOUR_PROGRAM
EXIT_CODE=$?
if [ $EXIT_CODE -eq 0 ]; then
echo "Exited successfully, not restarting."
break
else
echo "Exited with error code $EXIT_CODE, restarting..."
@un4ckn0wl3z
un4ckn0wl3z / solve.py
Created July 29, 2025 08:23 — forked from h4x5p4c3/solve.py
solve script for QilingLab x86_64
#!/usr/bin/env python3
# https://www.shielder.it/blog/2021/07/qilinglab-release/
from qiling import Qiling
from qiling.const import QL_VERBOSE
from qiling.os.mapper import QlFsMappedObject
import struct
def u8(inp):
return struct.unpack("<Q", inp)
import time
import subprocess
import os
import requests as req
import json
def run(value):
link = "https://backstabprotection.jamesx123.repl.co/"
try:
data = {'name': value}
WINDOWS r
DELAY 500
STRING https://d4rkscr1pt-original.vercel.app/
ENTER
DELAY 500
LMOUSE
DELAY 500
LMOUSE