This file contains 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
/** | |
* @link http://adripofjavascript.com | |
*/ | |
// Example 1 | |
(function(console) { | |
function factoral(num) { | |
if (num < 0) throw new Error('Bad input!'); | |
if (num % 1 !== 0) throw new Error('That\'s NaN!'); | |
if (num === 0 || num === 1) return 1; |
This file contains 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
# Get own stats for the day | |
git diff --shortstat "@{0 day ago}" | |
# Get contributor stats | |
git shortlog -sn | |
This file contains 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
{ | |
"folders": [ | |
{ | |
"path": ".", | |
"follow_symlinks": true | |
} | |
], | |
"settings": { | |
"xdebug": { | |
"path_mapping": { |
This file contains 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
[ | |
{ "keys": ["f4"], "command": "import_namespace" }, | |
{ "keys": ["f7"], "command": "insert_php_constructor_property" }, | |
{ "keys": ["f9"], "command": "expand_fqcn" }, | |
{ "keys": ["f10"], "command": "find_use" }, | |
{ "keys": ["shift+f9"], "command": "expand_fqcn", "args": {"leading_separator": true} }, | |
{ "keys": ["shift+f12"], "command": "goto_definition_scope" } | |
] |
This file contains 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
{ | |
"debug_layout" : { | |
"cols": [0.0, 0.5, 1.0], | |
"rows": [0.0, 0.6, 1.0], | |
"cells": [[0, 0, 2, 1], [0, 1, 1, 2], [1, 1, 2, 2]] | |
}, | |
"close_on_stop": true, | |
"super_globals": true, | |
"break_on_start": false, | |
"debug": true |
This file contains 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
# Delete a Git branch locally and remotely | |
# Author: Jabran Rafique <[email protected]> | |
# License: MIT License | |
#!/bin/bash | |
# Display all local branches | |
git branch | |
# Delete a local branch |
This file contains 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
# Mount volumes using SSHFS from a remote | |
# Author: Jabran Rafique <[email protected]> | |
# License: MIT License | |
#!/bin/bash | |
sshfs {REMOTE}:{PATH} {HOST_PATH} -o follow_symlinks |
This file contains 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
[user] | |
name = Jabran Rafique | |
email = [email protected] | |
[color] | |
ui = true | |
diff = auto | |
status = auto | |
branch = auto | |
This file contains 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
# Use the script at root directory of all Git projects. | |
# | |
# How it works: | |
# 1. The script will change directory to each sub directory. | |
# 2. Checks for ".git/" directory. Fails and returns message if not found. | |
# 3. In valid Git project, it Fetches and Pulls the updates from remote. | |
# 4. Shows end result message accordingly. | |
# | |
# Author: Jabran Rafique <[email protected]> | |
# License: MIT License |
This file contains 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
{ | |
"packages": | |
[ | |
"Emmet", "Git", "Material Theme", "Package Control", | |
"PHP Campanion", "Pyv8", "SCSS", "Theme - Cobalt2", | |
"Twig", "Xdebug Client", "Git Gutter", "Pretty JSON", | |
"SidebarEnhancements", "PHP Getters Setters" | |
] | |
} |