- 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
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
# | |
# 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
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
{ | |
"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
// 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
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
{ | |
"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
[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
[root@77ccf2c18f3b tmp]# DISTUTILS_DEBUG=1 pip install -t /tmp/install_here --install-option="--install-purelib=$base/lib64/python" psutil | |
You are using pip version 7.1.0, however version 7.1.1 is available. | |
You should consider upgrading via the 'pip install --upgrade pip' command. | |
/usr/lib/python2.7/site-packages/pip/commands/install.py:206: UserWarning: Disabling all use of wheels due to the use of --build-options / --global-options / --install-options. | |
cmdoptions.check_install_build_global(options) | |
Collecting psutil | |
/usr/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. | |
InsecurePlatformWarning | |
Using cached psutil-3.1.1.tar.gz | |
Installing collected packages: psutil |