How to set up multiple accounts with Mutt E-mail Client
Thanks to this article by Christoph Berg
Directories and files
~/| #!/bin/bash | |
| # Copyright © 2021 Chirag Bhatia | |
| # Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | |
| # The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | |
| # THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOF |
| #!/usr/bin/env bash | |
| # Created by Hugo Ferreira <[email protected]> on isoD | |
| # Licensed under the MIT License: https://opensource.org/licenses/MIT | |
| set -u # treat unset variables as errors | |
| readonly BASEDIR=$(cd "$(dirname "$0")" && pwd) # where the script is located | |
| readonly CALLDIR=$(pwd) # where it was called from | |
| readonly SUCCESS=0 # exit status of bash commands |
| #!/bin/sh | |
| # i3-get-window-criteria - Get criteria for use with i3 config commands | |
| # To use, run this script, then click on a window. | |
| # Output is in the format: [<name>=<value> <name>=<value> ...] | |
| # Known problem: when WM_NAME is used as fallback for the 'title="<string>"' criterion, | |
| # quotes in "<string>" are not escaped properly. This is a problem with the output of `xprop`, | |
| # reported upstream: https://bugs.freedesktop.org/show_bug.cgi?id=66807 |
Thanks to this article by Christoph Berg
Directories and files
~/Ad-free time!, UnoTelly etc. services provide a nice way to unblock regions for Netflix and others using their custom DNS servers.
But I don't want to direct all my DNS traffic to them and I'm too lazy to manually configure all my devices (phones, tablets, media center boxes etc.). So here's how to transparently unblock Netflix for all your devices using the [Asuswrt Merlin][merlin] firmware. It's a custom router firmware which can be used on the Asus RT-N66U router for example.
Enable JFFS partition and SSH login from http://<ROUTER-IP>/Advanced_System_Content.asp
Previous versions used homebrew to install the various versions. As suggested in the comments, it's better to use pyenv instead. If you are looking for the previous version of this document, see the revision history.
$ brew update
$ brew install pyenv
$ pyenv install 3.5.0
$ pyenv install 3.4.3
$ pyenv install 3.3.6
$ pyenv install 3.2.6
$ pyenv install 2.7.10
$ pyenv install 2.6.9
by xero updated 10.29.24
(Serial port or com port? - Serial ports are often refered as COM ports. It is the same to be short. You can read abut it in the Wiki article )
| ### PowerShell template profile | |
| ### Version 1.03 - Tim Sneath <[email protected]> | |
| ### From https://gist.github.com/timsneath/19867b12eee7fd5af2ba | |
| ### | |
| ### This file should be stored in $PROFILE.CurrentUserAllHosts | |
| ### If $PROFILE.CurrentUserAllHosts doesn't exist, you can make one with the following: | |
| ### PS> New-Item $PROFILE.CurrentUserAllHosts -ItemType File -Force | |
| ### This will create the file and the containing subdirectory if it doesn't already | |
| ### | |
| ### As a reminder, to enable unsigned script execution of local scripts on client Windows, |