Skip to content

Instantly share code, notes, and snippets.

View illarion's full-sized avatar
💻
MOV AX,BX

Illarion Kovalchuk illarion

💻
MOV AX,BX
View GitHub Profile
@illarion
illarion / lrucache.go
Created April 6, 2022 19:27
simple LRU cache impl
package cache
import (
"container/list"
"sync"
)
type listData[K comparable, V any] struct {
key K
data V
@illarion
illarion / mandelbrot.go
Last active August 1, 2018 15:16
Mandelbrot set golang implementation
package main
import (
"image"
"image/color"
"image/draw"
"image/png"
"os"
)
@illarion
illarion / fonts.conf
Created May 16, 2016 18:23
/home/shaman/.config/fontconfig/fonts.conf
<fontconfig>
<match target="pattern">
<edit name="dpi" mode="assign"><double>96</double></edit>
</match>
<match target="font" >
<edit name="rgba" mode="assign"><const>rgb</const></edit>
<edit name="hinting" mode="assign"><bool>true</bool></edit>
<edit name="antialias" mode="assign"><bool>true</bool></edit>
<edit name="autohint" mode="assign"><bool>true</bool></edit>
<edit mode="assign" name="hintstyle"><const>hintfull</const></edit>