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
while true ; do nc -l -p 1500 -c 'echo -e "HTTP/1.1 200 OK\n\n $(date)"'; done |
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
(function () { | |
// Preserve the original 'open' function | |
var originalOpen = window.XMLHttpRequest.prototype.open; | |
window.XMLHttpRequest.prototype.open = function () { | |
arguments[1] = arguments[1].replace( | |
"https://example.com/", | |
"https://detour.com/" | |
); | |
console.log("XHR intercepted:", arguments); |
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
type Book = "dune" | "snowcrash" | "dune2" | |
const b: Book = Math.random() > 0.5 ? "dune" : "snowcrash" | |
function f() { | |
switch (b) { | |
case "dune": | |
return 0 | |
case "snowcrash": | |
return 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
#set($inputRoot = $input.path('$')) | |
[ | |
#foreach($elem in $inputRoot.hits.hits) | |
{ | |
"titel": "$util.escapeJavaScript($elem.get("_source").titel).replaceAll("\\'","'")", | |
"vorname": "$util.escapeJavaScript($elem.get("_source").vorname).replaceAll("\\'","'")", | |
"nachname": "$util.escapeJavaScript($elem.get("_source").nachname).replaceAll("\\'","'")", | |
"name": "$util.escapeJavaScript($elem.get("_source").name).replaceAll("\\'","'")", | |
"position": "$util.escapeJavaScript($elem.get("_source").position).replaceAll("\\'","'")", | |
"is_company": $util.escapeJavaScript($elem.get("_source").is_company).replaceAll("\\'","'"), |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
NewerOlder