I have created an easier, well documented version of this in my blog at https://blog.wyraz.de/linux/deploying-rancher-server-standalone-behind-traefik-with-lets-encrypt-for-both/
adb
is the Android CLI tool with which you can interact with your android device, from your PC
You must enable developer mode (tap 7 times on the build version in parameters) and install adb on your PC.
To get the list of your installed applications:
I hereby claim:
- I am mafiainc on github.
- I am chuchelo (https://keybase.io/chuchelo) on keybase.
- I have a public key ASAE0C0Jj6EtAWfvVZLk3XY0D5cm5BBx-OunRqHCRMc8lwo
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From d3fc6ddaea8b5ee5285b4745fafbf84588338203 Mon Sep 17 00:00:00 2001 | |
From: Martin Dimitrov <[email protected]> | |
Date: Tue, 28 Nov 2017 15:21:59 +0200 | |
Subject: [PATCH] Fix possible naming collision for _STRINGS_H | |
* Fix build errors on gcc (GCC) 7.2.0 | |
--- | |
src/uqm/comm/arilou/strings.h | 6 +++--- | |
src/uqm/comm/blackur/strings.h | 6 +++--- | |
src/uqm/comm/chmmr/strings.h | 6 +++--- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ yaourt -S uqm-hd | |
==> Downloading uqm-hd PKGBUILD from AUR... | |
x .SRCINFO | |
x PKGBUILD | |
x config.state | |
x uqm-hd | |
x uqm-hd.desktop | |
x uqm-hd.png | |
asynec commented on 2017-09-18 21:21 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<stdio.h> | |
#include<pthread.h> | |
#include<math.h> | |
#include<stdlib.h> | |
#include<unistd.h> | |
#define NUM_THREADS 8 | |
typedef struct { | |
int rank; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Installs tarsnap client on Debian and Ubuntu | |
# | |
# You'll need to setup an account at | |
# http://www.tarsnap.com | |
# and load it with some funds | |
# | |
# Make sure you run this as root | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[[ "$(ps -o stat= -p $PPID)" = "Ss" ]] && echo "Executed in foreground" || echo "Executed in background" | |
# credit : https://stackoverflow.com/questions/4261876/check-if-bash-script-was-invoked-from-a-shell-or-another-script-application |