Skip to content

Instantly share code, notes, and snippets.

View jun-fajr's full-sized avatar
🏠
Working from home

Junizar Fajri jun-fajr

🏠
Working from home
View GitHub Profile
@jun-fajr
jun-fajr / install-oracle-client-ubuntu.md
Created February 11, 2021 08:09 — forked from bmaupin/install-oracle-client-ubuntu.md
Install Oracle client on Ubuntu 18.04

Reference: https://help.ubuntu.com/community/Oracle%20Instant%20Client

  1. Decide which version of the Oracle client to install

  2. Download the Oracle client packages

  • Get the sqlplus package if you'd like to use the sqlplus command
@jun-fajr
jun-fajr / folder_structure.md
Created November 13, 2024 14:42 — 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