- CoenraadS.bracket-pair-colorizer
- DavidAnson.vscode-markdownlint
- DeepScan.vscode-deepscan
- Dennitz.vscode-generact
- EditorConfig.EditorConfig
- GregorBiswanger.package-watcher
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 | |
echo 'update brew' | |
brew update | |
echo 'upgrade brew' | |
brew upgrade |
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
// This is how I used it: | |
// $ node bash-history-to-zsh-history.js >> ~/.zsh_history | |
var fs = require("fs"); | |
var a = fs.readFileSync(".bash_history"); | |
var time = Date.now(); | |
a.toString().split("\n").forEach(function(line){ | |
console.log(": "+ (time++) + ":0;"+line); | |
}); |
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 sh | |
# Download lists, unpack and filter, write to gzipped file | |
curl -s https://www.iblocklist.com/lists.php \ | |
| grep -A 2 Bluetack \ | |
| sed -n "s/.*value='\(http:.*\)'.*/\1/p" \ | |
| xargs wget -O - \ | |
| gunzip \ | |
| egrep -v '^#' \ | |
| gzip - > bt_blocklist.gz |
NewerOlder