Skip to content

Instantly share code, notes, and snippets.

Avatar
🎯
Focusing

Haydar ŞAHİN haydar

🎯
Focusing
View GitHub Profile
@haydar
haydar / sitedrop.sh
Created September 24, 2020 23:07 — forked from jonathanbossenger/sitedrop.sh
Bash script to automatically decommission LAMP sites
View sitedrop.sh
#!/bin/bash
# Bash script to set drop local site created by sitesetup script
# See https://gist.github.com/jonathanbossenger/2dc5d5a00e20d63bd84844af89b1bbb4
if [[ $EUID -ne 0 ]];
then
echo "This script must be run as root"
exit 1
@haydar
haydar / sitesetup.sh
Last active July 15, 2021 02:19 — forked from jonathanbossenger/sitesetup.sh
Bash script to automatically provision LAMP sites
View sitesetup.sh
#!/bin/bash
# Bash script to set up local site using LAMP on Ubuntu
# Requires Apache2, MySQL, mkcert (https://github.com/FiloSottile/mkcert)
# See also sitedrop.sh https://gist.github.com/jonattanbossenger/4950e107b0004a8ee82aae8b123cce58
# This version improved by @haydar on github
if [[ $EUID -ne 0 ]];
then
View validatemp3file1.php
$this->validate($request, array(
'audio'=>'required|mimes:mpga,m4a,mp4,m4r',
));
View validatemp3file.php
$this->validate($request, array(
'audio'=>'required|mimes:mp3,m4a,mp4,m4r',
));
View gist:146d71250b5efc43cff7b7ce59cf26ed
namespace App\Listeners;
use App\Events\YeniKayit;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Contracts\Queue\ShouldQueue;
class SendVerificitionMail
{
/**
View gist:386e21aba0dc0b2e3c08d89b0e268b6e
<?php
namespace App\Events;
use Illuminate\Broadcasting\Channel;
use Illuminate\Queue\SerializesModels;
use Illuminate\Broadcasting\PrivateChannel;
use Illuminate\Broadcasting\PresenceChannel;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Broadcasting\InteractsWithSockets;
View YeniKayit eventini tetikleyen kod
protected $dispatchesEvents= [
'created'=>Events\YeniKayit::class,
];
@haydar
haydar / EventServiceProvider'a yazılacak kodumuz
Last active September 29, 2018 18:06
EventServiceProvider'a yazılacak kodumuz
View EventServiceProvider'a yazılacak kodumuz
protected $listen = [
'App\Events\YeniKayit' => [
'App\Listeners\Yapilacakİslemler',
],
];