Skip to content

Instantly share code, notes, and snippets.

View noxidsoft's full-sized avatar
🪂
Moved private code 2025

Nole noxidsoft

🪂
Moved private code 2025
View GitHub Profile
@noxidsoft
noxidsoft / PHP-SAAS.md
Last active January 13, 2025 23:45
Web Application Security Configuration Guide
@noxidsoft
noxidsoft / WEB-SEC-NGINX.md
Last active January 13, 2025 23:50
Web Application Security Configuration Guide (Nginx)
@noxidsoft
noxidsoft / php-recursion-alternative-guide.md
Last active February 17, 2025 03:32
PHP Recursion Alternatives Guide

PHP Recursion Alternatives Guide

This guide demonstrates how to convert common recursive patterns into iterative solutions in PHP, with a focus on functional programming principles and code safety.

Directory Scanner

Converting a recursive directory scanner to an iterative approach using a queue:

php