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 / 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)
@un4ckn0wl3z
un4ckn0wl3z / docker-compose.mongo.yml
Created August 19, 2024 02:23 — forked from gterdem/docker-compose.mongo.yml
Docker compose for mongodb and mongo express
version: "3.8"
services:
mongodb:
image: mongo
container_name: mongodb
environment:
- MONGO_INITDB_ROOT_USERNAME=root
- MONGO_INITDB_ROOT_PASSWORD=pass12345
volumes:
- mongodb_data:/data/db
@un4ckn0wl3z
un4ckn0wl3z / dark-style.css
Created November 13, 2023 05:01 — forked from Advik-B/dark-style.css
Modern Qt StyleSheet for dark theme lovers
/*-----QWidget-----*/
QWidget
{
background-color: #121212;
color: #ffffff;
border-color: #051a39;
}
@un4ckn0wl3z
un4ckn0wl3z / how-to-run.md
Created October 11, 2023 09:04 — forked from bluenex/how-to-run.md
Guide to run script on terminal in the background with log.

Running in the background

This command can be applied to anything run on cli, for example bash script and python script.

Two ways to do

There are two ways to run process in the background, nohup and & (ampersand).

Steps

@un4ckn0wl3z
un4ckn0wl3z / tor2web-list.md
Created September 8, 2023 07:59 — forked from adulau/tor2web-list.md
Tor2web and tor proxies public list

Tor2web and tor proxies public list

List of services which are giving access to Tor network and especially Tor hidden services via web interface. We keep track of potential injection or abuse from such service (the column Scam).

List

Url Status Domain Log Techno Scam
https://onion.re/ UP onion.re full custom no
@un4ckn0wl3z
un4ckn0wl3z / client.conf
Created August 31, 2023 17:09 — forked from steos/client.conf
openvpn config with lan gaming support
client
# specify server ip address here
remote <SERVER-IP>
dev tap
# name of the windows network connection
dev-node openVPN

Updating nested array inside array mongodb

For example: We have a document like this one;

clubs:{
cid: 1,
cname: "Fenerbahce",
cplayers: [{

pid: 1,

@un4ckn0wl3z
un4ckn0wl3z / gist:07b7405e2a0c43df1e7983c96ad60a92
Created June 12, 2023 07:07 — forked from binura-g/single-line-cert.sh
Convert Certificates ( .pem, / .crt / etc ) into single-line strings for JSON payloads
awk 'NF {sub(/\r/, ""); printf "%s\\n",$0;}' cert-name.pem