https://blog.golang.org/go1.13-errors
Anti-patterns: 🚫
// shadowing the error with some meaningless message
if err != nil {
https://blog.golang.org/go1.13-errors
Anti-patterns: 🚫
// shadowing the error with some meaningless message
if err != nil {
FROM golang:buster as build | |
WORKDIR /app | |
COPY . . | |
RUN CGO_ENABLED=0 GOOS=linux go build \ | |
-mod=vendor -ldflags "-s -w" -a -installsuffix cgo -o bin . | |
## Install shush |
filetype off | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
Plugin 'gmarik/Vundle.vim' | |
" COLORS | |
Plugin 'arcticicestudio/nord-vim' | |
" json formater | |
Plugin 'elzr/vim-json' | |
" status bar |
Learn at this tutorial http://www.shellscript.sh/
#!/bin/sh
echo 'hello world'
what is #!/bin/sh means?
#Basic set up
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"