This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo php5dismod -s cli xdebug |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Console\Commands\Route; | |
use Illuminate\Console\Command; | |
use Illuminate\Foundation\Console\RouteListCommand; | |
use Illuminate\Routing\Router; | |
class BackendRouteListCommand extends RouteListCommand | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
+------------+-------------+--------------+ | |
| Number | Interval In | Interval Out | | |
+------------+-------------+--------------+ | |
| 1145 KH | 27 | 24,39 | | |
| 1507 AC | 30 | 21,38 | | |
| 875 KU | 31 | 22,37 | | |
| 1387 AK | 33 | 34,57 | | |
| 1118 OB | 26 | 18,49 | | |
| 729 BD | 26 | 7,26 | | |
| 1663 IU | 21 | 7,24 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
java -jar selenium.jar -Dwebdriver.chrome.driver=/Users/jimboy/Downloads/chromedriver |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Your init script | |
# | |
# Atom will evaluate this file each time a new window is opened. It is run | |
# after packages are loaded/activated and after the previous editor state | |
# has been restored. | |
# | |
# An example hack to log to the console when each text editor is saved. | |
# | |
# atom.workspace.observeTextEditors (editor) -> | |
# editor.onDidSave -> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# Config Github Settings | |
github_username = "fideloper" | |
github_repo = "Vaprobash" | |
github_branch = "1.4.2" | |
github_url = "https://raw.githubusercontent.com/#{github_username}/#{github_repo}/#{github_branch}" | |
# Because this:https://developer.github.com/changes/2014-12-08-removing-authorizations-token/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Set variables in .bashrc file | |
# don't forget to change your path correctly! | |
export GOPATH=$HOME/golang | |
export GOROOT=/usr/local/opt/go/libexec | |
export PATH=$PATH:$GOPATH/bin | |
export PATH=$PATH:$GOROOT/bin |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"env": { | |
"GOPATH": "$HOME/gogo", | |
"PATH": "$GOPATH/bin:$PATH" | |
}, | |
"fmt_cmd": [ | |
"goimports" | |
], | |
"comp_lint_enabled": true, | |
"comp_lint_commands": [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
xinput #list devices | |
xinput set-prop 13 'Device Enabled' 0 #disabled | |
xinput set-prop 13 'Device Enabled' 1 #enabled |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#http://stackoverflow.com/questions/6004915/how-do-i-move-a-redis-database-from-one-server-to-another | |
B$ sudo service redis-server stop | |
B$ sudo cp /tmp/dump.rdb /var/lib/redis/dump.rdb | |
B$ sudo chown redis: /var/lib/redis/dump.rdb | |
B$ sudo service redis-server start |