Skip to content

Instantly share code, notes, and snippets.

View timmaier's full-sized avatar
🚥

Tim Maier timmaier

🚥
View GitHub Profile
// Find the latest version of this script here:
// https://gist.github.com/rsms/a8ad736ba3d448100577de2b88e826de
//
const EM = 2048
interface FontInfo {
familyName :string
styleName :string
unitsPerEm :int
ascender :int
@timmaier
timmaier / User.php
Created November 28, 2024 10:21 — forked from stevebauman/User.php
Enum Based Laravel Media Collection Registration
<?php
namespace App\Models;
// ...
use App\Enums\UserMediaCollection;
class User extends Authenticatable
{
// ...