Learn how to log to console within PHP, and why logging in PHP can be a good thing.
Laravel Logging Tutorial
Regardless of what language and framework you use, proper logging is crucial to web development.
How to Use Python Profilers: Learn the Basics
Serious software development calls for performance optimization. When you start optimizing application performance, you can’t escape looking at profilers. Whether monitoring production servers or tracking frequency and duration of method calls, profilers run the gamut. In this article, I’ll cover the basics of using a Python profiler, breaking down the key concepts, and introducing the various libraries and tools for …
PHP Profiling: How to Find Slow Code
I use performance monitoring tools primarily to find slow and buggy code. At the start of development, I typically use the tools more for finding software bugs. Once the codebase is at a relatively stable phase, then I shift my focus toward finding less performant code. Which is why I turn to tools like Retrace to help with profiling for …