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
| [auth] | |
| bitbucket.prefix = https://bitbucket.org/ | |
| bitbucket.username = xxxxxx | |
| [ui] | |
| username=Milan Brezovsky <xxxxxx@xxxxxx.com> | |
| ignore=C:\Users\xxxxxx\Documents\hgignore_global.txt | |
| merge = kdiff3 | |
| [extensions] |
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
| r.db('test').table('test') | |
| .concatMap(function(doc) { | |
| return doc.keys().map(function(tlKey) { | |
| return r.branch(doc(tlKey).typeOf().eq('OBJECT'), | |
| doc(tlKey).keys().map(function(name){ return r.expr(tlKey).add('.').add(name);}), | |
| tlKey); | |
| }); | |
| }).distinct() | |
| /** | |
| * For object |
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
| npm rm bower | |
| npm cache clean | |
| npm install -g abbrev@1.0.7 | |
| npm install -g amdefine@1.0.0 | |
| npm install -g ansi-escapes@1.1.0 | |
| npm install -g ansi-regex@2.0.0 | |
| npm install -g ansi-styles@2.1.0 | |
| npm install -g ansicolors@0.2.1 | |
| npm install -g archy@1.0.0 |
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
| import atexit | |
| import pika | |
| from rest_framework.renderers import JSONRenderer | |
| from Bar.serializers import BarSerializer | |
| RABBIT_HOST = 'localhost' | |
| class FooChangePublisher(object): |
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
| //* TITLE Servant **// | |
| //* VERSION 0.4 REV E **// | |
| //* DESCRIPTION XKit Personal Assistant **// | |
| //* DETAILS Automator for XKit: lets you create little Servants that does tasks for you when the conditions you've set are met. **// | |
| //* DEVELOPER STUDIOXENIX **// | |
| //* FRAME false **// | |
| //* SLOW true **// | |
| //* BETA false **// | |
| XKit.extensions.servant = new Object({ |
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
| for file in *; do | |
| if [ -d $file ]; then | |
| #echo $file; | |
| #cd $file; | |
| for file2 in $file/*; do | |
| if [ -d $file2 ]; then | |
| #cd $file2; | |
| #echo $file2; | |
| for file3 in $file2/*; do | |
| if [ -d $file3 ]; then |
NewerOlder