Gen Z Slang | Millennial Equivalent | Gen X Equivalent | Baby Boomer Equivalent |
---|---|---|---|
skibidi | cool dance move | breakdancing | jitterbug |
cringe | awkward | awkward | embarrassing |
slay | nailed it | rocked it | did a great job |
bruh | dude | man | pal |
it's giving | it looks like | it seems | it resembles |
___ vibes | ___ feels | ___ feeling | ___ atmosphere |
yooo (fr) | hey | hey | hello |
fam |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
from __future__ import annotations | |
import argparse | |
import configparser as ConfigParser | |
import json | |
import re | |
from enum import Enum | |
from pathlib import Path |
extracted via dotfiles commit
fish: wrap/split funced to avoid temp files
By design, funced
uses a temporary file to make changes to functions.
While this is useful so users don't overwrite key functionality in
share/fish/functions
ensuring the edited function can be parsed by
fish
. However, this adds friction (e.g. save, exit, load, run) during
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
script_name="${0##*/}" | |
# By default `fzf` uses `find`, try using one of the options listed here | |
# https://github.com/junegunn/fzf#tips to ignore .gitignore files | |
check_fzf_default_command() { | |
if [ -x "$(command -v gfind)" ]; then | |
export FZF_DEFAULT_COMMAND='gfind . -path "*__tests__*" -iname "*.ts" -o -path "*__tests__*" -iname "*.tsx"' | |
else |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# macOS/homebrew: | |
# - hardcoded via `man` -> /opt/homebrew/Cellar/toilet/0.3/share/figlet | |
# - dynamic: `ls $(realpath $(which toilet)"/../../share/figlet")` | |
# Linux: /usr/share/figlet | |
# render fonts using their own name | |
find "$1" -type f | | |
sort -V | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(() => { | |
const CURRENT_USER_NAME = document.querySelector('.dwSJ2e'); | |
const $messages = Array.from(document.querySelectorAll('.Ss4fHf')); | |
const messages = $messages | |
.map($element => { | |
const time = $element.querySelector('.MuzmKe').innerText; | |
const author = $element.querySelector('.poVWob').innerText; | |
const lines = Array.from($element.querySelectorAll('.ptNLrf')).map(x => x.innerText); | |
// duplicate fields rapid successive messages for easier formatting | |
return lines.map(message => ({ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Smartsheet - Enable text selection and context menu clicks | |
// @version 1.1 | |
// @author lamchau | |
// @description Enables text selection and context menu clicks from published Smartsheets | |
// @updateUrl https://go/smartsheet-hack | |
// @match https://app.smartsheet.com/b/publish?* | |
// @icon https://www.google.com/s2/favicons?domain=smartsheet.com | |
// @run-at document-end | |
// ==/UserScript== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from typing import Union, Callable | |
import types | |
# 3p libraries | |
from dateutil.relativedelta import relativedelta # type: ignore | |
from visidata import Sheet, Column, SettableColumn, asyncthread, vd # type: ignore | |
import pandas as pd # type: ignore | |
def get_frequency(column: Column, |
NewerOlder