For generic skin emulator with default apis (without google apis):
-
List All System Images Available for Download:
sdkmanager --list | grep system-images -
Download Image:
sdkmanager --install "system-images;android-29;default;x86"
| // ==UserScript== | |
| // @name Use Markdown, sometimes, in your HTML. | |
| // @author Paul Irish <http://paulirish.com/> | |
| // @link http://git.io/data-markdown | |
| // @match * | |
| // ==/UserScript== | |
| // If you're not using this as a userscript just delete from this line up. It's cool, homey. |
| '/Applications/Google Chrome.app/Contents/MacOS/Google Chrome' --disable-xss-auditor --enable-devtools-experiments --disable-features=enable-automatic-password-saving |
| #!/bin/bash | |
| # Script for installing tmux on systems where you don't have root access. | |
| # tmux will be installed in $HOME/local/bin. | |
| # It's assumed that wget and a C/C++ compiler are installed. | |
| # exit on error | |
| set -e | |
| TMUX_VERSION=1.9 |
| #!/bin/fish | |
| # | |
| # Copyright (C) 2022 Jonathan Müller | |
| # SPDX-License-Identifier: BSL-1.0 | |
| # | |
| # Usage: pdfcat input1 input2 ... inputN output | |
| function print_usage | |
| echo "Usage:" (basename (status -f)) "input1 input2 ... inputN output" | |
| end |
| #!/bin/bash | |
| sourcedir="$HOME/.local/src/" | |
| mkdir "$sourcedir" | |
| export CFLAGS='-march=native -O3 -pipe -fstack-protector -Wall' | |
| export CXXFLAGS='-march=native -O3 -pipe -fstack-protector -Wall' | |
| function install-dependencies() { | |
| # Install build tools and Mesa VDPAU support. | |
| sudo apt-fast install -y cmake yasm autoconf build-essential mesa-vdpau-drivers \ | |
| libvdpau-va-gl1 |
| https://dev.to/manishfoodtechs/live-broadcast-on-html-page-with-html5-video-injust-30-minutes-3pp6 | |
| =========================================================================================== | |
| # 1: Install Nginx + RTMP module. | |
| sudo apt install -y nginx | |
| sudo apt install -y libnginx-mod-rtmp | |
| # 2: Installing required & additional software. |
| == Adb Server | |
| adb kill-server | |
| adb start-server | |
| == Adb Reboot | |
| adb reboot | |
| adb reboot recovery | |
| adb reboot-bootloader | |
| == Shell |
| # Source: https://gist.github.com/48f44d3974db698d3127f52b6e7cd0d3 | |
| ########################################################### | |
| # Automation of Everything # | |
| # How To Combine Argo Events, Workflows, CD, and Rollouts # | |
| # https://youtu.be/XNXJtxkUKeY # | |
| ########################################################### | |
| # Requirements: | |
| # - k8s v1.19+ cluster with nginx Ingress |
Magic words:
psql -U postgresSome interesting flags (to see all, use -h or --help depending on your psql version):
-E: will describe the underlaying queries of the \ commands (cool for learning!)-l: psql will list all databases and then exit (useful if the user you connect with doesn't has a default database, like at AWS RDS)