The Ultimate
Snippet Library.

Hundreds of production-ready scripts and coding solutions.
Brought to you by the experts at DigitalCodeLabs.

PHP

Check if Any Array Value Contains a Specific Substring

Discover how to efficiently determine if any string value within a PHP array contains a particular substring, useful for quick data validation, filtering, and search functionalities.

View Snippet →
PHP

Applying Global Query Scopes for Automatic Filtering in Laravel Eloquent

Implement global query scopes in Laravel Eloquent to automatically apply common WHERE clauses, like `is_active`, across all queries for a specific model.

View Snippet →
PHP

Accessing Extra Pivot Table Attributes in Laravel Many-to-Many Relationships

Learn how to define and access additional columns on your pivot tables in Laravel Eloquent's many-to-many relationships, enhancing data management.

View Snippet →
PHP

Customizing Eloquent Attribute Casting for Complex Data Types in Laravel

Implement custom attribute casting in Laravel Eloquent to automatically serialize and deserialize complex data types like custom value objects or encrypted strings.

View Snippet →
PHP

Atomically Finding or Creating/Updating Records with Eloquent `firstOrCreate` and `updateOrCreate`

Efficiently manage database records in Laravel using `firstOrCreate` to find an existing record or create a new one, and `updateOrCreate` to update or create atomically.

View Snippet →
PHP

Transforming Array Values Using `array_map`

Learn to apply a callback function to every element in an array with PHP's `array_map`, efficiently transforming data for various presentation or processing needs.

View Snippet →
PHP

Sorting an Array of Associative Arrays by Key

Master custom sorting of complex arrays in PHP by using `usort` or `uasort` with a callback, allowing you to order data based on any specific key or criteria.

View Snippet →
BASH

Checking Web Service Health Status

A bash script to perform a quick HTTP health check on a given URL, returning its status code to verify service availability and responsiveness.

View Snippet →
BASH

Generating Random Alphanumeric String

Generate a cryptographically strong random alphanumeric string of a specified length, useful for temporary passwords or unique IDs in scripts.

View Snippet →
BASH

Creating and Cleaning Up Temporary Directories

A robust bash script pattern for creating a temporary directory, performing operations within it, and ensuring its automatic cleanup on exit.

View Snippet →
BASH

Timestamped Logging with Simple Log Rotation

Implement basic timestamped logging to a file in bash, including a simple rotation mechanism to keep log file sizes manageable.

View Snippet →
JAVASCRIPT

Client-Side OAuth 2.0 Authorization Code Flow

Implement client-side OAuth 2.0 Authorization Code Grant: redirect for consent, then exchange the authorization code for an access token securely.

View Snippet →