Skip to content

Instantly share code, notes, and snippets.

View DarkGhostHunter's full-sized avatar
👨‍💻
Hands full

Italo DarkGhostHunter

👨‍💻
Hands full
View GitHub Profile
@DarkGhostHunter
DarkGhostHunter / log-levels.csv
Last active March 12, 2022 04:38
Log levels table
Property / Log Level Debug Info Notice Warning Error Critical Alert Emergency
Disposable X
Statistical X X X X X X X
Relevant X X X X X X
Undersired X X X X X
Unstable X X X X
Stateful X X X
Unsecure X X
Unfixable X
@DarkGhostHunter
DarkGhostHunter / NormalizesMiddlewareParameter.php
Last active November 15, 2021 04:38
Normalizes a parameter from Laravel's middleware declaration.
<?php
namespace YOURNAMESPACE;
use function is_numeric;
use function strtolower;
trait NormalizesMiddlewareParameter
{
/**
@DarkGhostHunter
DarkGhostHunter / ExampleTest.php
Last active October 22, 2021 18:48
Creates the application 1,000 times
<?php
namespace Tests\Feature;
use Tests\TestCase;
class ExampleTest extends TestCase
{
public function test_leaks_memory_on_1000_iterations()
{
@DarkGhostHunter
DarkGhostHunter / ClearProperties.php
Created October 21, 2021 04:16
Removes any user property for garbage collection at the end of each test case
<?php
namespace Tests;
trait ClearProperties
{
/**
* Unset each property declared in this test class and its traits.
*
* @return void
<?php
namespace App\Helpers;
use DateInterval;
use DateTimeInterface;
use Illuminate\Contracts\Cache\Factory;
use Illuminate\Contracts\Cache\LockProvider;
use Illuminate\Contracts\Cache\Repository;
use RuntimeException;
@DarkGhostHunter
DarkGhostHunter / PublishesMigrations.php
Last active August 8, 2022 16:01
Publish migrations as assets instead of loading them.
<?php
namespace Vendor\Package;
use Generator;
use Illuminate\Support\Str;
trait PublishesMigrations
{
/**
@DarkGhostHunter
DarkGhostHunter / RegeneratesCache.php
Last active January 8, 2022 20:40
RegeneratesCache class
<?php
namespace App;
use Illuminate\Support\Carbon;
use Illuminate\Support\Facades\Cache;
use DateTimeInterface;
class RegeneratesCache
{
@DarkGhostHunter
DarkGhostHunter / ExampleService.php
Created April 10, 2021 06:15
Don't fuck up your Laravel Octane app
<?php
namespace App\Services;
use App\Helpers\ProtectsBoot;
use Illuminate\Contracts\Foundation\Application;
class ExampleService
{
use ProtectsBoots;
@DarkGhostHunter
DarkGhostHunter / main.go
Created October 27, 2020 04:46
Pinging sites using goroutines
package main
import (
"fmt"
"os/exec"
"strings"
"sync"
)
func isSiteDown(site string, group *sync.WaitGroup) {
@DarkGhostHunter
DarkGhostHunter / main.go
Created October 27, 2020 03:09
Simple iterator system
package main
import "fmt"
type KeyChain struct {
labels []string
keys []string
lock []string
}