Skip to content

Instantly share code, notes, and snippets.

View ConzZah's full-sized avatar
🎃
i code for the people, you code for money. we are not the same.

ConzZah ConzZah

🎃
i code for the people, you code for money. we are not the same.
  • FUCK CORPOS
  • Void
View GitHub Profile
@roxwize
roxwize / tinycore.md
Last active August 7, 2026 12:53
TinyCore reference guide
@0xdevalias
0xdevalias / reverse-engineering-macos.md
Last active August 18, 2026 15:25
Some notes, tools, and techniques for reverse engineering macOS binaries
@akpoff
akpoff / curl_imap_query_commands.md
Created January 2, 2018 17:29
curl commands to query imap servers

curl commands to query imap servers

Based on https://busylog.net/telnet-imap-commands-note/

curl options

  • -k -- don't verify certificate (optional)
  • -n -- use .netrc for username and password (optional)
  • -X -- request to send to server
@simonw
simonw / wget.md
Created December 9, 2016 06:38
Recursive wget ignoring robots
$ wget -e robots=off -r -np 'http://example.com/folder/'
  • -e robots=off causes it to ignore robots.txt for that domain
  • -r makes it recursive
  • -np = no parents, so it doesn't follow links up to the parent folder
@dylon
dylon / .bash_profile
Last active July 2, 2026 02:29
How to get 256 colors in a standard Linux terminal + screen (without X windows).
# ...
# This is for what I would consider a standard setup, where TTY's 1 -- 6 are
# "linux" terminals and TTY's 7+ are reserved for X windows. You should adjust
# it to your setup, accordingly.
#
# ::: Important ::: You must have both fbterm and screen installed and on your
# path for this to work.
virtual_terminal="$( tty | grep -oE ....$ )"