I hereby claim:
- I am drm on github.
- I am gerardvanhelden (https://keybase.io/gerardvanhelden) on keybase.
- I have a public key ASCSh0Ql6birWt-X9tm0ZHYmlO_sn30ZYuiGDR2afMz_UAo
To claim this, I am signing this object:
| openssl \ | |
| pkeyutl \ | |
| -encrypt \ | |
| -inkey <(ssh-keygen -f ~/.ssh/id_rsa.pub -e -m pem) \ | |
| -pubin \ | |
| -in ./foo.txt \ | |
| -out foo.enc | |
| openssl \ |
| package app.lucene; | |
| import java.nio.channels.FileChannel; | |
| import java.nio.channels.FileLock; | |
| import java.nio.file.Files; | |
| import java.nio.file.Path; | |
| import java.nio.file.StandardOpenOption; | |
| import java.nio.file.attribute.BasicFileAttributes; | |
| import java.nio.file.attribute.FileTime; | |
| import java.io.IOException; |
I hereby claim:
To claim this, I am signing this object:
| cat > pom.xml <<-EOF | |
| <project> | |
| <modelVersion>4.0.0</modelVersion> | |
| <groupId>temp</groupId> | |
| <artifactId>temp</artifactId> | |
| <version>master</version> | |
| <dependencies> | |
| <dependency> | |
| <groupId>$1</groupId> | |
| <artifactId>$2</artifactId> |
| <?php | |
| /** | |
| * @author Gerard van Helden <[email protected]> | |
| * @copyright Zicht Online <http://zicht.nl> | |
| */ | |
| $flags = array_filter($_SERVER['argv'], function($a) { | |
| return $a[0] === '-'; | |
| }); | |
| $args = array_filter($_SERVER['argv'], function($a) { |
| #include <stdio.h> | |
| int main() | |
| { | |
| char c = NULL; | |
| if (c == NULL) { | |
| printf("Yes\n"); | |
| } | |
| return 0; | |
| } |
| <?php | |
| /** | |
| * @author Gerard van Helden <[email protected]> | |
| * @copyright Zicht Online <http://zicht.nl> | |
| */ | |
| require_once 'vendor/autoload.php'; | |
| class MyConf implements \Symfony\Component\Config\Definition\ConfigurationInterface | |
| { |
| <?php | |
| /** | |
| * @author Gerard van Helden <[email protected]> | |
| * @copyright Zicht Online <http://zicht.nl> | |
| */ | |
| require_once 'vendor/autoload.php'; | |
| class MyConf implements \Symfony\Component\Config\Definition\ConfigurationInterface | |
| { |
| <!doctype html> | |
| <html> | |
| <body> | |
| <pre id="canvas" style="font-size:20px; font-weight:bold;"></pre> | |
| </body> | |
| </html> | |
| <script type="text/javascript"> |
| #!/usr/bin/env bash | |
| function a { | |
| echo "let's do A!" | |
| } | |
| function b { | |
| echo "Let's do B!" | |
| } |