Skip to content

Instantly share code, notes, and snippets.

View matissime's full-sized avatar
✌️

Matisse AMEN GEORGE matissime

✌️
View GitHub Profile
@circlePulse
circlePulse / x86_64_on_apple_silicon.md
Last active September 8, 2025 09:06
Running x86_64 Assembly on Apple Silicon Machines

Running x86_64 Assembly on Apple Silicon Machines

By Omar Hboubati

Introduction

This is a tutorial for running x86_64 on a Mac with Apple Silicon. These instructions work for me on a MacBook Pro M1 with Visual Studio Code, but there's no guarantee they will work on every machine. What we're doing is converting a .asm file to an x86_64 machine code file on our machine using nasm and x86_64-elf-gcc. Then, we copy that file to a Docker Ubuntu container, where we run the file.

Installations

Docker

@sundowndev
sundowndev / GoogleDorking.md
Last active December 6, 2025 15:11
Google dork cheatsheet

Google dork cheatsheet

Search filters

Filter Description Example
allintext Searches for occurrences of all the keywords given. allintext:"keyword"
intext Searches for the occurrences of keywords all at once or one at a time. intext:"keyword"
inurl Searches for a URL matching one of the keywords. inurl:"keyword"
allinurl Searches for a URL matching all the keywords in the query. allinurl:"keyword"
intitle Searches for occurrences of keywords in title all or one. intitle:"keyword"
@2E0PGS
2E0PGS / linux-usb-file-copy-fix.md
Last active November 23, 2025 19:56
Fix Ubuntu and other Linux slow/hanging file copying via USB.

If your running a x64 bit Ubuntu or other Linux and find USB transfers hang at the end apply this fix:

echo $((16*1024*1024)) > /proc/sys/vm/dirty_background_bytes
echo $((48*1024*1024)) > /proc/sys/vm/dirty_bytes

I suggest you edit your /etc/rc.local file to make this change persistant across reboots.

sudo nano /etc/rc.local