I hereby claim:
- I am ali1234 on github.
- I am ali1234 (https://keybase.io/ali1234) on keybase.
- I have a public key whose fingerprint is ADFD E886 043E 00DA F5ED 052C 4B13 38E2 0316 1411
To claim this, I am signing this object:
// [ 56.0, 4*62.0, 48.0, 0.6 ], // WHAM 5.04 outer side large | |
// [ 56.0, 2*62.0, 48.0, 0.6 ], // WHAM 5.04 outer side small | |
// [ 56.5, 63.5, 48.0, 0.6 ], // WHAM 5.04 inner | |
// [ 56.5, 62.5, 48.0, 0.6, [0.125, 0.5, 0.25, 0.125] ], // WHAM 5.04 outer | |
$fs = 0.1; | |
module fillet(r) { |
// hpp | |
#pragma once | |
#include <cstdint> | |
#include "32blit.hpp" | |
enum Sound { | |
BlockSmash, |
import click | |
import pyudev | |
import socket | |
import serial | |
import serial.threaded | |
class Worker(serial.threaded.Protocol): | |
def __init__(self, socket): | |
self.socket = socket |
// Tearing test | |
#include "32blit.hpp" | |
uint16_t width = 160; | |
uint16_t height = 120; | |
uint32_t prev_buttons = blit::buttons; | |
uint32_t updates = 0; |
// Update test | |
#include <unistd.h> | |
#include "32blit.hpp" | |
#include "../../../../../../usr/include/zconf.h" | |
uint16_t width = 160; | |
uint16_t height = 120; | |
uint32_t prev_buttons = blit::buttons; |
// Tearing test | |
#include "32blit.hpp" | |
uint16_t width = 160; | |
uint16_t height = 120; | |
uint32_t prev_buttons = blit::buttons; | |
void init(void) { | |
blit::set_screen_mode(blit::lores); |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env python3 | |
import sys | |
try: | |
import bpy | |
except ImportError: | |
print('Running myself inside Blender') | |
import subprocess | |
exit(subprocess.call(['blender', '--background', '--python', __file__, '--'] + sys.argv)) |
#!/bin/bash | |
SECONDS=0 | |
"$@" | |
e=$? | |
if [ $? -eq 0 ]; then | |
RESULT="Succeeded" |
import fcntl | |
import termios | |
import sys | |
import os | |
import time | |
class NonBlockingInput(object): | |
def __enter__(self): |