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
// Increase until a range is met then start again: | |
let range = 10; | |
let x = (x + 1) % range; |
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
/** | |
* This snippet is now a small library! | |
* @link https://github.com/jabranr/js-memcache | |
*/ |
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
.rsync_cache | |
.vagrant | |
*~ | |
Guardfile | |
*.swp | |
.idea | |
.DS_Store? | |
.DS_Store | |
ehthumbs.db | |
Icon? |
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
<?php | |
namespace Foo\Bar\Entity; | |
use Doctrine\ORM\EntityManager; | |
use Doctrine\ORM\Mapping as ORM; | |
/** | |
* BaseEntity | |
* |
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
# Save in .git/hooks/prepare-commit-msg | |
# | |
# This means that current branch was branched | |
# out from JIRA/Bitbucket and has a JIRA | |
# ticket number in its name. | |
JIRA=$(cat .git/HEAD | grep -Eo "[A-Z]+-[0-9]+") | |
echo "$JIRA" >> "$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
# Save the file to "{Sublime Packages}/PHP Getters and Setters/user_templates.py" | |
# Then add following "user config" in Sublime Text: | |
# | |
# { | |
# "registerTemplates" : [ "customTemplate" ], | |
# "template" : "customTemplate" | |
# } | |
# | |
# Restart Sublime Text | |
# |
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
# editorconfig.org | |
root = true | |
[*] | |
indent_style = space | |
indent_size = 2 | |
end_of_line = lf | |
charset = utf-8 | |
trim_trailing_whitespace = true | |
insert_final_newline = 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
#!/bin/sh | |
# | |
# @author: Jabran Rafique <[email protected]> | |
# @link: http://jabran.me/articles/automatic-database-backup-using-git-hosting/ | |
# Set variables | |
FULLDATE = $(date +"%Y-%d-%m %H:%M") | |
NOW = $(date +"%Y-%m-%d-%H-%M") | |
MYSQL_DUMP = `which mysqldump` | |
GIT = `which git` |
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
<snippet> | |
<content><![CDATA[ | |
/** | |
* Get ${1/(.*)/\u$1/:[ Prop name ]} | |
* ${4:[description]} | |
* | |
* @return ${3:[type]} | |
*/ | |
public function get${1/(.*)/\u$1/:[ Prop name ]}() { | |
return \$this->${1:[ Prop name ]}; |