Skip to content
View philoserf's full-sized avatar
Remote and happy
Remote and happy
Block or Report

Block or report philoserf

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
philoserf/README.md
I am a human being, being human.
I aim to sleep, move, eat, grow, & share.
While I love, laugh, cry, & eventually die.

profile

Pinned

  1. obsidian-starter obsidian-starter Public template

    Do not start with other people's clutter and cruft!

    7

  2. actions actions Public

    container images a.k.a. GitHub actions

    Dockerfile 1 1

  3. clone all your gists clone all your gists
    1
    gh gist list -L 9999 |
    2
      cut -f 1 | 
    3
      xargs -n1 gh gist clone
  4. go go Public

    tools and libraries

    Go 1 1

  5. remove kubernetes namespace stuck in... remove kubernetes namespace stuck in termiinating status
    1
    for ns in $(kubectl get ns --field-selector "status.phase=Terminating" --output "jsonpath='{.items[*].metadata.name}'"); do
    2
      kubectl get ns "${ns}" --output json |
    3
        jq '.spec.finalizers = []' |
    4
        kubectl replace --raw "/api/v1/namespaces/${ns}/finalize" --filename -
    5
    done
  6. to, err := human() to, err := human()
    1
    package main
    2
    
                  
    3
    import (
    4
    	"fmt"
    5
    	"log"