I hereby claim:
- I am ulrich on github.
- I am ulrich (https://keybase.io/ulrich) on keybase.
- I have a public key whose fingerprint is 6727 271C 5710 1BC9 83F6 CEFC FA02 71C9 77DF 729A
To claim this, I am signing this object:
| <!DOCTYPE HTML> | |
| <html> | |
| <head> | |
| <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"> | |
| <title>canvas hello world</title> | |
| <style> | |
| canvas { | |
| margin: 0 auto; | |
| display: block; | |
| padding: 1px; |
| var casper = require('casper').create({ | |
| verbose: true, | |
| logLevel: 'debug', | |
| }); | |
| var url = "file:///media/data/projects/personnal/js/ember.js/simple/index.html"; | |
| // a callback that ensures the runloop is flushed before an assert is run. Based on gist... | |
| /*casper.test.emberDidRender = function(cbk){ |
| /* | |
| Java 0day 1.7.0_10 decrypted source | |
| Originaly placed on https://damagelab.org/index.php?showtopic=23719&st=0 | |
| From Russia with love. | |
| */ | |
| import java.lang.invoke.MethodHandle; | |
| import java.lang.invoke.MethodHandles; | |
| import java.lang.invoke.MethodType; | |
| import java.security.AccessController; |
| $('td:contains("mappyfactory@map...")').each(function(e) { $($(this).prev('td').find('input')[0]).attr('checked','checked') } ) |
I hereby claim:
To claim this, I am signing this object:
| package main | |
| import ( | |
| "errors" | |
| "fmt" | |
| "net" | |
| "strconv" | |
| ) | |
| const ( |
| #!/bin/bash | |
| sudo apt update -y \ | |
| && sudo apt upgrade -y | |
| sudo apt install \ | |
| wget \ | |
| screen \ | |
| default-jdk \ | |
| nmap |
| package tech.ingenico.ah; | |
| import java.util.function.Function; | |
| import java.util.stream.IntStream; | |
| public class FizzBuzz { | |
| public static final Function<Integer, Integer> MODULO_3 = v -> v % 3; | |
| public static final Function<Integer, Integer> MODULO_5 = v -> v % 5; | |
| public static void run(IntStream intStream) { |
| FROM nginx:latest | |
| WORKDIR /tmp | |
| RUN apt-get update && apt-get install -y curl unzip && apt-get clean | |
| RUN curl -fsSL -O https://cheatsheetseries.owasp.org/bundle.zip | |
| RUN unzip bundle.zip && mv site/* /usr/share/nginx/html |