<?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 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 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 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 --release
Note
There has been some minor changes in Zig ⚡,
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
( | |
name: "Jellybeans", | |
foreground: "#E6E6CD", | |
background: "#141414", | |
cursor: "#FFB371", | |
bright_foreground: "#E6E6CD", | |
dim_foreground: "#E6E6CD", | |
normal: ( | |
black: "#353534", | |
red: "#D35737", |
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
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 ( |
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
const std = @import("std"); | |
pub fn build(b: *std.Build) void { | |
const exe = b.addExecutable(.{ | |
.name = "whatthecommit", | |
.root_source_file = b.path("whatthecommit.zig"), | |
.target = b.standardTargetOptions(.{}), | |
.optimize = b.standardOptimizeOption(.{}), | |
}); |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.