Skip to content

Repo with various scripts to learn and play around with things.

Notifications You must be signed in to change notification settings

tlcraft/scratch-pad

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Scratch Pad

A repo to play with different concepts and ideas in various languages.

Contents

Python Notes

Change into the python directory from the root of this project:

cd python

Activate a virtual environment:

python3 -m venv .venv
source .venv/bin/activate

Install requirements:

pip install -r requirements.txt

Save requirements (if needed):

pip freeze > requirements.txt

Run a script:

python3 src/compose.py

Deactivate a virtual environment:

deactivate

TypeScript Notes

Change into the typescript directory from the root of this project:

cd typescript

Install dependencies:

npm i

Run a script from the package.json scripts list:

npm run fetch

About

Repo with various scripts to learn and play around with things.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published