Category: Uncategorized

  • Windows: SOCKS Proxy

    Create SSH tunnel: Set SOCKS proxy in Windows 11:

  • Kubernetes: Metrics Server

    Add Helm repository: Install Helm Chart: References:

  • Kubernetes: Ingress Controller (IngressClass)

    Install via HELM: To show the values via HELM: Uninstall via HELM: References:

  • PowerShell: Environment Variables

    List all environment variables: Print an environment variable: Create/set (permanent) Unset (permanent) Create/set (temporary): Unset (temporary): Use an environment variable:

  • HTTP: Cookie

    Cookie is used to save key-value pairs on the client side. Expire if set to 0 equals erase on browser close (Session). If set to time() + (seconds) then the cookie will expire at that particular time. Path if set to “/” then it will be accessible to every path in the domain (domain.com/*). If…

  • Javascript: Fullscreen

    To enter fullscreen mode: To exit fullscreen mode: Toggling fullscreen mode: References:

  • Podman: Networking in WSL

    Check if you have any Podman machine available: If you do not have any Podman machine, create it with: Deploy something… Normally on Docker you can access this port 8000 from outside your machine. But for Podman in WSL you will need to add extra command. Open Windows Terminal or Cmd or PowerShell with Administrator…

  • S3: Bucket Policy

    AWS S3 CEPH / RADOS-GW AbortMultipartUpload AbortMultipartUpload CompleteMultipartUpload CopyObject CreateBucket CreateBucket CreateMultipartUpload DeleteBucket DeleteBucket DeleteBucketAnalyticsConfiguration DeleteBucketCors DeleteBucketEncryption DeleteBucketIntelligentTieringConfiguration DeleteBucketInventoryConfiguration DeleteBucketLifecycle DeleteBucketMetricsConfiguration DeleteBucketOwnershipControls DeleteBucketPolicy DeleteBucketPolicy DeleteBucketReplication DeleteReplicationConfiguration DeleteBucketTagging DeleteBucketWebsite DeleteBucketWebsite DeleteObject DeleteObject DeleteObjects DeleteObjectTagging DeleteObjectTagging DeletePublicAccessBlock DeleteObjectVersion DeleteObjectVersionTagging GetBucketAccelerateConfiguration GetBucketAcl GetBucketAcl GetBucketAnalyticsConfiguration GetBucketCors GetBucketCORS GetBucketEncryption GetBucketEncryption GetBucketIntelligentTieringConfiguration GetBucketInventoryConfiguration GetBucketLifecycle GetBucketLifecycleConfiguration GetBucketLocation GetBucketLocation GetBucketLogging GetBucketLogging GetBucketMetricsConfiguration GetBucketNotification…

  • Kubernetes: Output Format

    allowed formats are: References:

  • Bash Shortcut

    Movement CTRL-a – Go to the beginning of the line. CTRL-e – Go to the end of the line. CTRL-b – Move cursor backward one character. CTRL-f – Move cursor forward one character. ALT-b – Move cursor backward one word. ALT-f – Move cursor forward one word. Editing ALT-c – Capitalize the letter at cursor…