Friedrich Ewald My Personal Website

Posts


  • Free fonts for private and commercial use

    A few weeks ago I stumbled upon Fontshare. This website offers free fonts for private and commercial use and is worth checking out. From their terms:

    Fontshare fonts are 100% free for personal and commercial use, however, they�re not open-source and are governed by an ITF EULA. […]

  • Access private repositories in Go

    Good article how to access a private repository via go get. TLDR: For SSH access:

    $ git config --global url."[email protected]:".insteadOf "https://gitlab.com/"
    
    $ cat ~/.gitconfig
    [url "[email protected]:"]
     insteadOf = https://gitlab.com/
    

  • Sunday Afternoon in the Bay Area

    Sunday Afternoon in the Bay Area with clouds Last Sunday afternoon was cloudy, not very crowded but nevertheless good weather.

  • Temporary Namespace for Kubernetes

    To set a temporary namespace for k8s simply create an alias like so:

    alias k='kubectl -n NAMESPACE '
    
    Then use it:
    k get pods
    
    After the shell session ends it is set to default.

  • Rt.live

    Nice visualization of the new infections by state: rt.live. Update 2022/05/10: The website is no longer active and I removed the link.

Page: 19 of 28