يصبح حل المشكلات problem-solving عقبة نفسية وعملية بالنسبة لنا إذا وضعناها كهدف وليس كوسيلة لتطوير أنفسنا كمبرمجين لإيجاد أفضل الحلول للوضع الذي نواجهه.
@adamdotenv@AnthropicAI How can you submit the request? Is it necessary to already have a live open source project, or currently contributing to one? Thanks.
I was actually questioning what happens when I execute a PHP script or when an http request reaches Apache or Nginx.
So I went deep into this; the web server receives the hhtp request first. If the request is for a .php file, it forwards it to PHP-FPM (FastCGI Process Manager),
- It can serve multiple applications (multi-tenant setups) using separate pools, each with its own PHP version (if you're in such cases), user, memory limits, and configuration.
- It provides better performance and resource management than older PHP execution ways.
Instead of trying to improve everything at once, i try to picking a single area i wasn't good at. I researched it, practiced it, built things with it, and kept using it until it became part of my daily toolkit instead of something i avoided.
#softwareengineering#programming