Skip to content

Instantly share code, notes, and snippets.

View M-Porter's full-sized avatar

Matt Porter M-Porter

View GitHub Profile
@M-Porter
M-Porter / TimeZoneSelect.php
Last active December 8, 2021 07:24
Laravel 8 Time Zone Select Component
<?php
namespace App\View\Components;
use DateTimeZone;
use Illuminate\View\Component;
class TimeZoneSelect extends Component
{
public string $nameId;
@M-Porter
M-Porter / split.go
Last active March 1, 2024 22:48
Like split, but slower!
package main
import (
"bufio"
"bytes"
"flag"
"fmt"
"io"
"os"
"path/filepath"