Skip to content

notjosho/programming-utils

Repository files navigation

Programming Utils

Quick reference guides for essential programming tools and concepts.

Contents

Quick Start Workflow

New Python Project

mkdir myproject && cd myproject
git init
python3 -m venv venv
source venv/bin/activate
touch main.py .gitignore README.md
git add .
git commit -m "Initial commit"

File Structure

project/
├── src/
│   ├── __init__.py
│   └── main.py
├── tests/
├── .gitignore
├── README.md
└── requirements.txt

Resources

Each file contains links to official documentation and tutorials for deeper learning.

About

markdown files for programming utils

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •