I hereby claim:
- I am jderusse on github.
- I am jderusse (https://keybase.io/jderusse) on keybase.
- I have a public key ASBN2fFf5AAiK4BjmcqiGYMjlDec0jJhIEEH4D78hmoVLQo
To claim this, I am signing this object:
<?php echo "Hello World"; |
I hereby claim:
To claim this, I am signing this object:
const evalCode = (code) => { | |
const oldWrite = document.writeln; | |
const sandbox = document.createElement('div'); | |
document.body.appendChild(sandbox); | |
document.writeln = (content) => { | |
sandbox.innerHTML += content; | |
}; | |
try { | |
(window.execScript || function(data) { |
<?php | |
namespace App\HttpClient; | |
class CanceledException extends \RuntimeException | |
{ | |
} |