- https://en.wikipedia.org/wiki/1997_Asian_financial_crisis
- https://en.wikipedia.org/wiki/2002%E2%80%932004_SARS_outbreak#Timeline
- https://en.wikipedia.org/wiki/2009_flu_pandemic
- https://en.wikipedia.org/wiki/2011_Singaporean_general_election
- https://en.wikipedia.org/wiki/68%E2%80%9395%E2%80%9399.7_rule
- https://en.wikipedia.org/wiki/9rules
- https://en.wikipedia.org/wiki/Aaron_Swartz
- https://en.wikipedia.org/wiki/Ad_hominem
- https://en.wikipedia.org/wiki/Adam_Grant
- https://en.wikipedia.org/wiki/All_models_are_wrong
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
* Floorp advantages over Chrome | |
** Padding isn't crazy in the bookmarks and menus | |
** Tree Style Tab | |
** Ctrl-Tab in MRU order | |
** Doesn't plan to remove Manifest V2 and break uBlock Origin | |
** Can use address bar and bookmarks while in fullscreen | |
** If tab is open, pressing Enter on suggestion switches to tab; don't need to Tab over to the 'switch to tab' suggestion as in Chrome | |
** Zooming on an image (loaded in its own tab) doesn't change the zoom level for the domain | |
** Supports JPEG XL | |
** Can alt-double and triple click inside links to select text and not download the link target |
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
/************************************************************************************************************************************************************************************************************************************************************* | |
"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; * | |
} * |
- 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
We can't make this file beautiful and searchable because it's too large.
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
13911.1 swader | |
13911.1 sorpaas | |
13911.1 s1na | |
13911.1 rjl493456442 | |
13911.1 qd-qd | |
13911.1 protolambda | |
13911.1 paulrberg | |
13911.1 noahzinsmeister | |
13911.1 neurone | |
13911.1 moodysalem |
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
for (const [k, v] of Object.entries(JSON.parse('{"sorted_column_torrentFilesTableDiv":"name","column_uploaded_visible_torrentsTableDiv":"1","column_save_path_visible_torrentsTableDiv":"1","column_last_activity_visible_torrentsTableDiv":"1","column_added_on_width_torrentsTableDiv":"143","column_total_size_width_torrentsTableDiv":"66","column_num_seeds_width_torrentsTableDiv":"54","column_tracker_width_torrentsTableDiv":"228","selected_filter":"all","column_save_path_width_torrentsTableDiv":"590","column_port_width_torrentPeersTableDiv":"57","reverse_sort_torrentFilesTableDiv":"0","column_relevance_width_torrentPeersTableDiv":"73","column_size_width_torrentsTableDiv":"68","reverse_sort_torrentsTableDiv":"1","column_num_leechs_width_torrentsTableDiv":"57","sorted_column_torrentsTableDiv":"upspeed","columns_order_torrentsTableDiv":"priority,state_icon,name,size,total_size,progress,status,num_seeds,num_leechs,dlspeed,upspeed,uploaded,eta,ratio,added_on,last_activity,category,tags,completion_on,tracker,save_path,dl |
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
# dig -t TXT google.com | |
; <<>> DiG 9.18.24 <<>> -t TXT google.com | |
;; global options: +cmd | |
;; Got answer: | |
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 13779 | |
;; flags: qr rd ra; QUERY: 1, ANSWER: 11, AUTHORITY: 0, ADDITIONAL: 1 | |
;; OPT PSEUDOSECTION: | |
; EDNS: version: 0, flags:; udp: 1232 |
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 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="..." |
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
[url "git@github.com:"] | |
# GitHub resets slower connections while cloning over HTTPS; only SSH is reliable now. | |
insteadOf = "https://github.com/" | |
[core] | |
# Don't hang forever when we `git fetch` a repo that's been deleted | |
askPass = /run/current-system/sw/bin/true | |
pager = less --tabs=4 -RFX | |
[log] |
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
#!/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' |
NewerOlder