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)- 21:24, 10 October 2023 Busk talk contribs created page Windows LUKS (Created page with "https://learn.microsoft.com/en-us/windows/wsl/connect-usb https://learn.microsoft.com/en-us/windows/wsl/wsl2-mount-disk")
- 19:46, 6 October 2023 Busk talk contribs created page Log all linux commands (Created page with "https://www.baeldung.com/linux/log-all-user-commands")
- 16:38, 6 October 2023 Busk talk contribs created page Windows certificates (Created page with "``` Get-ChildItem -path cert:\LocalMachine\My $mypwd = ConvertTo-SecureString -String '1234' -Force -AsPlainText Get-ChildItem -Path Cert:\LocalMachine\My\157FC435B37B574C7CB4...")
- 04:45, 2 October 2023 Busk talk contribs created page Raid (Created page with "https://skrypuch.com/raid/ ``` RAID (or, why you don't want to use the "RAID" provided by your motherboard) There are three types of RAID: Software RAID Fake RAID Hardware R...")
- 16:10, 29 September 2023 Busk talk contribs created page F5 Big-IP Licensing BIGIQ (Created page with "It appears you need to have a local admin user account due to the need to reboot before applying new license so make sure you have that. You can run some of these commands usi...")
- 15:55, 28 September 2023 Busk talk contribs created page Python email example (Created page with "``` #!/usr/bin/env python3 import argparse from email.message import EmailMessage from email.mime.text import MIMEText import os import smtplib import sys subject = "Test" bo...")
- 12:32, 26 September 2023 Busk talk contribs created page Raid linux mdraid (Created page with "https://peterkieser.com/2009/11/29/raid-mdraid-stripe_cache_size-vs-write-transfer/")
- 12:01, 26 September 2023 Busk talk contribs created page Sfp transceiver (Created page with "https://serverfault.com/questions/242541/are-arista-sfp-transceivers-compatible-with-cisco-switches")
- 00:37, 26 September 2023 Busk talk contribs created page Curl bash script (Created page with "#!/bin/bash set -eu mcode=200 url="https://example.com" while true; do ts=$(date "+%Y%m%dT%H%M%S") rcode=$(curl -X GET -sI "$url" | awk '/^HTTP/{print $2}') if [ "$rco...")
- 18:49, 21 September 2023 Busk talk contribs created page Helm search (Created page with "helm search repo foo-community/foo--versions")
- 21:32, 20 September 2023 Busk talk contribs created page Postgres Performance Tuning (Created page with "https://www.timescale.com/blog/postgresql-performance-tuning-part-ii-adjusting-key-parameters/")
- 03:51, 20 September 2023 Busk talk contribs created page Powershell get certificates (Created page with " ``` $store = New-Object System.Security.Cryptography.X509Certificates.X509Store([System.Security.Cryptography.X509Certificates.StoreName]::My,"localmachine") $store.Open("Max...")
- 02:14, 17 September 2023 Busk talk contribs created page Data wharehouse with postgre (Created page with "https://www.narratordata.com/blog/using-postgresql-as-a-data-warehouse/")
- 23:47, 14 September 2023 Busk talk contribs created page Ambassador (Created page with " https://www.getambassador.io/docs/emissary/latest/tutorials/getting-started https://www.getambassador.io/docs/edge-stack/latest/about/changes-2.x https://github.com/emissar...")
- 20:06, 12 September 2023 Busk talk contribs created page Netplan (Created page with "Cisco ``` # This is the network config written by 'subiquity' network: ethernets: eno1: {} eno2: {} eno3: {} eno4: {} bonds: bond0: interfaces:...")
- 19:50, 12 September 2023 Busk talk contribs created page Bonds linux (Created page with "https://serverfault.com/questions/445839/what-are-differences-between-balance-rr-and-802-3ad ``` 6 From this page regarding balance-rr: This mode is the only mode that will...")
- 23:33, 11 September 2023 Busk talk contribs created page Irule snippets (Created page with "# No paths ``` when HTTP_REQUEST { HTTP::host "api.dexample.com" pool mypool } ``` # using path based ``` when HTTP_REQUEST { switch -glob -- [string tolower [HTTP...")
- 19:00, 11 September 2023 Busk talk contribs created page Windows 2012 notes (Created page with "https://willjessiam.blog/2021/02/06/tls_ecdhe_rsa_with_aes_256_gcm_sha384-cipher-with-server-2012-r2/")
- 18:53, 11 September 2023 Busk talk contribs created page Powershell ciphers (Created page with "``` Get-ItemPropertyValue -Path HKLM:\SYSTEM\CurrentControlSet\Control\Cryptography\Configuration\Local\SSL\00010002 -Name Functions | findstr -i GCM_SHA ```")
- 18:02, 10 September 2023 Busk talk contribs created page F5 sdk snippets (Created page with "``` import requests import os requests.packages.urllib3.disable_warnings() url = "https://foo.example.com/mgmt/tm/ltm/virtual" AD_USER = os.getenv('AD_USER') AD_PASS = os.env...")
- 22:38, 9 September 2023 Busk talk contribs created page Sql snippets (Created page with "``` select (select count(distinct status) from T) = 1 ``` will return 1 or 0 (i.e. true or false) depending on whether all of the rows have the same value in Status or not....")
- 23:47, 7 September 2023 Busk talk contribs created page Pandas sql (Created page with "# Prep for sqlite3 ``` import pandas as pd import sqlite3 def write_sql_from_dfs(): for table, df in dfs.items(): # loop through `dict` of dataframes uuids = [] for...")
- 20:36, 7 September 2023 Busk talk contribs created page Pandas snippets (Created page with "# DataFrame to JSON for SQL This will do it for all columns all rows. ``` for i in df.columns: df[i] = [json.dumps(x) for x in df[i]] df.to_sql(name='fb1', con=cnx, index=F...")
- 16:49, 1 September 2023 Busk talk contribs created page Reactjs list (Created page with "# useeffect - https://dev.to/antdp425/react-fetch-data-from-api-with-useeffect-27le")
- 13:28, 29 August 2023 Busk talk contribs created page Pandas examples (Created page with "# Pandas Example of Reading Excel Spreadsheets ## Example of reading existing excel ``` #!/usr/bin/env python3 import pandas as pd import ast from openpyxl import load_workb...")
- 15:03, 23 August 2023 Busk talk contribs created page Import-pfxCertificate (Created page with "``` Get-ChildItem Cert:\ -Recurse $mypwd = ConvertTo-SecureString -String "foo" -Force –AsPlainText Import-PfxCertificate –FilePath .\NA26-P-VenSQL01.extendhealth.com.pfx...")
- 16:04, 21 August 2023 Busk talk contribs created page Visudo (Created page with "visudo ``` %sudo ALL=(ALL:ALL) ALL If you want to override entries in /etc/sudoers just put the new entries after them. The new entry should look like myuser ALL=(ALL) NOP...")
- 19:59, 17 August 2023 Busk talk contribs created page Azure certifications (Created page with "https://tutorialsdojo.com/courses/az-104-microsoft-azure-administrator-practice-exams/")
- 21:52, 16 August 2023 Busk talk contribs created page Postgres change data captures (Created page with "https://datacater.io/blog/2021-09-02/postgresql-cdc-complete-guide.html")
- 20:34, 15 August 2023 Busk talk contribs created page F5 python scripts (Created page with "# F5 Python Scripts ## requirements.txt ``` requests pydig fuzzywuzzy pandas tabulate office365 Office365-REST-Python-Client flake8 ``` ## setup virtual environment ``` sudo...")
- 13:49, 15 August 2023 Busk talk contribs created page Audit policy windows (Created page with "https://stackoverflow.com/questions/67974297/using-powershell-to-get-the-audit-policy-security-setting-value https://www.techtarget.com/searchitchannel/feature/Using-AuditPol-...")
- 20:13, 9 August 2023 Busk talk contribs created page K6 large tests (Created page with "# Network connections - https://k6.io/docs/testing-guides/running-large-tests/ - https://serverfault.com/questions/234534/is-it-dangerous-to-change-the-value-of-proc-sys-net...")
- 19:56, 8 August 2023 Busk talk contribs created page F5 traffic throughput (Created page with "- https://my.f5.com/manage/s/article/K17054255 - https://my.f5.com/manage/s/article/K15831 - https://my.f5.com/manage/s/article/K14810")
- 20:17, 7 August 2023 Busk talk contribs created page F5 upgrade (Created page with "cli ``` https://my.f5.com/manage/s/article/K34745165 ```")
- 17:12, 6 August 2023 Busk talk contribs created page Pandas parsing delimited file (Created page with " # No header space delimited ``` import pandas as pd df = pd.read_csv('virtualsevers.out', header=None, sep='\s+') df[0][0] for index, row in df.iterrows(): if row[3] != '0...")
- 15:35, 4 August 2023 Busk talk contribs created page Zfs export (Created page with "https://www.cyberciti.biz/faq/how-to-backup-and-restore-lxd-containers/ ``` lxc export k8s3 /bkp/tar/k8s3.tar.xz lxc info k8s3 ```")
- 19:05, 1 August 2023 Busk talk contribs created page Github Actions Runner Controller (Created page with "https://github.com/actions/actions-runner-controller")
- 21:08, 31 July 2023 Busk talk contribs created page Zabbix Cleanup From Hanging Triggers Items (Created page with "``` delete from items where (name not like '%DEVNAME%' and key_ like 'perf_counter_en%PhysicalDisk%') or (name not like '%DEVNAME%' and key_ like 'net.if.%vmxnet3 Ethernet Ada...")
- 15:30, 26 July 2023 Busk talk contribs created page Zabbix agent powershell scripts (Created page with "``` ``` $file = "C:\app\zabbix\zabbix_agent2.win.conf" $content = Get-Content $file -Encoding UTF8 -Raw $startString = "UserParameter=zbx.getIpaddr" $newString = "UserParamete...")
- 14:04, 26 July 2023 Busk talk contribs created page Get-ComputerInfo (Created page with "Get-ComputerInfo OsName,OsVersion,OsBuildNumber,OsHardwareAbstractionLayer,WindowsVersion")
- 15:20, 25 July 2023 Busk talk contribs created page Zabbix templates modifications (Created page with "Windows/Linux by Zabbix agent active ``` {$MEMORY.UTIL.MAX} 90->95 {$VFS.FS.PUSED.MAX.CRIT} 90->95 {$VFS.FS.PUSED.MAX.WARN} 80->90 ```")
- 17:30, 24 July 2023 Busk talk contribs created page Zabbix template upgrade (Created page with "https://www.zabbix.com/forum/zabbix-troubleshooting-and-problems/444292-unable-to-update-existing-templates-zabbix-6-0-4 ``` Hi! Same problem here (upgrade from 5.4 to 6.0)....")
- 21:46, 18 July 2023 Busk talk contribs created page Sumo query (Created page with "https://help.sumologic.com/docs/search/search-query-language/search-operators/matches/")
- 19:20, 18 July 2023 Busk talk contribs created page K8s troubleshooting (Created page with "``` https://zigmax.net/aks-ssh-to-an-aks-node-with-kubectl/ kubectl get node kubectl debug node/aks-nodepool1-12345678-vmss000000 -it --image=mcr.microsoft.com/aks/fundamenta...")
- 00:33, 18 July 2023 Busk talk contribs created page F5 sdk (Created page with "https://community.f5.com/t5/technical-forum/python-f5-sdk-401-unexpected-error-f5-authorization-required/td-p/167675")
- 21:20, 17 July 2023 Busk talk contribs created page F5 cleanup (Created page with "https://github.com/johnalam/F5_BigIP_Orphaned_objects/blob/main/orph-monitors.sh https://github.com/johnalam/F5_BigIP_Orphaned_objects/blob/main/orph-pools.sh")
- 20:01, 16 July 2023 Busk talk contribs created page Color hex (Created page with "https://www.color-hex.com/color/6682fb")
- 18:32, 16 July 2023 Busk talk contribs created page Wordpress themes (Created page with "https://www.luzuk.com/themes/free-ecommerce-wordpress-theme/")
- 15:30, 16 July 2023 Busk talk contribs created page K8s cleanup (Created page with "``` kubectl get pv | grep Released | awk '$1 {print$1}' | while read vol; do kubectl delete pv/${vol}; done ```")
- 22:24, 15 July 2023 Busk talk contribs created page Ceph troubleshooting (Created page with "https://rook.io/docs/rook/v1.11/Storage-Configuration/Advanced/ceph-osd-mgmt/#confirm-the-osd-is-down")