Skip to content

Instantly share code, notes, and snippets.

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

MWals MWals

🏠
Working from home
View GitHub Profile
@PurpleBooth
PurpleBooth / README-Template.md
Last active May 22, 2024 11:07
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@mandiwise
mandiwise / Count lines in Git repo
Last active May 16, 2024 13:28
A command to calculate lines of code in all tracked files in a Git repo
// Reference: http://stackoverflow.com/questions/4822471/count-number-of-lines-in-a-git-repository
$ git ls-files | xargs wc -l