Skip to content

Instantly share code, notes, and snippets.

View manuelarte's full-sized avatar
👋

Manuel Doncel Martos manuelarte

👋
View GitHub Profile
@manuelarte
manuelarte / .golangci.yml
Last active July 9, 2025 17:30
golanci-lint v2
---
version: "2"
formatters:
enable:
- gofmt
- gofumpt
- gci
settings:
gofmt:
@maratori
maratori / .golangci.yml
Last active December 1, 2025 19:58
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 v2.6.2
#
# 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).
@anthonyray
anthonyray / readme.md
Last active June 24, 2025 18:26
Setting up OhMyZsh on a rapsberry Pi
  1. Connect to your raspberry Pi with SSH
  2. Install zsh : sudo apt-get update && sudo apt-get install zsh
  3. Edit your passwd configuration file to tell which shell to use for user pi : sudo vim /etc/passwd and change /bin/bash and /bin/zsh
  4. Reconnect to your raspberry, and check that zsh is the shell with echo $0.
  5. Switch to root : sudo su
  6. Install OhMyZsh : sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"
  7. Disconnect from your instance and reconnect it.