Skip to content

Instantly share code, notes, and snippets.

View damiska21's full-sized avatar
ゾルトラーク

Damián Roháček damiska21

ゾルトラーク
View GitHub Profile
@damiska21
damiska21 / my_kanata_config.kbd
Last active February 26, 2026 14:53
this is my current kanata (keyboard remmaper) config
;;definetly subject to more change, but i made a big switch so here you go
(defcfg
process-unmapped-keys yes
windows-altgr add-lctl-release
)
(defsrc
pgup pgdn
q w e r t y u i o p
caps a s d f g h j k l ;
z x c v b n m up
@damiska21
damiska21 / Kniha.java
Created October 11, 2024 10:11
singleton ukázka
public class Kniha
{
private String nazev;
private String autor;
private static volatile Kniha instance;
private Kniha()
{
this.nazev = "Harry Potter";
this.autor = "Rowlingová";
}