Skip to content

Instantly share code, notes, and snippets.

View mingshun's full-sized avatar

mingshun

View GitHub Profile
@EdenQwQ
EdenQwQ / waybar.nix
Created February 4, 2025 01:33
My waybar config
{config, ...}: let
moduleConfiguration =
/*
jsonc
*/
''
// Modules configuration
"niri/workspaces": {
"format": "{icon}",
"format-icons": {
@OwenChia
OwenChia / c8emu.c
Last active June 16, 2021 16:43
Chip 8 Emu - C & WASM version - https://owenchia.coding.me/c8emu/
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <emscripten.h>
#define SCREEN_W 64