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:
// 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): |
#!/usr/bin/env python3 | |
import sys | |
import pathlib | |
import gi | |
gi.require_version('Gtk', '3.0') | |
from gi.repository import Gtk | |
if __name__ == '__main__': |