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:
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) { |
def reverse17(val): | |
return val ^ (val >> 17) ^ (val >> 34) ^ (val >> 51) | |
def reverse23(val): | |
return (val ^ (val << 23) ^ (val << 46)) & 0xFFFFFFFFFFFFFFF | |
def xs128p_backward(state0, state1): | |
prev_state1 = state0 | |
prev_state0 = state1 ^ (state0 >> 26) | |
prev_state0 = prev_state0 ^ state0 |
def xs128p(state0, state1): | |
s1 = state0 | |
s0 = state1 | |
s1 ^= (s1 << 23) | |
s1 ^= (s1 >> 17) | |
s1 ^= s0 | |
s1 ^= (s0 >> 26) | |
state0 = state1 | |
state1 = s1 | |
generated = (state0 + state1) |
%YAML1.2 | |
--- | |
# See http://www.sublimetext.com/docs/3/syntax.html | |
file_extensions: | |
- risc | |
scope: source.risc | |
contexts: | |
main: | |
- match: 'r[0-9]' | |
scope: support.type.risc |
/* AUTHOR | |
** Douglas Goddard | |
** October 2015 | |
*/ | |
/* ABOUT | |
** This file is a simple set up for heating. | |
** There is a single byte for control. | |
** This allows temperature ranges 21c - 28c (~70f - 82f). | |
** Fan speeds 2, 3, 4 and silent. |
# Boyer Moore String Search implementation in Python | |
# Ameer Ayoub <[email protected]> | |
# Modified to return all indices - GG | |
# Generate the Bad Character Skip List | |
def generateBadCharShift(term): | |
skipList = {} | |
for i in range(0, len(term)-1): | |
skipList[term[i]] = len(term)-i-1 | |
return skipList |