Skip to content

Instantly share code, notes, and snippets.

View lakesare's full-sized avatar
💭
Not a sims logo

Evgenia Karunus lakesare

💭
Not a sims logo
View GitHub Profile
@lakesare
lakesare / Button.pde
Last active January 7, 2020 21:58
Processing button class
class Button {
private float x, y, w, h;
private String label;
private Runnable onClickRunnable;
public Button(float x, float y, float w, float h, String label, Runnable onClickRunnable) {
this.x = x; this.y = y; this.w = w; this.h = h;
this.font = createFont("Tahoma", 13, true);
this.label = label;
this.onClickRunnable = onClickRunnable;
juan = 0
gregor = 0
luke = 0
matti = 0
ev = 0
# Ev paid 224.20 lari for the dinner, we divide it equally
ev += 224.20
juan -= 44.84
@lakesare
lakesare / proof.html
Created July 11, 2025 22:38
Paperproof in html form
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Paperproof Snapshot</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');
</style>