Skip to content

Instantly share code, notes, and snippets.

View azuline's full-sized avatar

acid angel from asia azuline

View GitHub Profile

Keybase proof

I hereby claim:

  • I am azuline on github.
  • I am vanillasprinkles (https://keybase.io/vanillasprinkles) on keybase.
  • I have a public key whose fingerprint is AE42 8F5D 1C09 6476 3BE9 7B77 953A CFC5 F8F3 E2E7

To claim this, I am signing this object:

@azuline
azuline / smallc.hs
Last active January 16, 2021 01:41
smallc parser in haskell using parser combinators (w/ Megaparsec)
module Main where
{-
Libraries:
- Megaparsec
- pretty-simple
-}
import Data.Functor (($>))
import Data.Void (Void)
@azuline
azuline / shiori.css
Created November 12, 2020 19:17
shiori css overrides to not be so fat
#bookmarks-grid {
display: block;
max-width: 700px;
margin: 0 auto;
}
.bookmark.list.no-thumbnail {
flex-flow: row wrap;
padding: 6px 16px;
}
@azuline
azuline / lounge-neuron.css
Created August 15, 2019 14:06
my modifications to the neuron theme for thelounge
#sidebar .chan .name::after { display: none; }
#chat.show-seconds .time { width: 85px; }
.textcomplete-item a { color: #ccc; }
.textcomplete-item.active a { color: #333; }
* { font-family: Hack; }
* #chat .content { font-weight: normal; }
@azuline
azuline / epub-copier.py
Last active August 10, 2019 01:29
script to copy new epubs to another directory
#!/usr/bin/env python
from datetime import datetime
from os.path import basename, splitext
from pathlib import Path
from shutil import copyfile
from_dir = Path('/mnt/elements/books')
to_dir = Path('/mnt/elements/purgatory/books')
copied = Path(__file__).parent / 'filescopied.txt'