Skip to content

Instantly share code, notes, and snippets.

View stevebauman's full-sized avatar

Steve Bauman stevebauman

View GitHub Profile
@stevebauman
stevebauman / example.diff
Last active April 2, 2025 07:43
Sort JS Imports by length using ESLint Rule (asc)
-import axios from 'axios';
-import fs from 'fs';
-import path from 'path';
-import a from 'a';
-import somethingElse from '../somethingElse';
+import a from 'a';
+import fs from 'fs';
+import path from 'path';
+import axios from 'axios';
+import somethingElse from '../somethingElse';
@stevebauman
stevebauman / SafeLinksReplacer.php
Created October 12, 2024 15:47
Outlook Safe Links URL Replacer in Laravel (replace safe link URLs with their true value)
<?php
namespace App\Support;
use DOMXPath;
use DOMDocument;
class SafeLinksReplacer
{
public static function replace(string $html): string
@stevebauman
stevebauman / 2024_00_00_000000_migrate_enum_columns_to_string.php
Created September 11, 2024 12:25
Migrate all your DB enum columns tostrings
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\SQLiteConnection;
use Illuminate\Support\Facades\Schema;
use Illuminate\Support\Facades\DB;
return new class extends Migration
{
{
"version": "1.24.4",
"modified": true,
"page": {
"editors": [
{
"id": "4cd30d03-dc95-4a19-807e-7ca9551f28cb",
"added": [],
"removed": [],
"focused": [],
@stevebauman
stevebauman / User.php
Created May 28, 2024 17:07
Enum Based Laravel Media Collection Registration
<?php
namespace App\Models;
// ...
use App\Enums\UserMediaCollection;
class User extends Authenticatable
{
// ...
@stevebauman
stevebauman / RouteServiceProvider.php
Last active May 14, 2024 02:19
Throw exception on Eloquent model binding name mismatch
<?php
namespaced App\Providers;
use RuntimeException;
use Illuminate\Support\Facades\Route;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Routing\ImplicitRouteBinding;
class RouteServiceProvider extends ServiceProvider
@stevebauman
stevebauman / Utility.php
Created January 19, 2024 21:52
All Tailwind Utilities in PHP with their matching regex patterns
<?php
namespace App;
class Utility
{
/**
* The registered utilities.
*/
protected static array $utilities = [];
@stevebauman
stevebauman / FilesystemMockProvider.php
Created February 17, 2023 17:19
Filesystem Cloud Mocking
<?php
namespace App\Providers;
class FilesystemMockProvider extends ServiceProvider
{
public function boot()
{
if (App::isProduction()) {
return;
@stevebauman
stevebauman / Mutable.php
Created February 16, 2023 14:50
Mutable Observers
<?php
namespace App\Observers;
trait Mutable
{
public static function mute(string|array $events = null)
{
if (is_null($events)) {
$events = ['*'];
@stevebauman
stevebauman / timezones.php
Created May 19, 2022 13:56
Human Friendly Timezone List Generator PHP
$timezones = array_map(function ($timezone) {
$date = new DateTime('now', $tz = new DateTimeZone($timezone));
return [
'timezone' => $timezone,
// Format: "(GMT -05:00) America/Toronto"
'label' => "({$date->format('\G\M\T P')}) {$tz->getName()}",
];
}, DateTimeZone::listIdentifiers());