Notes on Kanban for Redmine, Locust, KodExplorer, Dell e7240 Cmos Battery, ..

Categories: Notes

Clipboards

https://ditto-cp.sourceforge.io/

Carto

Unlock the power of spatial analysis The world’s leading Location Intelligence platform

https://carto.com/

Google Data Expolrer

https://www.google.com/publicdata/directory

OSS Kanban Borard

https://kanboard.org/

Scrum / Kanban for Redmine

https://www.scrumexpert.com/tools/scrum-and-kanban-plugins-for-redmine/

https://redmine.ociotec.com/attachments/536/scrum-v0.19.0.tar.gz

update docker readmine 3.3.10 + scrum plugin

sudo docker ps
sudo docker exec -it f831edadec99 bash
wget https://redmine.ociotec.com/attachments/536/scrum-v0.19.0.tar.gz 
chmod -R redmine:redmine *

restart

Dell e7240 Cmos Battery

https://www.youtube.com/watch?v=6acrpAjQ6IU

https://www.parts-people.com/blog/2014/11/19/dell-latitude-e7240-cmos-battery-removal-and-installation/

https://www.youtube.com/watch?v=zNGfT-b1Ejk

dell Notebook Self Diag

Power + d (Display Check)

Poser + Fn

Locust - An open source load testing tool.

Define user behaviour with Python code, and swarm your system with millions of simultaneous users.

https://locust.io/

2020 10 23 Locust Screenfile

k8s - Ingress Controllers

Kubernetes Documentation
Concepts
Services, Load Balancing, and Networking
Ingress Controllers 

https://kubernetes.io/docs/concepts/services-networking/ingress-controllers/

k8s Dashboard Web UI

Kubernetes Documentation
Tasks
Access Applications in a Cluster
Web UI (Dashboard)

https://kubernetes.io/docs/tasks/access-application-cluster/web-ui-dashboard/

Python Fire - Command Line Maker

Python Fire is a library for automatically generating command line interfaces (CLIs) from absolutely any Python object.

https://github.com/google/python-fire

Firefox Shortcuts

https://support.mozilla.org/en-US/kb/keyboard-shortcuts-perform-firefox-tasks-quickly

https://developer.mozilla.org/de/docs/Tools/Keyboard_shortcuts

2020 11 22 Data Vis List# logistik summit

https://www.youtube.com/watch?v=q8W5KnmbWBg&feature=youtu.be&t=1388

KodExplorer - Web

KodExplorer is a file manager for web. It is also a web code editor, which allows you to develop websites directly within the web browser.You can run KodExplorer either online or locally,on Linux, Windows or Mac based platforms. The only requirement is to have PHP 5 available.

https://github.com/kalcaddle/KodExplorer

Docker ELK on Raspi 4 2020-11-18

https://dev.to/rohansawant/installing-docker-and-docker-compose-on-the-raspberry-pi-in-5-simple-steps-3mgl

  1. Install Docker

    curl -sSL https://get.docker.com sh
  2. Add permission to Pi User to run Docker Commands

    sudo usermod -aG docker pi

Reboot here or run the next commands with a sudo

  1. Test Docker installation

    newgrp docker docker run hello-world

  2. IMPORTANT! Install proper dependencies

    sudo apt-get install -y libffi-dev libssl-dev

    sudo apt-get install -y python3 python3-pip

    sudo apt-get remove python-configparser

  3. Install Docker Compose

    sudo pip3 -v install docker-compose

— okay 2020-11-18 on raspi 4 raspberianos

remote docker Extension in Raspi with VS Code - Working

2020 11 18 Vs Code Docker Addon Raspi

ELK

https://logz.io/learn/complete-guide-elk-stack/#installing-elk

https://logz.io/blog/elk-stack-raspberry-pi/

Logstash Alternativen

https://sematext.com/blog/logstash-alternatives/

USB Drive Raspi

    sudo apt-get install usbmount 
    sudo reboot now 
    sudo lsblk -o UUID,NAME,FSTYPE,SIZE,MOUNTPOINT,LABEL,MODEL 
    sudo blkid
    lsblk
    sudo mount /dev/sda1 /media/usb 

git install raspi

    sudo apt-get install git 

Jenkins on Raspi

https://khushil.io/2020/04/23/jenkins-on-raspberry-pi-4/

https://j-grote.de/?p=108

https://developer-blog.net/raspberry-pi-als-jenkins-server/

http://192.168.2.46:8080/

https://www.vogella.com/tutorials/Jenkins/article.html

    docker pull jenkins/jenkins:lts 

    docker run -p 8080:8080 -p 50000:50000 -v [yourjenkinshome]:/var/jenkins_home jenkins/jenkins:lts

Dockerfile

    FROM jenkins/jenkins:lts
    # if we want to install via apt
    USER root
    RUN apt-get update && apt-get install -y maven
    # drop back to the regular jenkins user - good practice
    USER jenkins

    docker build -t jenkins-maven .

Prometheus on Raspi

https://devconnected.com/the-definitive-guide-to-prometheus-in-2019/

Pull Vs Push

http://192.168.2.46:9090/metrics

Prometheus node exporter

https://github.com/prometheus/node_exporter

    docker run -d \
      --net="host" \
      --pid="host" \
      -v "/:/host:ro,rslave" \
      quay.io/prometheus/node-exporter \
      --path.rootfs=/host

http://192.168.2.46:9100/metrics

Nginx Basic Status

http://192.168.2.46/basic_status

Written on September 27, 2020