From 4ccc095ed2efeda97805bdfb9473f62ed46220b7 Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Tue, 2 Jun 2026 11:51:17 +0530 Subject: Show pixels from db --- justfile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'justfile') diff --git a/justfile b/justfile index 6c0f728..cb79843 100644 --- a/justfile +++ b/justfile @@ -1,6 +1,6 @@ set export -CC := "gcc" +CC := "cc" CFLAGS := f"-std=c11 -O2 \ -Wall -Wextra -Wshadow -Wformat=2 -fsanitize=address,undefined \ {{shell('pkg-config --cflags --libs sqlite3')}}" @@ -19,3 +19,9 @@ run: build format: find src/ -iname '*.h' -o -iname '*.c' | xargs clang-format -i +setup-db: + rm fun.db + sqlite3 fun.db < setup.sql + +image: + just run | magick display -resize 500% - -- cgit v1.3.1