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/bash | |
# shellcheck disable=SC2181,SC2002 | |
#https://lists.linuxcontainers.org/pipermail/lxc-users/2013-December/005998.html | |
#https://stackoverflow.com/questions/20010199/how-to-determine-if-a-process-runs-inside-lxc-docker | |
if [[ "$EUID" -eq 0 ]] | |
then | |
container=$(cat /proc/1/environ | tr '\0' '\n' | grep ^container=|cut -d '=' -f 2) | |
if [ "$?" -ne 0 ] | |
then |
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/bash | |
###################################################################### | |
# This script sets up gnu screen and conky in a way to provide a nice | |
# footer line complete with tabs for the open windows and some | |
# information about the systems health | |
# (https://elbosso.github.io/gnu_screen_sitzung_wenig_aufgepeppt.html#content) | |
# | |
# If run as sudo (or root) it tries to install gnu screen and conky | |
# (needed) and joe (my own preference) before writing a customized | |
# version of .screenrc and a customized version of a conky config. |
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/bash | |
source config_bootstrap_gui_container.sh | |
# the file config_bootstrap_gui_container.sh should reside in the directory this script is in | |
# it should contain the statements for setting the following environment variables: | |
# CONTAINER_NAME=<container name for new container to be created> | |
# CONTAINER_USER=<user name for main user inside the new container - has sudoer rights! | |
# CONTAINER_NAMESERVER=<name server address - just leave it out if you dont need a custom one - but remember to also remove the customization of /etc/resolv.conf further down...> | |
# or you could just uncomment the above lines and adjust them to your liking and comment out the source statement | |
lxc-create -t download -n "$CONTAINER_NAME" -- -d ubuntu -r bionic -a amd64 | |
# joe .local/share/lxc/"$CONTAINER_NAME"/config |
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/bash | |
#https://stackoverflow.com/questions/296536/how-to-urlencode-data-for-curl-command | |
rawurlencode() { | |
local string="${1}" | |
local strlen=${#string} | |
local encoded="" | |
local pos c o | |
for (( pos=0 ; pos<strlen ; pos++ )); do | |
c=${string:$pos:1} |
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 anybadge import Badge | |
from urlparse import parse_qs | |
import datetime | |
import gitlab | |
def index(req): | |
#change the next two lines to accomodate your installation | |
url='http://<gitlab.host>' | |
token='xxxx-xxxx-xxxxxxxxxx' | |
args=req.args |
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 flask import Flask | |
from flask import make_response | |
import requests | |
from anybadge import Badge | |
from flask import request | |
app = Flask(__name__) | |
@app.route("/open/<int:projid>") | |
def openIssues(projid): |
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 anybadge import Badge | |
from urlparse import parse_qs | |
import requests | |
def index(req): | |
args=req.args | |
lbl='n/a' | |
action='closedissues' | |
projid=None | |
if args != None: |
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 anybadge import Badge | |
from urlparse import parse_qs | |
from subprocess import Popen,PIPE,STDOUT,call | |
def index(req): | |
args=req.args | |
lbl='n/a' | |
action='closedissues' | |
projid=None | |
if args != None: |
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 anybadge import Badge | |
import gitlab | |
from urlparse import parse_qs | |
def index(req): | |
#change the next two lines to accomodate your installation | |
url='http://myhost' | |
token='xxxx-xxxx-xxxxxxxxxx' | |
args=req.args | |
lbl='n/a' |
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
/* | |
Copyright (c) 2012-2018. | |
Juergen Key. Alle Rechte vorbehalten. | |
Weiterverbreitung und Verwendung in nichtkompilierter oder kompilierter Form, | |
mit oder ohne Veraenderung, sind unter den folgenden Bedingungen zulaessig: | |
1. Weiterverbreitete nichtkompilierte Exemplare muessen das obige Copyright, | |
die Liste der Bedingungen und den folgenden Haftungsausschluss im Quelltext |