Skip to content

Instantly share code, notes, and snippets.

View akelch's full-sized avatar
⛏️

Andreas H. Kelch akelch

⛏️
View GitHub Profile
@akelch
akelch / boneGenV3.py
Last active December 10, 2021 10:51
BoneGen
class xxRel(RelSkel):
name =stringBone(descr="FFFFFFFFFF", required = True)
nameMult = stringBone(descr="gggg", multiple = True, required = True)
spac = spatialBone(descr="GPS POINT",indexed=False, boundsLat=(30.0, 70.0), boundsLng=(-20.0, 50.0), gridDimensions=(1000.0, 1000.0))
class exampleSkel(Skeleton):
def __new__(cls, *args, **kwargs):
bones = [ baseBone, booleanBone, colorBone, credentialBone,numericBone,
dateBone, emailBone, fileBone, passwordBone,
@akelch
akelch / Manjaro 21.1.6 ViUR - Setup
Last active February 6, 2023 15:35
Manjaro 21.1.6 ViUR - Setup
-----------------------------------------------------------------------------------------------------------------
Preconfig
-----------------------------------------------------------------------------------------------------------------
sudo pacman -Syu
sudo pacman -S base-devel
sudo pacman -S git
sudo pacman -S yay
-----------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------
Python 3
-----------------------------------------------------------------------------------------------------------------
open a Terminal and call python3. Follow the install instruction
-----------------------------------------------------------------------------------------------------------------
brew
-----------------------------------------------------------------------------------------------------------------
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
@akelch
akelch / Ubuntu2004 Setup.txt
Last active January 30, 2023 16:06
Ubuntu 20.04 ViUR - Setup
We use ZSH. If you not use ZSH replace all .zshrc with .bashrc
-----------------------------------------------------------------------------------------------------------------
Python 3
-----------------------------------------------------------------------------------------------------------------
cd ~
sudo apt-get install python3-pip
-----------------------------------------------------------------------------------------------------------------
pipenv