Skip to content

Instantly share code, notes, and snippets.

View CosmicToast's full-sized avatar

Chloé Vulquin CosmicToast

View GitHub Profile
@CosmicToast
CosmicToast / big-pinafore-emojos.user.css
Last active September 14, 2020 11:31
Toast's UserCSS collection
/* ==UserStyle==
@name big-pinafore-emojos
@namespace github.com/openstyles/stylus
@version 1.0.1
@description Makes pinafore emojos bigger.
@author Chloe Kudryavtsev
==/UserStyle== */
@-moz-document domain("pinafore.social"), domain("dev.pinafore.social") {
.inline-custom-emoji {
width: 2.8em;
@CosmicToast
CosmicToast / news.peg
Last active December 19, 2019 21:00
Toast NEWS PEG
Document <- DocPart+
DocPart <- VersionHeader ( AuthPart EOL )+
VersionHeader <- SectSep Version '(' Date ')' EndOfLine EndOfLine
AuthPart <- AuthorLine Item+
AuthorLine <- Author EOL
Author <- ASCII+ ('"' DomChar+ '"')? ASCII+ '<' Email '>'
Email <- Char+ '@' Domain
Domain <- DomChar+ ( PERIOD DomChar+ )+
@CosmicToast
CosmicToast / get_netboot_xyz.sh
Created December 16, 2019 20:59
Gets .kpxe and .efi boot endpoints of netboot.xyz, for use with dnsmasq.
#!/bin/sh
USER=dnsmasq:dnsmasq
MIRROR='https://boot.netboot.xyz/ipxe'
KPXE=netboot.xyz.kpxe
UEFI=netboot.xyz.efi
SHA2=netboot.xyz-sha256-checksums.txt
cd "$(dirname $0)"
rm -f "$KPXE" "$UEFI" "$SHA2"