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 9, 2025 00:12
Golden config for golangci-lint
# ==================================================================================================
#
# NOTICE
#
# This gist is no longer maintained. It was moved to repo:
#
# https://github.com/maratori/golangci-lint-config
#
# Full history and all v2 releases are preserved in the repo.
#
@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.