I hereby claim:
- I am knight42 on github.
- I am knight42 (https://keybase.io/knight42) on keybase.
- I have a public key ASBcXMtM1C4xjqaqqM-hbhT93xhcebCOv2i-FyjK51VDqAo
To claim this, I am signing this object:
| #!/usr/bin/python3 -O | |
| # -*- coding: utf-8 -*- | |
| import hashlib | |
| import binascii | |
| from passlib.utils import des | |
| def GenerateNTResponse(AuthChal, PeerChal, UserName, Password): | |
| ''' | |
| IN 16-octet AuthenticatorChallenge, |
| proxy_cache_path /mnt/array1/nginx/cache levels=1:2 keys_zone=STATIC:10m inactive=24h max_size=1g; | |
| proxy_temp_path /mnt/array1/nginx/temp; | |
| keepalive_timeout 2; | |
| tcp_nodelay on; | |
| sendfile on; | |
| limit_conn_zone $binary_remote_addr zone=addr:20m; | |
| limit_req_zone $binary_remote_addr zone=req_per_ip:20m rate=80r/s; | |
| limit_req zone=req_per_ip burst=100; |
| #!/usr/bin/node | |
| "use strict"; | |
| const net = require('net'); | |
| const url = require('url'); | |
| const qs = require('querystring'); | |
| function request(opts) { | |
| if(! /^https?:\/\//.test(opts.url)) opts.url = `http://${opts.url}`; |
I hereby claim:
To claim this, I am signing this object:
| use syntax::ast; | |
| use syntax::ptr::P; | |
| use syntax::codemap; | |
| use syntax::parse::token; | |
| use syntax::tokenstream::TokenTree; | |
| use syntax::ext::base::{ExtCtxt, MacResult, DummyResult, MacEager}; | |
| use syntax::ext::build::AstBuilder; | |
| use syntax_pos::Span; | |
| use rustc_plugin::Registry; | |
| use syntax::util::small_vector::SmallVector; |
| #!/usr/bin/python -O | |
| # -*- coding: utf-8 -*- | |
| ######################## | |
| # Require python-xlrd | |
| ######################## | |
| from __future__ import print_function, unicode_literals, with_statement, division | |
| import xlrd | |
| import csv | |
| from os import sys |
These rules are adopted from the AngularJS commit conventions.
| # Excerpt from https://stackoverflow.com/a/14930421/4725840 | |
| git clone -b mybranch --single-branch git://sub.domain.com/repo.git |