Skip to content

Instantly share code, notes, and snippets.

View eterps's full-sized avatar

Erik Terpstra eterps

View GitHub Profile
from dataclasses import dataclass
@dataclass
class UnitQuantity:
value: int
@dataclass
class KilogramQuantity:
# This is a blocklist to block samsung smart tv's sending meta data at home.
# Please help to collect domains!
# It could be that the TV does not receive any more updates or other services no longer work. Please report such an incident.
# https://gist.github.com/Perflyst/315f86393712a0c2107ee8eb58c6acee
0.0.0.0 device-metrics-us.amazon.com
0.0.0.0 samsungacr.com
0.0.0.0 samsungcloudsolution.com
0.0.0.0 samsungcloudsolution.net
0.0.0.0 pavv.co.kr
@eterps
eterps / app.tsx
Last active December 14, 2023 16:08
/** @jsx jsx */
import { Hono, Context } from "https://deno.land/x/hono/mod.ts";
import { basicAuth } from "https://deno.land/x/hono/middleware.ts";
import { serveStatic } from "https://deno.land/x/hono/middleware.ts";
import { jsx } from "https://deno.land/x/hono/middleware.ts";
import { env } from "https://deno.land/x/hono/helper.ts";
import { getProject, setProject } from './project.ts';
import { renderPrompt } from './prompt.ts';
import { getAIOutput } from './ai.ts';
@eterps
eterps / init.lua
Created November 4, 2023 14:57
Starter neovim configuration
local lazypath = vim.fn.stdpath 'data' .. '/lazy/lazy.nvim'
if not vim.loop.fs_stat(lazypath) then
vim.fn.system({
'git',
'clone',
'--filter=blob:none',
'https://github.com/folke/lazy.nvim.git',
'--branch=stable', -- latest stable release
lazypath,
})
@eterps
eterps / setup_sway
Created December 7, 2018 12:10
Install Sway (a tiling Wayland compositor) on Ubuntu
#!/bin/bash
set -e
# Based on: https://gist.github.com/concatime/265fa14d260f3aa237ddf991d58dd639
mkdir /tmp/setup_sway
cd /tmp/setup_sway
# === Helpers ===
@eterps
eterps / syscall.rs
Created October 6, 2022 10:26
Call write syscall on x86-64 Linux in Rust
use std::arch::asm;
fn main() {
let str = b"Hello world\n";
unsafe {
let res = syswrite(str.as_ptr() as u64, str.len() as u64);
println!("res: {}", res);
}
}
% bouncing balls
-initialization(main).
main :-
poke(0x4c00, [0x3c, 0x7e, 0xff, 0xff, 0xff, 0xff, 0x7e, 0x3c], D1),
set_colors(0x0ce9, 0x01c0, 0x0ce5, D2),
start(D1, D2).
start([], []) :-
@eterps
eterps / filmvandaag_hide_low_scores.userscript.js
Created February 10, 2022 15:52
Userscript that hides every score below a 6 from filmvandaag.nl movie results
// ==UserScript==
// @name Hide low scores from filmvandaag.nl
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Hides every score below a 6 from filmvandaag.nl movie results
// @author Erik Terpstra
// @match https://www.filmvandaag.nl/*
// @icon https://www.google.com/s2/favicons?domain=filmvandaag.nl
// @grant none
// ==/UserScript==
MODULE IO; (*for Oberon0 NW 29.4.2017*)
IMPORT Texts,Oberon;
VAR S: Texts.Scanner; W: Texts.Writer;
PROCEDURE OpenInput*;
BEGIN Texts.OpenScanner(S, Oberon.Par.text, Oberon.Par.pos); Texts.Scan(S)
END OpenInput;
PROCEDURE ReadInt*(VAR x: LONGINT);
BEGIN x := S.i; Texts.Scan(S)
@eterps
eterps / optiontest.gleam.rs
Last active May 21, 2020 08:40
Testing the Option type in Gleam
import gleam/list
import gleam/result
import gleam/string
type PersonalName {
PersonalName(
first_name: String,
middle_initial: result.Option(String),
last_name: String,
)