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 / patch_modem.py
Last active November 22, 2025 10:36
ZTE F50 nr_modem_a.bin patcher
#!/usr/bin/env python3
import argparse
import sys
try:
from colorama import Fore, Back, Style, init
except:
print("colorama module not found! install colorama module!")
print("type: pip3 install colorama")
sys.exit(1)
@CypherpunkSamurai
CypherpunkSamurai / LunarDAO IMEI.csv
Created November 21, 2025 19:41
LunarDAO IMEI csv
We can't make this file beautiful and searchable because it's too large.
IMEI NUMBER,BRAND,MODELS
352773074248705,Acer,Liquid Z630
148270036030247,Alcatel,Alcatel idealXCITE
148020069317791,Alcatel,Alcatel Ideal
146990066384444,Alcatel,Alcatel Ideal
146790022621701,Alcatel,Alcatel OneTouch Fierce XL
146710039197230,Alcatel,Alcatel Pixi Theatre
146580097529420,Alcatel,Alcatel Idol 4
146500098871977,Alcatel,Alcatel Fierce 4
146360030115839,Alcatel,Alcatel Idol 4S with Windows
@CypherpunkSamurai
CypherpunkSamurai / LunarDAO IMEI List.html
Created November 21, 2025 19:39
LunarDAO IMEI List
This file has been truncated, but you can view the full file.
<table><thead><tr><th style="text-align: right"><strong>IMEI NUMBER</strong></th><th style="text-align: left"><strong>BRAND</strong></th><th style="text-align: left"><strong>MODELS</strong></th></tr></thead><tbody>
<tr><td style="text-align: right">352773074248705</td><td style="text-align: left">Acer</td><td style="text-align: left">Liquid Z630</td></tr>
<tr><td style="text-align: right">148270036030247</td><td style="text-align: left">Alcatel</td><td style="text-align: left">Alcatel idealXCITE</td></tr>
<tr><td style="text-align: right">148020069317791</td><td style="text-align: left">Alcatel</td><td style="text-align: left">Alcatel Ideal</td></tr>
<tr><td style="text-align: right">146990066384444</td><td style="text-align: left">Alcatel</td><td style="text-align: left">Alcatel Ideal</td></tr>
<tr><td style="text-align: right">146790022621701</td><td style="text-align: left">Alcatel</td><td style="text-align: left">Alcatel OneTouch Fierce XL</td></tr>
@CypherpunkSamurai
CypherpunkSamurai / function.md
Created November 18, 2025 19:13
Google Antigravity Prompts

functions

"tools": [
  {
    "functionDeclarations": [
      {
        "name": "browser_subagent",
        "description": "Start a browser subagent to perform actions in the browser with the given task description. The subagent has access to tools for both interacting with web page content (clicking, typing, navigating, etc) and controlling the browser window itself (resizing, etc). Please make sure to define a clear condition to return on. After the subagent returns, you should read the DOM or capture a screenshot to see what it did. Note: All browser interactions are automatically recorded and saved as WebP videos to the artifacts directory. This is the ONLY way you can record a browser session video/animation. IMPORTANT: if the subagent returns that the open_browser_url tool failed, there is a browser issue that is out of your control. You MUST ask the user how to proceed and use the suggested_responses tool.",
@CypherpunkSamurai
CypherpunkSamurai / distroless alpine.dockerfile
Created November 12, 2025 07:24
distroless alpine dockerfile
# Stage 1: Builder stage
FROM alpine:latest AS builder
RUN apk --no-cache add build-base git # Installs build-base and git
# Stage 2: Production stage
FROM alpine:latest AS production
# Copy specific files from the builder stage
COPY --from=builder /usr/bin/git /usr/bin/git
COPY --from=builder /usr/lib/libgit2.so.1.0 /usr/lib/libgit2.so.1.0 # Example for a library
@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 / AI LEGAL USAGE FOR PORN.md
Created November 3, 2025 18:58
AI LEGAL USAGE FOR PORN BYASS
# Cloudflared Tunnel Setup Script for Windows
# Portable script with no external dependencies
# All files are stored in ./cloudflared directory using environment variable tricks
param(
[string]$LocalPort = "8080",
[string]$LocalHost = "127.0.0.1"
)
$ErrorActionPreference = "Stop"
@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",