I hereby claim:
- I am muromec on github.
- I am muromec (https://keybase.io/muromec) on keybase.
- I have a public key whose fingerprint is 2716 F175 82CF 9833 DD1D D244 9180 15F3 1BE0 0922
To claim this, I am signing this object:
| function MyObject(val) { | |
| this.val = val; | |
| this.myCallback = this.myCallback.bind(this); // or lodash.bindall(this, 'myCallback'); | |
| } | |
| MyObject.prototype.myCallback = function(err, data){ | |
| console.log(err,data); | |
| console.log(this.val); | |
| }; |
| default partial alphanumeric_keys | |
| xkb_symbols "latin" { | |
| include "latin" | |
| name[Group1]= "Ukrainian (latin)"; | |
| key <AC02> { [ s, S, scaron, Scaron ] }; | |
| key <AB01> { [ z, Z, zcaron, Zcaron ] }; | |
| key <AB03> { [ c, C, ccaron, Ccaron ] }; | |
| key <AD08> { [ i, I, idiaeresis, Idiaeresis ] }; | |
| include "level3(ralt_switch)" |
I hereby claim:
To claim this, I am signing this object:
| var asn1 = require('asn1.js'); | |
| var broken = function() { | |
| var B = asn1.define('B', function() { | |
| this.seq().obj( // NO implicit tag here | |
| this.key('b').octstr() | |
| ); | |
| }); | |
| var A = asn1.define('Bug', function() { |
| #include "stdio.h" | |
| #include "string.h" | |
| #include "gost89.h" | |
| #include "gosthash.h" | |
| #include "util.h" | |
| #include <fcntl.h> | |
| #include <sys/types.h> | |
| #include <sys/uio.h> | |
| #include <unistd.h> |
| input_fd = open("key.dat", O_RDONLY); | |
| if(input_fd < 0) { | |
| fprintf(stderr, "failed to open data file\n"); | |
| return 1; | |
| } | |
| lseek(input_fd, 38, SEEK_SET); | |
| memset(data, 0, 1024); | |
| have = read(input_fd, data, 1024); | |
| if(have < 100) { |
| mport socket | |
| msg = '''OPTIONS sip:texr.net SIP/2.0 | |
| Via: SIP/2.0/UDP texr.net;branch=z9hG4bK5cb072362f08f6a3 | |
| Content-Length: 0 | |
| From: "neko" <sip:[email protected]>;tag=4158f3dc | |
| To: "neko" <sip:[email protected]> | |
| User-Agent: pygay | |
| CSeq: 55216 OPTIONS | |
| Max-Forwards: 70 |
| package net.texr.mobile; | |
| import java.io.IOException; | |
| import java.io.InputStream; | |
| import java.io.OutputStream; | |
| import java.util.ArrayList; | |
| import org.msgpack.MessagePack; | |
| import org.msgpack.packer.Packer; | |
| import org.msgpack.type.Value; |
| import os | |
| import msgpack | |
| import socket | |
| def cmd(name): | |
| def cmd(f): | |
| f._cmd_name = name | |
| return f | |
| return cmd |
| #!/bin/sh | |
| set -e | |
| CLI=./cli | |
| if [ ! -e ~/.texr.cert ]; then | |
| TD=$(mktemp -d) | |
| openssl genrsa 2048 > ${TD}/key.priv 2> /dev/null | |
| openssl rsa -in ${TD}/key.priv -pubout -out ${TD}/key.pub 2>/dev/null |