This guide shows per example the installation of the Java SDK versions 8
(LTS, already installed) and 11
(LTS).
apt --names-only search "openjdk-.*jre$"
> Sorting... Done
{ | |
"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"] |
# 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 |
C:\Program Files\boost_1_59_0
.C:\Program Files\boost-build
.C:\Program Files\boost_1_59_0\build
.C:\Program Files\boost
./* | |
##Device = Desktops | |
##Screen = 1281px to higher resolution desktops | |
*/ | |
@media (min-width: 1281px) { | |
/* CSS */ | |
Information used:
So, thanks to authors for ideas and detailed tutorials how to get it working.
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); |
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 |
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 |