Skip to content

Instantly share code, notes, and snippets.

View rnemeth90's full-sized avatar

Ryan Nemeth rnemeth90

View GitHub Profile
@rnemeth90
rnemeth90 / filewalk.go
Created June 24, 2023 09:57
Go filepath.walk example
package main
import (
"fmt"
"os"
"path"
"path/filepath"
)
func main() {
@rnemeth90
rnemeth90 / go-stdlib-interface-selected.md
Created December 19, 2023 13:24 — forked from asukakenji/go-stdlib-interface-selected.md
Go (Golang) Standard Library Interfaces (Selected)

Go (Golang) Standard Library Interfaces (Selected)

This is not an exhaustive list of all interfaces in Go's standard library. I only list those I think are important. Interfaces defined in frequently used packages (like io, fmt) are included. Interfaces that have significant importance are also included.

All of the following information is based on go version go1.8.3 darwin/amd64.

## `tmux` Basics
### Installation
- https://github.com/tmux/tmux/wiki/Installing
### Note
- In the official tmux documentation (`man tmux`), key `C` is Ctrl and `M` is Alt.
- [Complete Getting Started Guide](https://github.com/tmux/tmux/wiki/Getting-Started)