This is a summary of a Clubhouse conversation between several people, but predominantly @shl from Gumroad and @jasonfried from Basecamp.
https://twitter.com/shl/status/1359288227270516745?s=20
The conversation started as a debate.
| import fetch from 'isomorphic-fetch'; | |
| expost const get = async (url, headers = {}) => fetch(url, { | |
| method: 'GET', | |
| headers: { | |
| Accept: 'application/json', | |
| ...headers, | |
| }, | |
| }); |
| [ | |
| { "title": "Andorra", "value": "AD" }, | |
| { "title": "United Arab Emirates", "value": "AE" }, | |
| { "title": "Afghanistan", "value": "AF" }, | |
| { "title": "Antigua and Barbuda", "value": "AG" }, | |
| { "title": "Anguilla", "value": "AI" }, | |
| { "title": "Albania", "value": "AL" }, | |
| { "title": "Armenia", "value": "AM" }, | |
| { "title": "Angola", "value": "AO" }, | |
| { "title": "Antarctica", "value": "AQ" }, |
This is a summary of a Clubhouse conversation between several people, but predominantly @shl from Gumroad and @jasonfried from Basecamp.
https://twitter.com/shl/status/1359288227270516745?s=20
The conversation started as a debate.
Disable EOL uninstall warnings:
Disable auto updates when installing
Add "EOLUninstallDisable=1" to mmc.cfg in C:\WINDOWS\system32\Macromed\Flash
(C:\Windows\SysWOW64\Macromed\Flash on 64-bit)
---
Defuse flash player time bomb:
| // npm install @uttori/audio-wave | |
| // UTTORI_AUDIOWAV_DEBUG=1 DEBUG=AudioWAV node wav-checker.js | |
| const path = require('path'); | |
| const { readdir, readFile } = require('fs').promises; | |
| const { AudioWAV } = require('@uttori/audio-wave'); | |
| async function* getFiles(dir) { | |
| const dirents = await readdir(dir, { withFileTypes: true }); | |
| for (const dirent of dirents) { | |
| const res = path.resolve(dir, dirent.name); |
| const fs = require('fs'); | |
| const MarkdownItRenderer = require('@uttori/plugin-renderer-markdown-it'); | |
| const config = { | |
| // Uttori Specific Configuration | |
| uttori: { | |
| // Prefix for relative URLs, useful when the Express app is not at root. | |
| baseUrl: '', | |
| // Good Noodle List, f a domain is not in this list, it is set to 'external nofollow noreferrer'. |
| #!/bin/bash | |
| curl -s https://packagecloud.io/install/repositories/kintaro/pcb/script.deb.sh | sudo bash | |
| sudo apt-get -y install kintarosnes |
| # Compress WAV Files with FLAC | |
| find . -name "*.wav" -exec flac --best -A "tukey(0.5)" -A flattop --exhaustive-model-search --replay-gain --verify --delete-input-file {} \; | |
| # Re-Encode FLAC Files | |
| find . -name "*.flac" -exec flac --best -A "tukey(0.5)" -A flattop --exhaustive-model-search --replay-gain --force --verify {} \; | |
| # Convert SHN to FLAC | |
| for file in ./*.shn; do | |
| ffmpeg -i "$file" "$file.flac" | |
| done |
| [user] | |
| name = Matthew Callis | |
| email = | |
| signingkey = XXXXXXXXXXXXXXXX | |
| [github] | |
| user = MatthewCallis | |
| [push] | |
| default = current | |
| [pull] | |
| default = current |