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).

Logs
(newest | oldest) View (newer 50 | ) (20 | 50 | 100 | 250 | 500)
  • 15:35, 18 September 2025 Busk talk contribs created page RLS example 4 (Created page with "**Go-Migrate SQL files** (from scratch) and a **Python test script** that logs into Keycloak, grabs JWTs, and exercises CRUD + RLS paths to prove the policy works. --- # mig...")
  • 15:20, 18 September 2025 Busk talk contribs created page RLS example 3 (Created page with "RLS pattern for PostgreSQL that uses the JWT `sub` as the external identity, maps it to an internal UUID `user_id`, and supports per-group CRUD permissions on `todos`. It’s...")
  • 15:08, 18 September 2025 Busk talk contribs created page RLS example 2 (Created page with "Of course\! To set up Postgres Row-Level Security (RLS) based on group membership, you need a schema that links users to groups and resources to groups. The RLS policy then ch...")
  • 03:29, 9 September 2025 Busk talk contribs created page React directory structure (Created page with "/src ├── assets/ │ ├── images/ │ └── styles/ ├── components/ │ ├── common/ │ │ ├── Empty.tsx │ │ ├── Stat...")
  • 22:58, 2 September 2025 Busk talk contribs created page Libs fe (Created page with "leptos https://github.com/gcanti/fp-ts")
  • 18:57, 31 August 2025 Busk talk contribs created page Postgres (Created page with "https://github.com/supabase/postgres")
  • 05:03, 30 August 2025 Busk talk contribs created page Keycloak postgrest (Created page with "PostgREST can be integrated with Keycloak for authentication using JSON Web Tokens (JWTs). This setup allows Keycloak to manage user authentication and authorization, while Po...")
  • 10:48, 25 August 2025 Busk talk contribs created page Ica constrained (Created page with "To create an Intermediate Certificate Authority (ICA) that can only issue certificates for subdomains of a specific domain (like *.example.com), you must use the Name Constrai...")
  • 18:42, 24 August 2025 Busk talk contribs created page Repo debian (Created page with "To resolve the "repository is not signed" error, you need to generate a GPG key, use it to sign your repository's `Release` file, and then add the public key to your host's tr...")
  • 17:02, 24 August 2025 Busk talk contribs created page Misc (Created page with "``` #!/bin/bash REPO_ROOT="/var/www/html/my-debian-repo" DISTRIBUTION="stable" COMPONENT="main" ARCHITECTURE="amd64" POOL_DIR="${REPO_ROOT}/pool/${COMPONENT}" DEB_FILE="deb/my...")
  • 05:12, 23 August 2025 Busk talk contribs created page Virus file sums (Created page with "Yes, SHA-256 sums and other cryptographic hashes of malicious files are collected and stored in several public databases, often managed by cybersecurity companies and communit...")
  • 12:06, 21 August 2025 Busk talk contribs created page Host (Created page with "In networking, a host is any device connected to a computer network that can send or receive information. These devices are assigned at least one network address, like an IP a...")
  • 03:41, 19 August 2025 Busk talk contribs created page Security definer (Created page with "PostgreSQL, SECURITY DEFINER is an attribute applied to functions, procedures, or views that dictates the security context under which they execute. How it works: Default Beha...")
  • 03:19, 14 August 2025 Busk talk contribs created page Cfssl api auth (Created page with " ``` 1. Generating an Authentication Key with openssl To generate a suitable hex-encoded key for CFSSL authentication, you can use openssl. A 32-byte (256-bit) key is a good c...")
  • 20:26, 10 August 2025 Busk talk contribs created page Zfs architecture (Created page with "``` ZFS architecture: a layered approach to data storage and management ZFS, which stands for Zettabyte File System, is an advanced file system and logical volume manager reno...")
  • 10:47, 10 August 2025 Busk talk contribs created page Vuetify login (Created page with "Awesome — here’s a clean, working pattern to add username/password login → JWT → protected CRUD to the Vue + Vuetify + vue-postgrest app. It includes: SQL to create...")
  • 10:27, 10 August 2025 Busk talk contribs created page Vuetify & vue-postgrest todos (Created page with "Perfect—here’s a Vue + Vuetify + vue-postgrest CRUD example for a todos table. It shows list, add, edit, and delete using v-data-table and dialogs. It uses vue-postgrest...")
  • 20:18, 29 July 2025 Busk talk contribs created page Security Sites (Created page with "https://www.linkedin.com/in/hans-petrich")
  • 17:27, 29 July 2025 Busk talk contribs created page Azure aks secret provider (Created page with " aks-secret-provider-mnt.yaml ``` apiVersion: apps/v1 kind: Deployment metadata: name: secret-mount spec: replicas: 1 selector: matchLabels: app: secret-mount...")
  • 20:10, 28 July 2025 Busk talk contribs created page Pvcs show total mounts (Created page with "``` #!/bin/bash echo "Mounted PVCs (namespace/pvc -> pod on node):" echo kubectl get pods --all-namespaces -o json | jq -r ' .items[] | . as $pod | .spec.volumes[]? |...")
  • 19:02, 28 July 2025 Busk talk contribs created page Grafana helm & postgres example (Created page with "# Simple Example of Grafana with Postgres Backend ## Configs ### Grafana override.values.yaml.envsubst ``` image: repository: grafana/grafana # Overrides the Grafana i...")
  • 14:28, 27 July 2025 Busk talk contribs created page Cloud k8s comparisons (Created page with "https://www.sedai.io/blog/kubernetes-cost-eks-vs-aks-vs-gke")
  • 19:40, 23 July 2025 Busk talk contribs created page Pvc migration testing (Created page with "# Migrate many PVCs from one storage class to another in same namespace Use these scripts for migration and testing ## create-test-pvc.sh ``` #!/bin/bash set -eu NS=${1:-d...")
  • 16:34, 21 July 2025 Busk talk contribs moved page Innovator;s delemma to Innovator's dilemma without leaving a redirect (spelling)
  • 16:33, 21 July 2025 Busk talk contribs created page Innovator;s delemma (Created page with "The Innovator's Dilemma, popularized by Clayton Christensen, describes the phenomenon where established, successful companies can be overtaken by smaller competitors offering...")
  • 14:28, 16 July 2025 Busk talk contribs created page Lab3 (Created page with "``` package main import ( "bytes" "context" "crypto/tls" "fmt" "io" "net/http" "net/url" "os" "os/signal" "path" "strings" "sync" "syscall" "time" "github.com...")
  • 05:15, 15 July 2025 Busk talk contribs created page Lab2 (Created page with "``` package main import ( "bytes" "context" "crypto/tls" "database/sql" "encoding/base64" "fmt" "io" "net/http" "net/url" "os" "os/signal" "path" "strconv" "str...")
  • 04:02, 15 July 2025 Busk talk contribs created page Lab (Created page with "``` package main import ( "bytes" "context" "crypto/tls" "database/sql" "encoding/base64" "fmt" "io" "net/http" "net/url" "os" "os/signal" "strconv" "strings" "...")
  • 03:21, 15 July 2025 Busk talk contribs created page Mimir push test client (Created page with "``` import os import time import requests import snappy import warnings # Suppress the InsecureRequestWarning when verify=False is used warnings.filterwarnings("ignore", mess...")
(newest | oldest) View (newer 50 | ) (20 | 50 | 100 | 250 | 500)