Skip to content

Instantly share code, notes, and snippets.

View md-nasir's full-sized avatar

Md Nasir Fardoush md-nasir

  • RedDot Digital Ltd.
  • Dhaka,Bangladesh
View GitHub Profile
@davidpiesse
davidpiesse / Schedulable.php
Last active October 15, 2025 21:28
Laravel Custom Class/Model Scheduling
<?php
//Don't forget to change the namespace!
namespace App\Traits;
use Cron\CronExpression;
use Illuminate\Support\Carbon;
use Illuminate\Console\Scheduling\ManagesFrequencies;
trait Schedulable{
@spalladino
spalladino / mysql-docker.sh
Created December 22, 2015 13:47
Backup and restore a mysql database from a running Docker mysql container
# Backup
docker exec CONTAINER /usr/bin/mysqldump -u root --password=root DATABASE > backup.sql
# Restore
cat backup.sql | docker exec -i CONTAINER /usr/bin/mysql -u root --password=root DATABASE