- https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-ssh
- https://marketplace.visualstudio.com/items?itemName=EditorConfig.EditorConfig will read
.editorconfig
files so that your per-project indentation settings are respected - https://marketplace.visualstudio.com/items?itemName=rebornix.toggle will let you toggle settings (or several) with a keystroke
- https://marketplace.visualstudio.com/items?itemName=tamasfe.even-better-toml
- https://marketplace.visualstudio.com/items?itemName=jamesmaj.easy-icons
- https://marketplace.visualstudio.com/items?itemName=earshinov.permute-lines will let you sort and uniq lines
- https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode
- https://marketplace.visualstudio.com/items?itemName=sysoev.vscode-open-in-github
/************************************************************************************************************************************************************************************************************************************************************* | |
"userChrome.css" is a custom CSS file that can be used to specify CSS style rules for Floorp's interface (NOT internal site) using "chrome" privileges. | |
For instance, if you want to hide the tab bar, you can use the following CSS rule: | |
************************************** | |
#TabsToolbar { * | |
display: none !important; * | |
} * |
- Call 1-800-829-1040
- Press 1 for English (or other language as desired)
- Press 2 for personal tax
- Press 1 for form / tax history
- Press 3 for other
- Press 2 for other
- Ignore 2 SSN prompts till you get secret other menu
- Press 2 for personal tax
- Press 3 for other
- Wait for agent!
#!/usr/bin/env zsh | |
# We use zsh instead of bash so that decimals work in $(( )) | |
set -eu -o pipefail | |
ha="http://192.168.10.2:8123" | |
# Expires 2034 | |
token="..." |
#!/bin/bash | |
# Colors | |
RED='\033[0;31m' | |
GREEN='\033[0;32m' | |
NO_COLOR='\033[0m' | |
BLUE='\033[0;34m' | |
YELLOW='\033[0;33m' | |
NO_COLOR='\033[0m' |
Things I might read in 2024.
Now extended into 2025.
- CSS for JavaScript Developers/ just the things I don't know and which would be used frequently
- Jamie Brandon - Reflections of a decade of coding
- John Ousterhout - A Philosophy of Software Design
- Will Larson - the starred posts on https://lethain.com/
- https://notes.andymatuschak.org/
- The Tailwind documentation (even before updated for Tailwind 4 - see changes)
It has been interesting to witness the rise of a kind of perma-ignorant peanut gallery both on Twitter and Hacker News - a new class of user who seems to only weakly (meaningfully) interact with the legacy users who desired to not look like fools all the time. They do not appear to read or look things up when confused, exuding a desire for spoonfeeding: "but you're wrong because you haven't explained this to me". Prior to 2023 there would of course be a lot of ignorant posting, but it was less likely to go unchecked. Some hypotheses as to why this might be happening:
- a more universal demand for profilicity, in text form, even from people who are not any good at it
- a decreased demand for profilicity from the old posters who have mostly exhausted its possibilities
- increased information hoarding in the post-ZIRP economy; reduced desire to correct the ignorance of apparent outsiders
- reduced resources to moderate posts in the post-ZIRP e
Month | IRC messages logged | IRC messages logged with "twitter.com/" | Percent mentioning Twitter | |
---|---|---|---|---|
2015-02 | 17195404 | 8917 | 0.052% | |
2015-03 | 17749799 | 11017 | 0.062% | |
2015-04 | 16134253 | 15596 | 0.097% | |
2015-05 | 15123528 | 10197 | 0.067% | |
2015-06 | 15933871 | 12762 | 0.080% | |
2015-07 | 16113608 | 10884 | 0.068% | |
2015-08 | 16010748 | 7457 | 0.047% | |
2015-09 | 14542928 | 8772 | 0.060% | |
2015-10 | 14512795 | 9395 | 0.065% |
html { | |
background-color: | |
var(--LIGHT, #eee) | |
var(--DARK, #111); | |
color: | |
var(--LIGHT, #000) | |
var(--DARK, #ccc); | |
} | |
html { |
Someone made the product worse, but not so much that it has become a priority for me to do something about it.
The corollary is that if you make something a little worse, people won't necessarily be moved to expend their time and social capital to tell you about it. You largely have to critique your own work and notice your own little regressions.