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
| ### Keybase proof | |
| I hereby claim: | |
| * I am andrefs on github. | |
| * I am andrefs (https://keybase.io/andrefs) on keybase. | |
| * I have a public key whose fingerprint is 9855 D11E 4674 3E1E 1F1A F85F 1E53 063F 6F27 1B13 | |
| To claim this, I am signing this 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":"Economico","sortTitle":"Data","query":"filter=Source.Name eq | |
| \"Economico\"&sort=_InternalRefs.RegisterDate&limit=20","destination":"main | |
| ","id":1430395633631,"idx":0,"domElement":{"0":{"jQuery11100528639918193221 | |
| 1":226,"sizzle-1434637889294":{"parentNode":[2289,18,false]}},"length":1,"p | |
| revObject":{"0":{},"context":{},"length":1},"context":{}}},{"title":"Expres | |
| so","sortTitle":"Data","query":"filter=Source.Name eq | |
| \"Expresso\"&sort=_InternalRefs.RegisterDate&limit=20","destination":"main" | |
| ,"id":1430401119919,"idx":1,"domElement":{"0":{"jQuery111005593397612683475 | |
| ":225,"sizzle-1433410869016":{"parentNode":[3230,18,false]}},"length":1,"pr | |
| evObject":{"0":{},"context":{},"length":1},"context":{}}},{"title":"Renasce |
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
| #!/bin/bash | |
| DIR=$(dirname $0) | |
| pubID="$1" | |
| if [ -z "$pubID" ]; then | |
| pubID='4090' | |
| fi | |
| FILE="$2" | |
| if [ -z "$FILE" ]; then | |
| FILE='4.png' |
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
| " Configuration file for Vim | |
| " Place in: ~/.vimrc | |
| " André Santos | |
| " 2009.10.18 | |
| " Turn off vi compatibility mode | |
| set nocompatible | |
| " Turn off message 'Thanks for flying vim' | |
| " set notitle |
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
| package MyApp; | |
| use Elastic::Model; | |
| has_namespace 'myapp' => { | |
| user => 'MyApp::EMUser', | |
| }; | |
| package MyApp::User; | |
| use Moose; |
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
| package MyApp; | |
| use Elastic::Model; | |
| has_namespace 'myapp' => { | |
| user => 'MyApp::User', | |
| }; | |
| package Class1; | |
| use Moose; | |
| package Class2; |
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
| #!/usr/bin/env perl | |
| # Prints version for each CPAN module taken as argument | |
| for(@ARGV){ | |
| my $sentence = 'perl -M'.$_.' -e \'print '.'"$'.$_.'::VERSION\n"'.'\''; | |
| print "$_\t"; | |
| print qx{$sentence}; | |
| } |
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
| #!/bin/bash | |
| # Creates a screenshot from a region of the display, | |
| # uploads it to Dropbox public folder and copies | |
| # the link to the clipboard. | |
| # | |
| # Dependencies: | |
| # xfce4-screenshooter | |
| # dropbox | |
| # x-clip |
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
| [user] | |
| name = User Name # to be used in commits | |
| email = user@email # to be used in commits | |
| [difftool] | |
| prompt = false | |
| [diff] | |
| tool = meld # use meld as 'git difftool' application | |
| [color] | |
| ui = true | |
| diff = auto |
OlderNewer