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
Traceback (most recent call last): | |
File "/Users/april/Source/misbehaving.site/env/lib/python3.6/site-packages/flask/app.py", line 1997, in __call__ | |
return self.wsgi_app(environ, start_response) | |
File "/Users/april/Source/misbehaving.site/env/lib/python3.6/site-packages/whitenoise/base.py", line 66, in __call__ | |
return self.application(environ, start_response) | |
File "/Users/april/Source/misbehaving.site/env/lib/python3.6/site-packages/flask/app.py", line 1989, in wsgi_app | |
return response(environ, start_response) | |
File "/Users/april/Source/misbehaving.site/env/lib/python3.6/site-packages/werkzeug/wrappers.py", line 1277, in __call__ | |
start_response(status, headers) | |
TypeError: unable to add header to the response |
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
Number Never Cast: 60 | |
Number Cast Only Once: 40 | |
Cards Never Cast: | |
White (6) | |
--------- | |
Odric, Lunarch Marshal | |
Linvala, the Preserver | |
Disenchant |
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
Note that instead of using a unique nonce on each page load, you could instead | |
have the sha256 hash of the contents of that inline script and be completely static. | |
> Content-Security-Policy: script-src 'strict-dynamic' 'nonce-abcdef123467890' 'unsafe-inline' https: | |
<html> | |
<head> | |
<title>Hello World</title> | |
</head> | |
<body> |
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
<meta name="referrer" content="origin" /> | |
<meta name="referrer" content="no-referrer" /> |
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
+0/+1 | |
+0/+2 | |
+1/+0 | |
+1/+1 | |
+1/+2 | |
+2/+0 | |
+2/+2 | |
-0/-1 | |
-0/-2 | |
-1/-0 |
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
server { | |
listen 58080; | |
# Disable the port number in redirects, since it's behind a load balancer | |
port_in_redirect off; | |
location / { | |
if ($http_x_forwarded_proto != 'https') { | |
return 301 https://$host$request_uri; | |
} |
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
{ | |
"state": "secure", | |
"cipherSuite": "TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256", | |
"keaGroupName": "none", | |
"signatureSchemeName": "RSA-PKCS1-SHA512", | |
"isDomainMismatch": false, | |
"isExtendedValidation": false, | |
"isNotValidAtThisTime": false, | |
"isUntrusted": false, | |
"certificateTransparencyStatus": "not_applicable", |
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
ERROR in ./src/background_scripts/httpObservatory.js | |
Module build failed (from ./node_modules/babel-loader/lib/index.js): | |
SyntaxError: /Users/april/Source/security-report-card/src/background_scripts/httpObservatory.js: Unexpected token (45:17) | |
43 | 'bar': 'baz' | |
44 | }; | |
> 45 | const foobar = ...foo; |
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
"'' | |
*, *, * | |
* | |
\"" | |
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
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
#!/bin/bash | |
# this forces Arena into full screen mode on startup, set back to 3 to reset | |
# note that if you go into the Arena "Graphics" preference panel, it will reset all of these | |
# and you will need to run these commands again | |
defaults write com.wizards.mtga "Screenmanager Fullscreen mode" -integer 0 | |
defaults write com.wizards.mtga "Screenmanager Resolution Use Native" -integer 0 | |
# you can also replace the long complicated integer bit with any other scaled 16:9 | |
# resolution your system supports. |