Skip to content

Instantly share code, notes, and snippets.

View Bizarrus's full-sized avatar
😍
fruithost!

Adrian Preuß Bizarrus

😍
fruithost!
View GitHub Profile
@Bizarrus
Bizarrus / 1. Inhalt.md
Last active June 14, 2025 12:19
Knuddels - Clienten zurücksetzen

Knuddels resetten

Hier wird aufgezeigt, wie man die Clienten von Knuddels so behandelt, dass man nicht mehr erkannt wird.

Zum Beispiel, bei einer Sperre oder beim Faken. Selbst wenn man eine IP Sperre hat!

Keywords: Knuddels, sperre umgehen, ip ändern, faken auf Knuddels, fakes

Warning

Denk daran, dass du nach jeder Sperre oder jedem Nickwechsel (wenn du fakest) die Schritte erneut durchführst!

@tonejito
tonejito / httpd-debug.sh
Created March 5, 2014 06:51
Run apache in DEBUG mode with logging to stdout and optional trace of opened files
#!/bin/bash -vx
# httpd-debug.sh
# Run apache in DEBUG mode with logging to stdout and trace of opened files
# Andres Hernandez - tonejito -
STRACE=`which strace`
APACHE_DEBUG="/usr/sbin/apache2 -X -e debug"
@krakjoe
krakjoe / pthreads.md
Last active September 24, 2024 14:50
pthreads.md

Multi-Threading in PHP with pthreads

A Brief Introduction to Multi-Threading in PHP

  • Foreword
  • Execution
  • Sharing
  • Synchronization
  • Pitfalls