sudo add-apt-repository ppa:gnome-terminator
sudo apt-get update
sudo apt-get install terminator
Terminator should be setup as default now. Restart your terminal (shortcut: "Ctrl+Alt+T").
{ | |
"basics": { | |
"name": "Thomas Edison", | |
"label": "Inventor and Businessman", | |
"picture": "https://example.com/photo.jpg", | |
"email": "[email protected]", | |
"phone": "(123) 456-7890", | |
"website": "https://thomasedison.com", | |
"summary": "Prolific inventor and businessman known for developing many devices that greatly influenced life around the world, including the phonograph, the motion picture camera, and the electric light bulb.fefefw", | |
"location": { |
{ | |
"basics": { | |
"name": "Thomas Edison", | |
"label": "Inventor and Businessman", | |
"picture": "https://example.com/photo.jpg", | |
"email": "[email protected]", | |
"phone": "(123) 456-7890", | |
"website": "https://thomasedison.com", | |
"summary": "Prolific inventor and businessman known for developing many devices that greatly influenced life around the world, including the phonograph, the motion picture camera, and the electric light bulb.", | |
"location": { |
<?php | |
/* | |
* What is The Route(WTR)? (Generate route information from a given URI) | |
* */ | |
if (!function_exists('WTR')) { | |
function WTR($uri, $method = 'GET'){ | |
$request = request()->create($uri, $method); | |
$routes = app('router')->getRoutes()->match($request); |
#1. Download the script (https://github.com/Nyr/openvpn-install) | |
wget https://git.io/vpn -O openvpn-install.sh | |
#2. Install the script & create new 'client' | |
bash openvpn-install.sh | |
#3. (OPTIONAL) To enable multiple connections per client | |
echo "duplicate-cn" >> /etc/openvpn/server.conf | |
#4. Restart openvpn service |
# famous alias 'nah' with confirmation | |
# created after loosing uncommitted work using 'nah' in a wrong work | |
# this will show the changed files in the directory before cleaning them. | |
function nah(){ | |
echo | |
git status | |
echo | |
echo -e "\e[1m\e[91mDo you wish to reset the repo?\e[39m" | |
echo |
sudo -i # to continue as root | |
df -Th #list devices | |
umount {path_to_the_readonly_device} | |
dosfsck {filesystem_path} | |
#repair any bad sectors. |
Table of Contents generated with DocToc
<?php | |
/* | |
* In Laravel Filters... | |
*/ | |
App::before(function (\Illuminate\Http\Request $request) | |
{ | |
$request->merge( | |
array_map_recursive( |
@echo off | |
SET st2Path=C:\Program Files\Sublime Text 2\sublime_text.exe | |
rem add it for all file types | |
@reg add "HKEY_CLASSES_ROOT\*\shell\Open with Sublime Text 2" /t REG_SZ /v "" /d "Open with Sublime Text 2" /f | |
@reg add "HKEY_CLASSES_ROOT\*\shell\Open with Sublime Text 2" /t REG_EXPAND_SZ /v "Icon" /d "%st2Path%,0" /f | |
@reg add "HKEY_CLASSES_ROOT\*\shell\Open with Sublime Text 2\command" /t REG_SZ /v "" /d "%st2Path% \"%%1\"" /f | |
rem add it for folders | |
@reg add "HKEY_CLASSES_ROOT\Folder\shell\Open with Sublime Text 2" /t REG_SZ /v "" /d "Open with Sublime Text 2" /f |