Keybase proof
I hereby claim:
- I am salamandar on github.
- I am testdokan (https://keybase.io/testdokan) on keybase.
- I have a public key ASDSJccNDqq6xX-6KFH-U_-si22H2FUXjQmOsQjKhA6QDQo
To claim this, I am signing this object:
#!/bin/bash | |
ram_usage() { | |
free -m | grep Mem | awk '{print $3}' | |
} | |
base=$(ram_usage) | |
max=0 | |
while true; do |
#!/usr/bin/env python3 | |
import re | |
import json | |
import yaml | |
import psycopg2 | |
def connect_db(): | |
hostname = "localhost" |
#!/usr/bin/env python3 | |
import sys | |
import os | |
import signal | |
import threading | |
import subprocess | |
from typing import Optional | |
from pathlib import Path |
# This file expects LOCAL_PREFIX to be an absolute path to the prefix (like /usr or $HOME/.local) | |
export PATH="${LOCAL_PREFIX}/bin:${PATH}" | |
# Used to detect the build dependencies | |
export PKG_CONFIG_PATH="${LOCAL_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" | |
export PKG_CONFIG_PATH="${LOCAL_PREFIX}/lib64/pkgconfig:${PKG_CONFIG_PATH}" | |
export PKG_CONFIG_PATH="${LOCAL_PREFIX}/share/pkgconfig:${PKG_CONFIG_PATH}" | |
export PKG_CONFIG_PATH="${LOCAL_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" |
# | |
# Automatically generated file; DO NOT EDIT. | |
# crosstool-NG aca85cb Configuration | |
# | |
CT_CONFIGURE_has_static_link=y | |
CT_CONFIGURE_has_wget=y | |
CT_CONFIGURE_has_curl=y | |
CT_CONFIGURE_has_stat_flavor_GNU=y | |
CT_CONFIGURE_has_make_3_81_or_newer=y | |
CT_CONFIGURE_has_libtool_2_4_or_newer=y |
#!/bin/bash | |
# The assert function for Bash | |
function assert { | |
local rc | |
local message="$1" | |
shift | |
"$@" 2>&1 > /dev/null | |
rc=$? | |
[ $rc -eq 0 ] && return 0 | |
set $(caller) |
#!/usr/bin/env python3 | |
# ---------------------------------------------------------------------------- | |
# "THE BEER-WARE LICENSE" (Revision 42): | |
# Salamandar <felix@piedallu.me> wrote this file. As long as you retain this notice you | |
# can do whatever you want with this stuff. If we meet some day, and you think | |
# this stuff is worth it, you can buy me a beer in return. Félix Piédallu | |
# ---------------------------------------------------------------------------- | |
import sys |
I hereby claim:
To claim this, I am signing this object:
#!/bin/env python3 | |
import requests | |
import json | |
import os | |
# user_path='users/salamandar' | |
user_path = 'orgs/phenixrobotik' | |
clone_dir = os.path.dirname(os.path.realpath(__file__)) | |
use_ssh = True |