0x69
0x34
Seem to be at the beginning of every setup(?) message from the driver.
| drop table if exists transaction; | |
| create table transaction ( | |
| id SERIAL primary key, | |
| issued_at TIMESTAMP not null | |
| ); | |
| drop table if exists employee; | |
| create table employee ( | |
| id SERIAL primary key, | |
| name varchar, |
| precision lowp float; | |
| uniform vec2 iResolution; | |
| uniform vec2 iMouse; | |
| uniform float iTime; | |
| uniform sampler2D tex0; | |
| varying vec2 vPos; | |
| mat3 camera(vec3 orientation, float roll) { | |
| orientation = normalize(orientation); | |
| vec3 cp = vec3(sin(roll), cos(roll), 0.0); |
| import pypdf | |
| import glob | |
| from pathlib import Path | |
| files = "2022/*/*.pdf" | |
| with open("Unterschrift.pdf", "rb") as overlay: | |
| for file in glob.glob(files): | |
| with open(file, "rb") as inFile: | |
| original = pypdf.PdfReader(inFile) | |
| background = original.pages[0] |
| precision lowp float; | |
| uniform vec2 iResolution; | |
| uniform vec2 iMouse; | |
| uniform float iTime; | |
| uniform sampler2D tex0; | |
| varying vec2 vPos; | |
| mat3 camera(vec3 orientation, float roll) { | |
| orientation = normalize(orientation); | |
| vec3 cp = vec3(sin(roll), cos(roll), 0.0); |
| from profiled import profiled | |
| from ixmp import TimeSeries, Platform | |
| import pandas as pd | |
| import cProfile | |
| import io | |
| import pstats | |
| import contextlib | |
| @contextlib.contextmanager |
| import dis | |
| class BaseA(type): | |
| def __init__(self, name, bases, attrs): | |
| foo_bytecode = [i.opcode for i in dis.Bytecode(attrs["foo"])] | |
| if not 125 in foo_bytecode: | |
| raise Exception( | |
| f"The foo function in class {name} must assign at least one variable." |
| #include <ESP8266WiFi.h> | |
| #include <NTPClient.h> | |
| #include <FS.h> | |
| #include <WiFiUdp.h> | |
| #include <ESP8266WebServer.h> | |
| #define DEBUG true | |
| #define PIN_TRIGGER D5 | |
| #define PIN_ECHO D6 |
| set nocompatible |
| import itertools | |
| import time | |
| class Sieve: | |
| primes = [2, 3, 5, 7] | |
| def __init__(self, end=-1): | |
| self.end = end | |
| def __iter__(self): |