- bio "></span><img src="google.com"> <script>alert()</script>
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
[root@76a715fc029f billiard-3.3.0.20]# pip install --target /tmp/target_directory -vvv "psutil" | |
You are using pip version 7.1.0, however version 7.1.2 is available. | |
You should consider upgrading via the 'pip install --upgrade pip' command. | |
Collecting psutil | |
Getting page https://pypi.python.org/simple/psutil/ | |
1 location(s) to search for versions of psutil: | |
* https://pypi.python.org/simple/psutil/ | |
Getting page https://pypi.python.org/simple/psutil/ | |
Analyzing links from page https://pypi.python.org/simple/psutil/ | |
Skipping link https://pypi.python.org/packages/2.4/p/psutil/psutil-1.1.0.win32-py2.4.exe#md5=1507a76ba81a068acd3ffc0ed4ca2c4c (from https://pypi.python.org/simple/psutil/); unsupported archive format: .exe |
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
{ | |
"General": [ | |
{ | |
"brewer": "21st Amendment Brewery", | |
"beers": [ | |
"Hell or High Watermelon", | |
"Brew Free or Die IPA" | |
] | |
}, | |
{ |
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
disks = azure.list_disks() | |
for disk in disks: | |
if disk.attached_to is None: | |
azure.delete_disk(disk.name, True) |
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
// Notice the _.partialRight() call vs. the anonymous function needed in the file below. | |
var async = require('async'); | |
var _ = require('lodash'); | |
async.waterfall([ | |
function (callback) { | |
getBeer(callback); | |
}, function (beer, callback) { | |
getBottleOpener(_.partialRight(callback, beer)); |
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
{ | |
"General": [ | |
{ | |
"brewer": "Abita", | |
"beers": [ | |
"Amber", | |
"Andygator", | |
"Jockamo IPA", | |
"Purple Haze" | |
] |
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
http { | |
log_format haproxy_log '$proxy_protocol_addr' '$haproxy_log_format_base'; | |
server { | |
set $haproxy_log_format_base '[$time_local] "$request" $status $body_bytes_sent "$http_referer" "$http_user_agent" "$cookie_connect.sid"'; | |
access_log /var/log/nginx/access.log haproxy_log; | |
} | |
} |
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
# | |
# Automatically generated file; DO NOT EDIT. | |
# Linux/arm 3.12.28 Kernel Configuration | |
# | |
CONFIG_ARM=y | |
CONFIG_SYS_SUPPORTS_APM_EMULATION=y | |
CONFIG_HAVE_PROC_CPU=y | |
CONFIG_STACKTRACE_SUPPORT=y | |
CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |
CONFIG_LOCKDEP_SUPPORT=y |
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
chrome://net-internals/#hsts |
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 --proxy http://198906:[email protected]:6050 install cordova -dd | |
npm info it worked if it ends with ok | |
npm verb cli [ '/usr/bin/node', | |
npm verb cli '/usr/bin/npm', | |
npm verb cli '--proxy', | |
npm verb cli 'http://198906:[email protected]:6050', | |
npm verb cli 'install', | |
npm verb cli 'cordova', | |
npm verb cli '-dd' ] | |
npm info using [email protected] |