I hereby claim:
- I am wbond on github.
- I am wbond (https://keybase.io/wbond) on keybase.
- I have a public key whose fingerprint is 47D0 CD56 BA71 7820 6AC7 3CDB C508 396D 0B85 524E
To claim this, I am signing this object:
| import logging | |
| import http.client as http_client | |
| http_client.HTTPConnection.debuglevel = 1 | |
| logging.basicConfig() | |
| logging.getLogger().setLevel(logging.DEBUG) | |
| requests_log = logging.getLogger("requests.packages.urllib3") | |
| requests_log.setLevel(logging.DEBUG) | |
| requests_log.propagate = True |
| function repr(data, level) | |
| if not level then | |
| level = 1 | |
| end | |
| local data_type = type(data) | |
| if data_type == 'table' then | |
| if level == nil then | |
| level = 1 |
| CREATE PROCEDURE dbo.sp__procedure$decrypt | |
| (@procedure sysname = NULL, @revfl int = 1) | |
| AS | |
| SET NOCOUNT ON | |
| IF @revfl = 1 | |
| BEGIN | |
| PRINT 'CAUTION: THIS PROCEDURE DELETES AND REBUILDS THE ORIGINAL STORED | |
| PROCEDURE.' | |
| PRINT ' MAKE A BACKUP OF YOUR DATABASE BEFORE RUNNING THIS PROCEDURE.' |
| [global] | |
| connect timeout = 2 |
I hereby claim:
To claim this, I am signing this object:
| Section "Monitor" | |
| Identifier "Monitor0" | |
| HorizSync 1.0 - 10000.0 | |
| VertRefresh 1.0 - 10000.0 | |
| EndSection | |
| Section "Device" | |
| Identifier "Device0" | |
| Driver "vmware" | |
| EndSection |
| security export -k /System/Library/Keychains/SystemRootCertificates.keychain -t certs -p > ~/allcerts.pem |
| # Install mingw with msys and all options from http://sourceforge.net/projects/mingw/files/Installer/mingw-get-inst/ | |
| # Install python 2.7 to C:\Python27 and add to Path environmental variable | |
| cd ~/src | |
| cd openssl | |
| ./Configure mingw shared --prefix=/usr/local | |
| make depend | |
| make | |
| make install |
| module.exports = function(grunt) { | |
| grunt.initConfig({ | |
| coffee: { | |
| glob_to_multiple: { | |
| expand: true, | |
| cwd: 'javascripts', | |
| src: ['*.coffee'], | |
| dest: 'javascripts/', | |
| ext: '.js' |
| LDFLAGS="-Xlinker --no-as-needed" pip install uwsgi |