Skip to content

Instantly share code, notes, and snippets.

View CypherpunkSamurai's full-sized avatar
😶
Currently Busy 🌻🐢

Cypherpunk Samurai CypherpunkSamurai

😶
Currently Busy 🌻🐢
View GitHub Profile
@CypherpunkSamurai
CypherpunkSamurai / bootstrap.sh
Created January 1, 2026 15:59 — forked from KireinaHoro/bootstrap.sh
Bootstrap aarch64-linux-android clang/llvm toolchain with sanitizers support
#!/bin/bash
# script that creates clang/llvm cross toolchain for aarch64 android target
# compile a hello world program that runs on AOSP Android:
# test with: adb push hello /data/cache && adb shell /data/cache/hello
# GCC:
# C: aarch64-linux-android-gcc hello.c -o hello -pie
# C++: aarch64-linux-android-g++ hello.cc -o hello -pie -fPIC -static-libgcc \
# -nostdlib -L/usr/local/aarch64-linux-android/lib -lc++ -lc -nostdinc++ \
# -I/usr/local/aarch64-linux-android/include/c++/v1 -std=c++11
# Clang/LLVM:
@CypherpunkSamurai
CypherpunkSamurai / Windows 8.1 Update 3 - November 2014 Rollup
Created December 29, 2025 15:22 — forked from novemberr41n/Windows 8.1 Update 3 - November 2014 Rollup
Windows 8.1 Update 3, Windows 8.1 DVD ISO, Microsoft
Windows 8.1 Update 3 - November 2014 Rollup
More Info & Download Link: http://www.nsaneforums.com/topic/235775-windows-81-with-update-3-november-2014-rollup-msdn-release/
========================
Languages: English
========================
Windows 8.1 Pro VL with Update (x86) - DVD (English)
ISO English Release Date: 12/15/2014 Details 2916 MB
File Name: en_windows_8.1_pro_vl_with_update_x86_dvd_6050918.iso
Languages: English
SHA1: E46F44CD74F812EC3FE2E854317A088E85322A68
@CypherpunkSamurai
CypherpunkSamurai / per-user-telnet.reg
Created December 15, 2025 17:37 — forked from dbcooper/per-user-telnet.reg
Per-user telnet URL association for Windows
Windows Registry Editor Version 5.00
; Per-user telnet URL mapping
;
; Works w/ Firefox and Chrome under Windows 7
;
; Be sure to replace the path to PuTTY with the correct destination
;
[HKEY_CURRENT_USER\Software\Classes\telnet]
@CypherpunkSamurai
CypherpunkSamurai / main.cpp
Created December 11, 2025 02:31 — forked from zlash/main.cpp
Minimal bgfx + SDL2
#include <SDL2/SDL.h>
#include <SDL2/SDL_syswm.h>
#include <bgfx/bgfx.h>
#include <bgfx/platform.h>
#include <bx/bx.h>
#include <bx/mutex.h>
#include <bx/thread.h>
void threadInit()
{
@CypherpunkSamurai
CypherpunkSamurai / zig-termux-gui.md
Created November 10, 2025 20:25 — forked from lupyuen/zig-termux-gui.md
Install Termux GUI Plugin

Install Termux GUI Plugin

Let's install the Termux GUI Plugin, so we can build Android GUI Apps in C and Python... On Android!

Caution: We're installing Experimental Unsigned APKs, be careful!

Install Termux APK and Termux GUI APK

According to the instructions, we should install Termux APK and Termux GUI APK generated by GitHub Actions...

@CypherpunkSamurai
CypherpunkSamurai / export_to_sheets.py
Created November 7, 2025 08:15 — forked from Dminor7/export_to_sheets.py
Python pandas dataframe to google sheets [Read, Write, and Append]
import gspread_dataframe as gd
import gspread as gs
gc = gs.service_account(filename="credentials.json")
def export_to_sheets(sheet_name,df,mode='r'):
ws = gc.open("Hashnode").worksheet(sheet_name)
if(mode=='w'):
ws.clear()
gd.set_with_dataframe(worksheet=ws,dataframe=df,include_index=False,include_column_header=True,resize=True)
return True
@CypherpunkSamurai
CypherpunkSamurai / hackerman.json
Created October 21, 2025 05:00 — forked from bjarneo/hackerman.json
Hackerman Blueprint for Aether
{
"name": "Hacker",
"timestamp": 1760965387035,
"palette": {
"wallpaper": "",
"colors": [
"#0B0C16",
"#31f759",
"#4fe88f",
"#50f7d4",
@CypherpunkSamurai
CypherpunkSamurai / FeatureTokenGenerator.cs
Created October 12, 2025 21:11 — forked from ADeltaX/FeatureTokenGenerator.cs
Access LimitedAccessFeatures from UWP
//!!!!!!!!!!!!!!
//Thanks to @thebookisclosed for the code. I just rearranged in a way so you can access without having to use the registry
//HINT about compatibility: they CANNOT change feature keys otherwise existing apps would break
using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Cryptography;
using System.Text;
using Windows.ApplicationModel;
@CypherpunkSamurai
CypherpunkSamurai / 00-New setup.md
Created September 19, 2025 16:59 — forked from cderv/00-New setup.md
New computer setup
# installed by winget
winget install PowerShell-Preview
winget install git
git config --global user.name "Christophe Dervieux"
git config --global user.email christophe.dervieux@gmail.com
winget install rstudio
winget install vscode
winget install -e R
winget install Github.GithubDesktop
Always follow the instructions in plan.md. When I say "go", find the next unmarked test in plan.md, implement the test, then implement only enough code to make that test pass.
# ROLE AND EXPERTISE
You are a senior software engineer who follows Kent Beck's Test-Driven Development (TDD) and Tidy First principles. Your purpose is to guide development following these methodologies precisely.
# CORE DEVELOPMENT PRINCIPLES
- Always follow the TDD cycle: Red → Green → Refactor
- Write the simplest failing test first