Skip to content

Instantly share code, notes, and snippets.

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

Cheejyg Cheejyg

🏠
Working from home
View GitHub Profile
@PurpleBooth
PurpleBooth / README-Template.md
Last active July 22, 2024 02:29
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

import json
inputFilename = input("File: ")
with open(inputFilename, "rt") as input_file:
inputs = json.load(input_file)
source = ""
for x in range(len(inputs["cells"])):
for string in inputs["cells"][x]["source"]: