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)- 20:47, 4 April 2022 Busk talk contribs created page Az vm run-command (Created page with "``` Examples from AI knowledge base: az vm run-command invoke --resource-group MyResourceGroup --name MyVm --command-id RunShellScript --scripts "sudo apt-get update && sudo a...")
- 20:37, 4 April 2022 Busk talk contribs created page Wsl (Created page with "``` wsl -d ubuntu-20.04 -u myuser -- bash wsl -d ubuntu-20.04 -- bash ```")
- 14:48, 2 April 2022 Busk talk contribs created page Go certificate info (Created page with "https://github.com/carlmjohnson/certinfo/blob/master/main.go")
- 01:42, 31 March 2022 Busk talk contribs created page Postgresql nanoseconds duration (Created page with "select 87263574::decimal/1000000000;")
- 18:02, 30 March 2022 Busk talk contribs created page Encrypted passwords on Linux (Created page with "https://unix.stackexchange.com/questions/81240/manually-generate-password-for-etc-shadow ``` Method 1 (md5, sha256, sha512) openssl passwd -6 -salt xyz yourpass Note: passing...")
- 01:13, 30 March 2022 Busk talk contribs created page Ssh-keyscan (Created page with "Get finger prints of host for known_hosts ``` ssh-keyscan myhost -p 22 ```")
- 21:54, 29 March 2022 Busk talk contribs created page Get-acl (Created page with "``` (get-acl <folder name>).access | ft IdentityReference,FileSystemRights,AccessControlType,IsInherited,InheritanceFlags -auto ```")
- 15:37, 27 March 2022 Busk talk contribs created page Sftpgo Requests (Created page with "Updates made to virtual folders in webui don't update if a user is logged into sftp command prompt until relogin. ``` sftpgo version 2.2.2 on Ubuntu 20.04 Not a biggie but w...")
- 16:52, 26 March 2022 Busk talk contribs created page Google Compute Platform (Created page with "# Free Tier https://stackoverflow.com/questions/71176780/google-cloud-compute-engine-always-free-tier")
- 22:56, 24 March 2022 Busk talk contribs created page Net use (Created page with "``` net use k: \\mynost\mysharename /user:MYDOMAIN\myuser net use /delete k: ```")
- 01:54, 24 March 2022 Busk talk contribs created page Gorm performance (Created page with "https://github.com/go-gorm/gorm/issues/3055")
- 17:41, 23 March 2022 Busk talk contribs created page Enable winrm (Created page with "https://theitbros.com/run-powershell-script-on-remote-computer/#:~:text=You%20can%20use%20PowerShell%20Remoting,connection%20to%20a%20remote%20computer.")
- 14:22, 23 March 2022 Busk talk contribs created page Pgtype (Created page with "timeVal := pgtype.Timestamptz{Status: pgtype.Null} timeVal.Set(theTime)")
- 18:55, 22 March 2022 Busk talk contribs created page Windows Service From Powershell Script (Created page with "C:\app\watchAuth0LDAPConn.ps1 ``` $url = "127.0.0.1:49948" $sleep = 3 Write-Output "Starting $url connection watcher." while($true){ try { $R = Invoke-WebRequest $...")
- 16:08, 22 March 2022 Busk talk contribs created page Pgx (Created page with "https://pkg.go.dev/github.com/jackc/pgx#section-readme")
- 14:53, 22 March 2022 Busk talk contribs created page Golang Logging (Created page with "https://www.honeybadger.io/blog/golang-logging/")
- 00:00, 22 March 2022 Busk talk contribs created page Pgxscan (Created page with "https://pkg.go.dev/github.com/georgysavva/scany/pgxscan")
- 21:54, 15 March 2022 Busk talk contribs created page Find (Created page with "``` find . -name versions.tf -type f -print0 | xargs -0 sed 's/required_version = \">= 0.13\"/required_version = \">= v1.12.2\"/g' ```")
- 23:10, 14 March 2022 Busk talk contribs created page Gocron (Created page with "https://golangexample.com/gocron-a-golang-job-scheduling-package-2/ https://github.com/go-co-op/gocron")
- 18:22, 14 March 2022 Busk talk contribs created page Golang Database Connections (Created page with "https://stackoverflow.com/questions/50751788/how-to-import-gorm-db-connection-from-another-file-or-package")
- 17:41, 14 March 2022 Busk talk contribs created page Go clean (Created page with "``` go clean -i importpat ```")
- 01:07, 14 March 2022 Busk talk contribs created page Golang postgre performance (Created page with " https://link.medium.com/83qJl4Gsnob")
- 00:33, 14 March 2022 Busk talk contribs created page Sqlx (Created page with "https://jmoiron.github.io/sqlx/")
- 00:27, 14 March 2022 Busk talk contribs created page Python to Golang (Created page with "https://chand1012.dev//FromPythonToGo/")
- 23:48, 13 March 2022 Busk talk contribs created page Golang echo (Created page with "https://echo.labstack.com/cookbook/crud/")
- 20:27, 13 March 2022 Busk talk contribs created page Gorm (Created page with "https://gorm.io/docs/models.html ``` gorm.Model GORM defined a gorm.Model struct, which includes fields ID, CreatedAt, UpdatedAt, DeletedAt // gorm.Model definition type Mode...")
- 18:03, 13 March 2022 Busk talk contribs created page Golang Structs (Created page with "https://golangbot.com/structs-instead-of-classes/")
- 01:54, 13 March 2022 Busk talk contribs created page PostgresSQL Triggers (Created page with "https://x-team.com/blog/automatic-timestamps-with-postgresql/")
- 01:19, 12 March 2022 Busk talk contribs created page Golang wait groups (Created page with "https://www.golangprograms.com/program-demonstrates-how-to-wait-for-goroutines-to-finish-execution.html")
- 00:55, 12 March 2022 Busk talk contribs created page Golnag killing port pid (Created page with "``` package main import ( "fmt" "github.com/drael/GOnetstat" "os" "strconv" // "syscall" // "errors" ) func main() { // listports...")
- 15:42, 11 March 2022 Busk talk contribs created page Kafka k8s (Created page with "https://github.com/bitnami/charts/tree/master/bitnami/kafka ``` helm repo add bitnami https://charts.bitnami.com/bitnami helm install my-test bitnami/kafka ``` # Zookeper P...")
- 03:47, 11 March 2022 Busk talk contribs created page Embedded postgresql using golang (Created page with "package main /* https://pkg.go.dev/github.com/fergusstrange/embedded-postgres#section-readme https://github.com/fergusstrange/embedded-postgres https://github.com/zonkyio/embe...")
- 01:20, 9 March 2022 Busk talk contribs created page Ssh key parsing (Created page with "https://github.com/nigelm/ssh2_parse_key pip3 install ssh2-parse-key from ssh2_parse_key import Ssh2Key key="SSH2 multiline" key.openssh()")
- 19:07, 8 March 2022 Busk talk contribs created page Sqlalchemy Flask example (Created page with "https://flask-migrate.readthedocs.io/en/latest/ https://pythonbasics.org/flask-sqlalchemy/ ``` from flask import Flask, request, flash, url_for, redirect, render_template fro...")
- 18:37, 8 March 2022 Busk talk contribs created page Sqlalchemy batch dommands (Created page with "https://www.youtube.com/watch?v=CxCK1DkikgA")
- 12:34, 8 March 2022 Busk talk contribs created page Http request spoofing in python (Created page with "https://stackoverflow.com/questions/22609385/python-requests-library-define-specific-dns")
- 19:05, 7 March 2022 Busk talk contribs created page Pager Duty API Python (Created page with "https://community.pagerduty.com/forum/t/resolving-an-incident-using-pagerduty-events-v2-or-incident-api/1880 ``` def resolve_incident(self, device_id, message): url = "htt...")
- 05:03, 5 March 2022 Busk talk contribs created page Vonage Go (Created page with "https://github.com/Vonage/vonage-go-sdk/blob/master/docs/examples/voice.md")
- 01:08, 3 March 2022 Busk talk contribs created page Secure HTTP Headers (Created page with "{code} HTTP::respond 301 Location "https://exampe.com[HTTP::uri]" \ Strict-Transport-Security "max-age=31536000" \ Content-Security-Policy "default-src 'self...")
- 14:19, 1 March 2022 Busk talk contribs created page Istio service mesh (Created page with "https://youtu.be/DWTfFfcp70A")
- 13:48, 1 March 2022 Busk talk contribs created page Migrating from F5 Bigip (Created page with "https://docs.nginx.com/nginx/deployment-guides/migrate-hardware-adc/f5-big-ip-configuration/")
- 03:08, 1 March 2022 Busk talk contribs created page Wireshark TLS (Created page with "Client Hello: ssl.handshake.type == 1 Server Hello: ssl.handshake.type == 2 NewSessionTicket: ssl.handshake.type == 4 Certificate: ssl.handshake.type == 11 Certificate...")
- 18:59, 28 February 2022 Busk talk contribs created page HSTS - HTTP Strict Transport Security (Created page with "https://www.namecheap.com/support/knowledgebase/article.aspx/9711/38/how-to-check-if-hsts-is-enabled/")
- 17:00, 26 February 2022 Busk talk contribs moved page F5 Big IP Azure Cipher Issues to F5 Big-IP to Azure App Gateway Cipher Exchange Issues without leaving a redirect
- 16:59, 26 February 2022 Busk talk contribs created page F5 Big IP Azure Cipher Issues (Created page with "# F5 14.x issue between F5 BigIP virtual server and azure app gateway. Interconnected systems have more interconnected issues. Limiting scope of configs is one way to prevent...")
- 11:12, 25 February 2022 Busk talk contribs created page F5 Big IP TLS Ciphers (Created page with "List tls 1.2 ciphers ``` tmm --clientciphers 'TLSv1_2' tmm --serverciphers 'TLSv1_2' ```")
- 17:26, 24 February 2022 Busk talk contribs created page SNI (Created page with "https://superuser.com/questions/538130/filter-in-wireshark-for-tlss-server-name-indication-field")
- 22:47, 23 February 2022 Busk talk contribs created page F5 Troubleshooting (Created page with "https://support.f5.com/csp/article/K13223?sr=56047771")
- 12:36, 23 February 2022 Busk talk contribs created page Http stress testers (Created page with "https://github.com/mcollina/autocannon https://github.com/GlenTiki/autocannon-go")
- 12:09, 23 February 2022 Busk talk contribs created page Bash parallel processing (Created page with "https://unix.stackexchange.com/questions/103920/parallelize-a-bash-for-loop")