All public logs
Jump to navigation
Jump to search
Combined display of all available logs of UVOO Tech Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
(newest | oldest) View (newer 50 | older 50 ) (20 | 50 | 100 | 250 | 500)- 22:14, 23 May 2021 Busk talk contribs created page Prometheus (Created page with "# To postgres - https://github.com/timescale/promscale/blob/master/docs/sql_schema.md")
- 15:48, 23 May 2021 Busk talk contribs created page Python yaml (Created page with "pip install pyyaml ``` import yaml with open("example.yaml", 'r') as stream: try: print(yaml.safe_load(stream)) except yaml.YAMLError as exc: print(e...")
- 01:54, 23 May 2021 Busk talk contribs created page Uninstall Windows App from Powershell (Created page with "# Uninstall App Using UninstallString ``` $search = 'myapp' $64bitnode = 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall' $32bitnode = 'HKLM:\SOFTWARE\Wow6432Node\M...")
- 17:44, 22 May 2021 Busk talk contribs created page Powershell Util Functions (Created page with "Tempdir ``` function New-TemporaryDirectory { $parent = [System.IO.Path]::GetTempPath() [string] $name = [System.Guid]::NewGuid() # $name = [System.IO.Path]::GetRandomFi...")
- 14:46, 22 May 2021 Busk talk contribs created page Zabbix Users Security (Created page with "https://blog.zabbix.com/user-roles-for-the-enterprise/12887/")
- 10:54, 22 May 2021 Busk talk contribs created page Zabbix Autoregistration (Created page with "https://bestmonitoringtools.com/install-zabbix-agent-on-windows-server-monitoring/ https://bestmonitoringtools.com/zabbix-agent-linux-install-on-ubuntu-centos-rhel-debian-ras...")
- 02:41, 22 May 2021 Busk talk contribs created page Java (Created page with "https://aws.amazon.com/corretto/")
- 02:11, 22 May 2021 Busk talk contribs created page Zabbix Agent Security (Created page with "https://www.zabbix.com/documentation/current/manual/appendix/items/win_permissions")
- 23:33, 21 May 2021 Busk talk contribs created page Microk8s RBAC (Created page with "https://microk8s.io/docs/multi-user")
- 12:52, 21 May 2021 Busk talk contribs created page Internet Peering (Created page with "https://docs.peeringdb.com/")
- 01:22, 21 May 2021 Busk talk contribs created page Zabbix Trigger Dependencies (Created page with "https://www.zabbix.com/documentation/current/manual/config/triggers/dependencies")
- 14:32, 20 May 2021 Busk talk contribs created page Lxd one-liners (Created page with "Delete all snaps ``` lxc info monitor-server | awk '{print $1}' | grep snap | xargs -i lxc delete monitor-server/{} ```")
- 13:09, 18 May 2021 Busk talk contribs moved page Logging group or user commands like sudo to Logging user or group commands like sudo on Linux without leaving a redirect
- 13:08, 18 May 2021 Busk talk contribs moved page Root or sudo command logging to Logging group or user commands like sudo without leaving a redirect
- 13:04, 18 May 2021 Busk talk contribs created page Root or sudo command logging (Created page with " /.bashrc ``` if [ -n "${BASH_VERSION}" ]; then trap "caller >/dev/null || \ printf '%s\\n' \"\$(date '+%Y-%m-%dT%H:%M:%S%z')\ \$(tty) \${BASH_COMMAND}\" 2>/dev/null >>~/...")
- 23:22, 17 May 2021 Busk talk contribs created page Microk8s Upgrade Nodes (Created page with "- https://microk8s.io/docs/upgrading On each node ``` sudo microk8s.kubectl get nodes ``` ``` sudo microk8s kubectl drain kub3 --ignore-daemonsets # --force --delete-empty...")
- 01:20, 16 May 2021 Busk talk contribs created page Expand Disk LXD VM (Created page with "Existing size is about 10G on Centos host called nas ``` lxc config device set nas root size=100GiB lxc shell nas ``` Add tools and expand (you can use fdisk/parted but this...")
- 23:03, 15 May 2021 Busk talk contribs created page Kubernetes Namespace Isolation (Created page with "https://www.synacktiv.com/en/publications/kubernetes-namespaces-isolation-what-it-is-what-it-isnt-life-universe-and-everything.html")
- 21:25, 14 May 2021 Busk talk contribs created page Kubernetes Training Excercises (Created page with "busk-ubuntu.yml ``` apiVersion: v1 kind: Pod metadata: name: busk-ubuntu labels: app: busk-ubuntu spec: containers: - name: ubuntu image: ubuntu:latest com...")
- 23:59, 9 May 2021 Busk talk contribs created page Economics (Created page with "https://www.bloomberg.com/news/videos/2021-04-28/why-economists-don-t-care-about-the-debt-video")
- 16:36, 7 May 2021 Busk talk contribs created page Flask HTTPS (Created page with "https://blog.miguelgrinberg.com/post/running-your-flask-application-over-https You really should use nginx or something faster but this is nice sometimes especially for testi...")
- 23:24, 4 May 2021 Busk talk contribs created page Python ldap (Created page with "https://flask-ldap3-login.readthedocs.io/en/latest/quick_start.html")
- 15:27, 4 May 2021 Busk talk contribs created page Kubernetes Platform Comparative (Created page with "https://redhatspain.com/matrix-table/")
- 15:07, 4 May 2021 Busk talk contribs created page Kubernetes Operators (Created page with "https://github.com/operator-framework/awesome-operators")
- 03:48, 4 May 2021 Busk talk contribs created page MQTT (Created page with "https://stackoverflow.com/questions/61143862/mqtt-postgresql-db-insert-a-mqtt-message-into-a-column-in-postgresql-table-us")
- 02:24, 1 May 2021 Busk talk contribs created page Python Threads (Created page with "https://yasoob.me/2019/05/29/speeding-up-python-code-using-multithreading/ - https://timber.io/blog/multiprocessing-vs-multithreading-in-python-what-you-need-to-know/ - h...")
- 10:40, 28 April 2021 Busk talk contribs created page SQL Nameing Cnventions (Created page with "https://softwareengineering.stackexchange.com/questions/114728/why-is-naming-a-tables-primary-key-column-id-considered-bad-practice I'm going to come out and say it: It's not...")
- 18:49, 24 April 2021 Busk talk contribs created page Kafka (Created page with "# Refs - https://www.confluent.io/blog/secure-kafka-deployment-best-practices/ - https://github.com/dpkp/kafka-python - https://kafka.apache.org/quickstart # Using http to in...")
- 04:19, 24 April 2021 Busk talk contribs created page Teleport (Created page with "- https://goteleport.com/docs/database-access/guides/postgres-self-hosted/ - https://github.com/ccdcoe/Frankencoding")
- 21:44, 19 April 2021 Busk talk contribs created page Createrepo (Created page with "Prep repo host ``` yum install createrepo nginx /usr/share/nginx/html/rhel/7Server/os/ createrepo /usr/share/nginx/html/rhel/7Server/os/ /etc/yum.repos.d/my.repo [mytestrepoo...")
- 16:04, 18 April 2021 Busk talk contribs created page Netbox (Created page with "# Migrating -https://netbox.readthedocs.io/en/stable/administration/replicating-netbox/ # Kubernetetes Options - Try and Use this - https://github.com/netbox-community/netbox...")
- 09:00, 16 April 2021 Busk talk contribs created page Zabbix Kubernetes (Created page with "https://gitlab.com/frenchtoasters/zabbix-operator https://youtu.be/WYIHstLZIvg")
- 20:48, 14 April 2021 Busk talk contribs created page CoreDNS Troubleshooting (Created page with "https://coredns.io/manual/setups/")
- 22:26, 13 April 2021 Busk talk contribs created page Microk8s registry (Created page with "https://microk8s.io/docs/registry-built-in https://microk8s.io/docs/registry-private")
- 14:14, 11 April 2021 Busk talk contribs created page Postgresql Demos (Created page with "https://www.citusdata.com/blog/2021/04/10/talk-at-cmu-how-citus-distributes-postgresql-via-extension-apis/")
- 19:17, 8 April 2021 Busk talk contribs created page Kubernetes Delete (Created page with "https://stackoverflow.com/questions/47128586/how-to-delete-all-resources-from-kubernetes-one-time/47137442 ``` kubectl delete all --all -n {namespace} Method 2: You can also...")
- 20:17, 2 April 2021 Busk talk contribs created page Postgres Security (Created page with "https://goteleport.com/blog/securing-postgres-postgresql/")
- 17:15, 1 April 2021 Busk talk contribs created page Git clone (Created page with "GIT_SSH_COMMAND='ssh -i deploy-key' git clone git@github.com:myuser/myrepo.git")
- 11:29, 1 April 2021 Busk talk contribs created page Kubernetes Networking (Created page with "https://itnext.io/an-illustrated-guide-to-kubernetes-networking-part-1-d1ede3322727 https://www.youtube.com/watch?v=H5Zl_kDOwBU")
- 03:09, 29 March 2021 Busk talk contribs created page Kubernetes Shortcuts (Created page with "# Short names ``` Short Full csr certificatesigningrequests cs componentstatuses cm configmaps ds daemonsets deploy deployments ep endpoints ev events hpa horizontalpo...")
- 14:59, 28 March 2021 Busk talk contribs created page Kubernetes Postgres Operator (Created page with "https://access.crunchydata.com/documentation/postgres-operator/latest/quickstart/ https://github.com/CrunchyData/postgres-operator")
- 16:41, 20 March 2021 Busk talk contribs created page Microk8s on LXD 2 (Created page with "for i in kub1 kube2 kube3; do sudo lxc init ubuntu:20.04 $i --vm -c limits.cpu=4 -c limits.memory=8GB lxc config device override $i root size=32GB do lxc start kub1 kub2 kub3")
- 14:46, 20 March 2021 Busk talk contribs created page Kubernetes Troubleshooting (Created page with "rror: Kubernetes cluster unreachable: Get "http://localhost:8080/version?timeout=32s": dial tcp 127.0.0.1:8080: connect: connection refused root@singlekub:~# sudo kubectl conf...")
- 02:15, 20 March 2021 Busk talk contribs created page Kubernetes Deploy (Created page with "https://testdriven.io/blog/running-flask-on-kubernetes/")
- 15:49, 19 March 2021 Busk talk contribs created page Minikube on Windows (Created page with "https://github.com/microsoft/winget-cli/releases winget install minikube")
- 22:35, 18 March 2021 Busk talk contribs created page Powershell Linting (Created page with "https://mathieubuisson.github.io/powershell-code-quality-pscodehealth/")
- 19:19, 17 March 2021 Busk talk contribs created page Linux on Windows (Created page with "https://docs.microsoft.com/en-us/windows/wsl/install-manual")
- 00:08, 16 March 2021 Busk talk contribs created page AWX (Created page with "https://github.com/ansible/awx-operator")
- 15:57, 13 March 2021 Busk talk contribs created page Python Naming Convention (Created page with "module_name, package_name, ClassName, method_name, ExceptionName, function_name, GLOBAL_CONSTANT_NAME, global_var_name, instance_var_name, function_parameter_name, local_var_n...")
- 14:34, 13 March 2021 Busk talk contribs created page Python Multiprocessing (Created page with " https://link.medium.com/JewFgJzVAeb")