Skip to content

Instantly share code, notes, and snippets.

View MusahO's full-sized avatar
🏠
Working from home

Moses Odeke Afrawles MusahO

🏠
Working from home
View GitHub Profile
@MusahO
MusahO / folder_structure.md
Created May 18, 2024 20:57 — forked from ayoubzulfiqar/folder_structure.md
The Folder Structure for Every Golang Project

Go - The Ultimate Folder Structure

Organizing your Go (Golang) project's folder structure can help improve code readability, maintainability, and scalability. While there is no one-size-fits-all structure, here's a common folder structure for a Go project:

project-root/
    ├── cmd/
    │   ├── your-app-name/
    │   │   ├── main.go         # Application entry point
    │   │   └── ...             # Other application-specific files
@MusahO
MusahO / tmux-cheatsheet.markdown
Created November 23, 2023 06:58 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname