How to set up multiple accounts with Mutt E-mail Client
Thanks to this article by Christoph Berg
Directories and files
~/| package main | |
| import ( | |
| "fmt" | |
| "math/rand" | |
| "os" | |
| "sync" | |
| "time" | |
| ) |
| SHELL := /bin/bash | |
| REV := $(shell git rev-parse HEAD) | |
| CHANGES := $(shell test -n "$$(git status --porcelain)" && echo '+CHANGES' || true) | |
| TARGET := packer-provisioner-itamae-local | |
| VERSION := $(shell cat VERSION) | |
| OS := darwin freebsd linux openbsd | |
| ARCH := 386 amd64 |
| /* | |
| Before using this tasks.json you may like to consider trying one of the following VS Code extensions: | |
| rust-analyzer | |
| Marketplace: https://marketplace.visualstudio.com/items?itemName=matklad.rust-analyzer | |
| Source: https://github.com/rust-analyzer/rust-analyzer | |
| rls | |
| Marketplace: https://marketplace.visualstudio.com/items?itemName=rust-lang.rust | |
| Source: https://github.com/rust-lang/rls-vscode |
| # The file is now part of OpenWrt repo: | |
| # | |
| # https://git.openwrt.org/?p=openwrt/openwrt.git;a=blob;f=scripts/qemustart;hb=HEAD | |
| # | |
| # |
Thanks to this article by Christoph Berg
Directories and files
~/| // EDIT: 2013/10/20 | |
| // google has updated its kwt UI, this script doesn't work any more! | |
| // may be I will update this script when I have time to investigate their new Interface. | |
| // requires | |
| var utils = require('utils'); | |
| var casper = require('casper').create() | |
| var casper = require('casper').create({ | |
| verbose: true, |
| #!/usr/bin/perl | |
| # | |
| # Brad's el-ghetto do-our-storage-stacks-lie?-script | |
| # | |
| sub usage { | |
| die <<'END'; | |
| Usage: diskchecker.pl -s <server[:port]> verify <file> | |
| diskchecker.pl -s <server[:port]> create <file> <size_in_MB> | |
| diskchecker.pl -l [port] |
| ### INSTALLATION NOTES ### | |
| # 1. Install Homebrew (https://github.com/mxcl/homebrew) | |
| # 2. brew install zsh | |
| # 3. Install OhMyZsh (https://github.com/robbyrussell/oh-my-zsh) | |
| # 4. brew install reattach-to-user-namespace --wrap-pbcopy-pbpaste && brew link reattach-to-user-namespace | |
| # 5. Install iTerm2 | |
| # 6. In iTerm2 preferences for your profile set: | |
| # Character Encoding: Unicode (UTF-8) | |
| # Report Terminal Type: xterm-256color | |
| # 7. Put itunesartist and itunestrack into PATH |
| get Android source code: http://source.android.com/source/downloading.html | |
| $ cd /path/to/android-src | |
| $ cd system/core/libmincrypt/ | |
| $ gcc -c *.c -I../include | |
| $ ar rcs libmincrypt.a *.o | |
| $ cd ../mkbootimg | |
| $ gcc mkbootimg.c -o mkbootimg -I../include ../libmincrypt/libmincrypt.a | |
| $ cd ../cpio | |
| $ gcc mkbootfs.c -o mkbootfs -I../include |
| # Automaticlly install pptpd on Amazon EC2 Amazon Linux | |
| # | |
| # Ripped from http://blog.diahosting.com/linux-tutorial/pptpd/ | |
| # pptpd source rpm packing by it's authors | |
| # | |
| # WARNING: | |
| # first ms-dns setting to 172.16.0.23, 172.16.0.23 was showing on my | |
| # /etc/resolv.conf, I'm not sure this is the same on all Amazon AWS zones. | |
| # | |
| # You need to adjust your "Security Groups" which you are using too. |