Skip to content

Instantly share code, notes, and snippets.

View stefanbildl's full-sized avatar

Stefan Bildl stefanbildl

  • Passau
  • 08:05 (UTC +02:00)
View GitHub Profile
@stefanbildl
stefanbildl / .golangci.yml
Created March 25, 2025 18:32 — forked from maratori/.golangci.yml
Golden config for golangci-lint
# This file is licensed under the terms of the MIT license https://opensource.org/license/mit
# Copyright (c) 2021-2025 Marat Reymers
## Golden config for golangci-lint v1.64.7
#
# This is the best config for golangci-lint based on my experience and opinion.
# It is very strict, but not extremely strict.
# Feel free to adapt it to suit your needs.
# If this config helps you, please consider keeping a link to this file (see the next comment).
@stefanbildl
stefanbildl / install_zellij.sh
Created March 13, 2025 19:41 — forked from BaksiLi/install_zellij.sh
Install Zellij (latest release) on Linux (incl. Ubuntu) and Darwin
#!/bin/bash
# Get the architecture of the machine
arch=$(uname -m)
os=$(uname -s)
# Download the Zellij binary
if [ "$os" == "Darwin" ]; then
filename="zellij-${arch}-apple-darwin.tar.gz"
url="https://github.com/zellij-org/zellij/releases/latest/download/$filename"