How to set up multiple accounts with Mutt E-mail Client
Thanks to this article by Christoph Berg
Directories and files
~/| #!/bin/sh | |
| if [ "root" != "$(whoami)" ]; then | |
| echo "You must run this command as root" 1>&2 | |
| exit 1 | |
| fi | |
| set -x | |
| # Download and extract | |
| if [ ! -z "${1}" ]; then |
Thanks to this article by Christoph Berg
Directories and files
~/| git branch -m old_branch new_branch # Rename branch locally | |
| git push origin :old_branch # Delete the old branch | |
| git push --set-upstream origin new_branch # Push the new branch, set local branch to track the new remote |
| var app = angular.module('myApp'); | |
| app.run(['$q', '$window', function($q, $window) { | |
| $window.Promise = function(executor) { | |
| return $q(executor); | |
| }; | |
| $window.Promise.all = $q.all.bind($q); | |
| $window.Promise.reject = $q.reject.bind($q); | |
| $window.Promise.resolve = $q.when.bind($q); |
Information used:
So, thanks to authors for ideas and detailed tutorials how to get it working.
| /* | |
| ##Device = Desktops | |
| ##Screen = 1281px to higher resolution desktops | |
| */ | |
| @media (min-width: 1281px) { | |
| /* CSS */ | |
C:\Program Files\boost_1_59_0.C:\Program Files\boost-build.C:\Program Files\boost_1_59_0\build.C:\Program Files\boost.| # Flutter (https://flutter.io) Developement Environment for Linux | |
| # =============================================================== | |
| # | |
| # This environment passes all Linux Flutter Doctor checks and is sufficient | |
| # for building Android applications and running Flutter tests. | |
| # | |
| # To build iOS applications, a Mac development environment is necessary. | |
| # | |
| FROM debian:stretch |
| { | |
| "terminal.integrated.profiles.windows": { | |
| "PowerShell": { "source": "PowerShell", "icon": "terminal-powershell" }, | |
| "GitBash": { | |
| "path": "${env:windir}\\System32\\cmd.exe", | |
| "args": ["/k","C:\\Tools\\cmder\\vendor\\git-for-windows\\bin\\bash.exe"] | |
| }, | |
| "Cmder": { | |
| "path": "${env:windir}\\System32\\cmd.exe", | |
| "args": ["/k", "C:\\Tools\\cmder\\vendor\\bin\\vscode_init.cmd"] |