Skip to content

Instantly share code, notes, and snippets.

View janAkali's full-sized avatar
❄️
Moved to Codeberg

janAkali janAkali

❄️
Moved to Codeberg
View GitHub Profile
@icub3d
icub3d / main.rs
Created December 12, 2023 20:23
Advent of Code 2023 - Day 12
use std::{
collections::HashMap,
sync::{Mutex, OnceLock},
};
use nom::{
bytes::complete::tag,
character::complete::{digit1, newline, one_of, space1},
multi::{many1, separated_list1},
IResult,
@janAkali
janAkali / readme.txt
Last active June 3, 2022 07:51
Sketchy Cleanup Detail (PuzzleScript Script)
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
@probonopd
probonopd / Wayland.md
Last active April 16, 2025 20:29
Think twice about Wayland. It breaks everything!

Think twice before abandoning Xorg. Wayland breaks everything!

Hence, if you are interested in existing applications to "just work" without the need for adjustments, then you may be better off avoiding Wayland.

Wayland solves no issues I have but breaks almost everything I need. Even the most basic, most simple things (like xkill) - in this case with no obvious replacement. And usually it stays broken, because the Wayland folks mostly seem to care about Automotive, Gnome, maybe KDE - and alienating everyone else (e.g., people using just an X11 window manager or something like GNUstep) in the process.


As 2024 is winding down:

@mohayonao
mohayonao / morse-code.json
Created July 14, 2014 06:18
morse-code.json
{
"0": "-----",
"1": ".----",
"2": "..---",
"3": "...--",
"4": "....-",
"5": ".....",
"6": "-....",
"7": "--...",
"8": "---..",