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:
| #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> | |
| */ | |
| $flags = array_filter($_SERVER['argv'], function($a) { | |
| return $a[0] === '-'; | |
| }); | |
| $args = array_filter($_SERVER['argv'], function($a) { |
| 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> |
I hereby claim:
To claim this, I am signing this object:
| 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; |
| openssl \ | |
| pkeyutl \ | |
| -encrypt \ | |
| -inkey <(ssh-keygen -f ~/.ssh/id_rsa.pub -e -m pem) \ | |
| -pubin \ | |
| -in ./foo.txt \ | |
| -out foo.enc | |
| openssl \ |