<?xml version="1.0" encoding="UTF-8"?>
<style-scheme id="pop-dark" name="Pop! - Dark" version="1.0">
<author>Peter Hellberg</author>
<_description>Pop! based on Coldark color scheme.</_description>
This file contains hidden or 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
| #let red = red.desaturate(70%); | |
| #let yellow = yellow.desaturate(70%); | |
| #let blue = blue.desaturate(70%); | |
| #let green = green.desaturate(70%); | |
| #let gray = gray.lighten(20%); | |
| #let black = black.lighten(10%); | |
| #let lightgray = gray.lighten(70%); | |
| #show table.cell: it => { | |
| if it.x > 0 and it.y == 5 { |
This file contains hidden or 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
| const std = @import("std"); | |
| pub fn build(b: *std.Build) void { | |
| const exe = b.addExecutable(.{ | |
| .name = "cart", | |
| .root_source_file = b.path("main.zig"), | |
| .target = b.resolveTargetQuery(.{ | |
| .cpu_arch = .wasm32, | |
| .os_tag = .freestanding, | |
| }), |
This file contains hidden or 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
| zig-out | |
| .zig-cache |
This file contains hidden or 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
| diff --git a/.gitignore b/.gitignore | |
| index 4a0641e..3389c86 100644 | |
| --- a/.gitignore | |
| +++ b/.gitignore | |
| @@ -1,2 +1,2 @@ | |
| -zig-cache/ | |
| -zig-out/ | |
| \ No newline at end of file | |
| +.zig-cache/ | |
| +zig-out/ |
This file contains hidden or 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
| CC=zig cc | |
| CFLAGS = -Wall -Wextra -Werror | |
| INCLUDES = -I/usr/include/SDL2/ | |
| LIBS = -lSDL2 | |
| SRCS = aisnake.c | |
| OBJS = $(SRCS:.c=.o) | |
| MAIN = aisnake | |
| $(MAIN): $(OBJS) | |
| $(CC) $(CFLAGS) $(INCLUDES) -o $(MAIN) $(OBJS) $(LIBS) |
git clone [email protected]:JerwuQu/w4on2.git
cd w4on2
cargo build --releaseNote
There has been some minor changes in Zig ⚡,
This file contains hidden or 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
| ( | |
| name: "Jellybeans", | |
| foreground: "#E6E6CD", | |
| background: "#141414", | |
| cursor: "#FFB371", | |
| bright_foreground: "#E6E6CD", | |
| dim_foreground: "#E6E6CD", | |
| normal: ( | |
| black: "#353534", | |
| red: "#D35737", |
This file contains hidden or 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
| module experiments/libsql/libsql-example | |
| go 1.23.0 | |
| require ( | |
| github.com/tursodatabase/libsql-client-go v0.0.0-20240902231107-85af5b9d094d | |
| modernc.org/sqlite v1.33.1 | |
| ) | |
| require ( |

