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
| Verify Github on Galaxy. gid:hQKKLBSoUMz27TezvaLL7Z |
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
| ln -sf /System/Library/Frameworks/Python.framework/Versions/2.x/Extras/lib/python/OpenSSL lib/python2.x/ |
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 LDFLAGS="-L$(brew --prefix openssl)/lib" \ | |
| CFLAGS="-I$(brew --prefix openssl)/include" \ | |
| SWIG_FEATURES="-cpperraswarn -includeall -I$(brew --prefix openssl)/include" \ | |
| pip install m2crypto |
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
| BASE64_STRING_REGEX = ''.join((r'(?:[A-Za-z0-9+/]{4})*', | |
| r'(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?')) |
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
| var hash = function(s) { | |
| /* Simple hash function. */ | |
| var a = 1, c = 0, h, o; | |
| if (s) { | |
| a = 0; | |
| /*jshint plusplus:false bitwise:false*/ | |
| for (h = s.length - 1; h >= 0; h--) { | |
| o = s.charCodeAt(h); | |
| a = (a<<6&268435455) + o + (o<<14); | |
| c = a & 266338304; |