Skip to content

Instantly share code, notes, and snippets.

View acdvorak's full-sized avatar

Andrew C. Dvorak acdvorak

View GitHub Profile
@acdvorak
acdvorak / gist:947148ef405818c0a17e0185f193815c
Last active August 8, 2018 00:34 — forked from dalethedeveloper/gist:1846552
Techniques for Anti-Aliasing @font-face on Windows

Techniques for Anti-Aliasing @font-face on Windows

It all started with an email from a client: Do these fonts look funky to you? The title is prickly.

The font in question was Port Lligat Sans from Google Web Fonts.

The "prickly" is aliasing caused by lack of hinting

@acdvorak
acdvorak / tmux-all-panes.sh
Last active August 6, 2021 17:09 — forked from yubink/inall.sh
tmux: run a command in all panes
#!/bin/bash
# Runs the specified command (provided by the first argument) in all tmux panes
# in every window. If an application is currently running in a given pane
# (e.g., vim), it is suspended and then resumed so the command can be run.
all-panes()
{
all-panes-bg_ "$1" &
}