Skip to content

Instantly share code, notes, and snippets.

aahed
aalii
aargh
aarti
abaca
abaci
abacs
abaft
abaka
abamp
@dayfuaim
dayfuaim / wordle-answers-alphabetical.txt
Created February 14, 2022 16:28 — forked from cfreshman/wordle-answers-alphabetical.txt
Wordle answers from source code in alphabetical order. And if you write a solver, here's a leaderboard! https://freshman.dev/wordle/#/leaderboard
aback
abase
abate
abbey
abbot
abhor
abide
abled
abode
abort
### Keybase proof
I hereby claim:
* I am dayfuaim on github.
* I am dayfuaim (https://keybase.io/dayfuaim) on keybase.
* I have a public key ASCgfO5S6Q1PHamU8yi-U5_3LPVkIsYjZwbJ_myQnMqLoQo
To claim this, I am signing this object:
@dayfuaim
dayfuaim / script-template.sh
Created November 19, 2021 10:48 — forked from m-radzikowski/script-template.sh
Minimal safe Bash script template - see the article with full description: https://betterdev.blog/minimal-safe-bash-script-template/
#!/usr/bin/env bash
set -Eeuo pipefail
trap cleanup SIGINT SIGTERM ERR EXIT
script_dir=$(cd "$(dirname "${BASH_SOURCE[0]}")" &>/dev/null && pwd -P)
usage() {
cat <<EOF
Usage: $(basename "${BASH_SOURCE[0]}") [-h] [-v] [-f] -p param_value arg1 [arg2...]
@dayfuaim
dayfuaim / checkForUndefinedCSSClasses.js
Created June 18, 2021 12:24 — forked from broofa/checkForUndefinedCSSClasses.js
ES module for detecting undefined CSS classes (uses mutation observer to monitor DOM changes). `console.warn()`s undefined classes.
/**
* Sets up a DOM MutationObserver that watches for elements using undefined CSS
* class names. Performance should be pretty good, but it's probably best to
* avoid using this in production.
*
* Usage:
*
* import cssCheck from './checkForUndefinedCSSClasses.js'
*
* // Call before DOM renders (e.g. in <HEAD> or prior to React.render())
@dayfuaim
dayfuaim / gresource-extract
Created April 1, 2021 10:16 — forked from AnwarShah/gresource-extract
Gresource-extract. Original Credit goes to the author here http://projects.thecodergeek.com/scripts/gresource-extract
#!/bin/bash
##############################################################################
# Author: Peter Gordon <peter@thecodergeek.com>
# License: Public Domain
##############################################################################
# gresource-extract.sh
# Version: 1
#
# This Bash script is designed to extract all resource files in a given
# GResource file, with the given base folder. For example, if a GResource file
@dayfuaim
dayfuaim / mpv.conf
Created July 30, 2020 15:44 — forked from shabbir-hasan/mpv.conf
MPV Configuration (mpv.conf) on Windows 10 Pro
# vim: syntax=config
###########
# General #
###########
priority=high
input-ipc-server=/tmp/mpvsocket # listen for IPC on this socket
load-stats-overlay=yes # use local stats.lua
@dayfuaim
dayfuaim / AlbumsOrder.scpt
Last active March 7, 2020 13:00 — forked from jkbockstael/AlbumsOrder.scpt
AppleScript to get iTunes to sort albums by release date
-- Fix albums display order
-- Changes the "sort album" field, to ensure that albums get displayed in chronological order on iPods.
-- CC-BY-NC 2011, Jean-Karim Bockstael,
tell application "iTunes"
-- input checking
if selection is {} then
display dialog "You must select at least a track"
return
else
set selected_tracks to selection
@dayfuaim
dayfuaim / mojo-vue.pl
Created April 29, 2019 19:57 — forked from Tekki/mojo-vue.pl
Mojolicious - Vue.js Example
#!/usr/bin/env perl
use Mojolicious::Lite -signatures;
get '/' => sub ($c) {
$c->render(template => 'index');
};
get '/api/:region' => sub ($c) {
my %regions = (
@dayfuaim
dayfuaim / gist:0001d084157b562c89224b678ff98c3b
Created December 26, 2018 17:02 — forked from davidnunez/gist:1404789
list all installed packages in android adb shell
pm list packages -f