This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- GPLv3 licensed | |
-- I/O | |
local peek_cursor = 0 | |
local line_buffer = {} | |
local function getline() | |
return io.read() | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import re | |
import gdb | |
def get_executable_sections(pid): | |
return [ | |
(int(mat.group(1), 16), int(mat.group(2), 16)) for mat in [ | |
re.search("^([0-9a-f]*)-([0-9a-f]*) ..x", l) | |
for l in open(f"/proc/{pid}/maps", "r").read().splitlines() | |
] if mat != None | |
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- this program is GPLv3 | |
-- Copyright (C) 2024 Charlotte Pabst aka Lizzy Fleckenstein | |
import Mathlib.Tactic.Linarith | |
-- | |
-- Define correctness for sorting algorithms | |
-- | |
-- list is sorted, i.e. no element is smaller than its predecessor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Require Import Arith Bool Combinators FinFun Lia List. | |
Import ListNotations. | |
Open Scope list_scope. | |
Open Scope nat. | |
Scheme Equality for list. | |
(* helpers missing in the standard library *) | |
Lemma NoDup_app {A : Type} (a b : list A) : NoDup a -> NoDup b -> (forall x, In x a -> ~(In x b)) -> NoDup (a ++ b). | |
Proof. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wgsl | |
\.wgsl$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
This program demonstrates how unnamed anonymous struct/union fields get embedded in C. | |
License: CC BY-SA 4.0 | |
*/ | |
typedef struct { | |
int age; | |
struct { | |
char *name; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
If -Wpedantic is enabled, casts between function pointers and void* are forbidden. | |
("ISO C forbids conversion of function pointer to object pointer type") | |
However, a function pointer can be wrapped in a struct, a pointer to which can in turn be casted to void*. | |
This program demonstrates how this trick can be abused to cause undefined behavior. | |
Build: cc -Wall -Wextra -Wpedantic -Werror callback.c -o callback | |
Run: ./callback |