Skip to content

Instantly share code, notes, and snippets.

View Bizarrus's full-sized avatar
😍
fruithost!

Adrian Preuß Bizarrus

😍
fruithost!
View GitHub Profile
@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 August 30, 2023 18:30
pthreads.md

Multi-Threading in PHP with pthreads

A Brief Introduction to Multi-Threading in PHP

  • Foreword
  • Execution
  • Sharing
  • Synchronization
  • Pitfalls