All packages, except for Tini have been added to termux-root. To install them, simply pkg install root-repo && pkg install docker
. This will install the whole docker suite, left only Tini to be compiled manually.
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
# ----------------------------------------------------------------- | |
# .gitignore | |
# Bare Minimum Git | |
# https://salferrarello.com/starter-gitignore-file/ | |
# ver 20221125 | |
# | |
# From the root of your project run | |
# curl -O https://gist.githubusercontent.com/salcode/10017553/raw/.gitignore | |
# to download this file | |
# |
- Download SonarQube from SonarQube.org.
- Unpack the distribution.
- Download the C++ community plugin.
- Install the plugin using these instructions.
- Run
bin\windows-x86-64\StartSonar.bat
to start the server. - Wait for the server to output the message
SonarQube is up
. - Browse to
http://localhost:9000
and login withadmin
/admin
. - Create a project by following the built-in tutorial.
- Configure the scanner for C++
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
# Credit http://stackoverflow.com/a/2514279 | |
for branch in `git branch -r | grep -v HEAD`;do echo -e `git show --format="%ai %ar by %an" $branch | head -n 1` \\t$branch; done | sort -r |
I hereby claim:
- I am ictus4u on github.
- I am ictus4u (https://keybase.io/ictus4u) on keybase.
- I have a public key ASDIXhEJyRd_tkca1N30C9ij-zSYsNOEdBTohBY7Axstsgo
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
gpg -k --no-default-keyring --keyring /etc/apt/trusted.gpg | \ | |
grep '^ ' | \ | |
tr -d ' ' | \ | |
grep -Eo '.{8}$' | \ | |
while read fingerprint; do | |
((++i)); | |
gpg \ | |
--export \ | |
--output /tmp/${i}-archive-keyring.gpg \ | |
--yes \ |
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
KEYMAPOPTS="us us" | |
HOSTNAMEOPTS="-n alpine" | |
INTERFACESOPTS="auto lo | |
iface lo inet loopback | |
auto eth0 | |
iface eth0 inet dhcp | |
hostname alpine | |
" | |
TIMEZONEOPTS="-z UTC" |
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
#!/usr/bin/env python | |
from ipaddress import ip_network | |
from sys import argv | |
start = '0.0.0.0/0' | |
exclude = argv[1:] | |
result = [ip_network(start)] | |
for x in exclude: | |
n = ip_network(x) |
Selfhosting is the process of locally hosting and managing applications instead of renting from SaaS providers.
This is a list of Free Software network services and web applications which can be hosted locally. Non-Free software is listed on the Non-Free page.
See Contributing.
NewerOlder