Working with IPTC Metadata in PHP: A Complete Guide

Working with IPTC Metadata in PHP: A Complete Guide

PHP's IPTC functions let you read/write image metadata. Use iptcparse() to extract data like captions, keywords & copyright from JPEGs via getimagesize(). Use iptcembed() to add metadata. Great for photo galleries & CMS systems.

Read more
The State of Serverless: Choosing the Right Storage Solution

The State of Serverless: Choosing the Right Storage Solution

Serverless computing promises to free us from infrastructure management, but there's a catch: your functions are stateless. Every time a function executes, it starts with a clean slate. No memory of previous requests, no local files, no persistent connections. This is both a blessing and a curse.

Read more
How to create a shared Prettier configuration

How to create a shared Prettier configuration

Keeping configs for styling and linting tools consistent across multiple projects can be challenging. Many tools support shared configs, which are created once and used everywhere. This article will discover how to create a shared configuration for prettier.

Read more
Automatic Package Releases using Semantic-Release

Automatic Package Releases using Semantic-Release

Writing the release notes and Changelog manually is a time-consuming and complicated task. And then you need to push your new release to your desired Package-registry like NPM or Packagist. Fortunately, there is a better way to do this. Join me in discovering an alternative.

Read more