Keybase proof
I hereby claim:
- I am tacixat on github.
- I am tacixat (https://keybase.io/tacixat) on keybase.
- I have a public key ASCLJgLNP5WO43MhMW0X8nvg4aIX1KQS1tUgb-zuHkARZAo
To claim this, I am signing this object:
package main | |
import ( | |
"flag" | |
"fmt" | |
"go/ast" | |
"go/parser" | |
"go/token" | |
"log" | |
) |
package main | |
import ( | |
"bytes" | |
"crypto/hmac" | |
"crypto/sha256" | |
"encoding/hex" | |
"encoding/json" | |
// "mime/multipart" | |
"errors" |
package main | |
import ( | |
"fmt" | |
"os" | |
"path/filepath" | |
"strings" | |
"crypto/sha256" |
package main | |
import ( | |
"fmt" | |
"io" | |
"io/ioutil" | |
"os" | |
"path/filepath" | |
"runtime" | |
"strings" |
#include <sys/stat.h> | |
#include <fcntl.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <stddef.h> | |
void | |
fstat_filesize(const char *filename) | |
{ | |
int fd; |
import math | |
def setup(): | |
size(1000, 1000) | |
background(0x33, 0x66, 0x00) | |
# carom | |
DIAMETER = 61.0 # mm | |
RADIUS = DIAMETER / 2 |
package main | |
/* | |
This legend twitchyliquid64 mirrored cmd/internal/obj as an importable package. | |
Use the instruction builder then assemble. More examples in their repo. | |
*/ | |
import ( | |
asm "github.com/twitchyliquid64/golang-asm" | |
"github.com/twitchyliquid64/golang-asm/obj" |
package main | |
// Executable memory / JIT in Golang for Windows | |
// Linux see: | |
// https://medium.com/kokster/writing-a-jit-compiler-in-golang-964b61295f | |
import ( | |
"log" | |
"reflect" | |
"syscall" |
I hereby claim:
To claim this, I am signing this object:
#include <stdio.h> | |
#include <stdlib.h> | |
#include <stdint.h> | |
int check_char_0(char chr) { | |
register uint8_t ch = (uint8_t) chr; | |
ch ^= 97; | |
if(ch != 92) { |