Skip to content

Instantly share code, notes, and snippets.

@IlyaZha
IlyaZha / Install_WebStorm.sh
Last active October 2, 2018 16:05 — forked from almirb/Install_Phpstorm.sh
Update webstorm on Ubuntu linux.
#!/bin/bash -e
# Original credits to theodorosploumis
# IMPORTANT. My webstorm installation exists on /opt/webstorm.
if [ "$(whoami)" != "root" ]
then
echo "Sorry, you are not root."
exit 1
fi
@IlyaZha
IlyaZha / gist:a72ea944f1fb7daebbee9bbcefb97399
Last active December 13, 2016 12:00 — forked from drakakisgeo/gist:3bba2a2600b4c554f836
Auto trim all input [Laravel 5]
// Step 1. Create this class in the middleware folder (/app/Http/Middleware).
<?php
namespace App\Http\Middleware;
use Closure;
class BeforeAutoTrimmer {