Skip to content

Commit

Permalink
feat: qutoes on learning
Browse files Browse the repository at this point in the history
  • Loading branch information
tizee committed May 20, 2024
1 parent 67ccf67 commit 5e31591
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
7 changes: 4 additions & 3 deletions generate.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,19 @@

# -*- coding: utf-8 -*-

import sys
import os
import glob
import json
import os
import subprocess
import sys
from pathlib import Path
from pprint import pprint
import json

QUOTES_DIR = os.path.join(os.getcwd(), "quotes")
OUTPUT_DIR = os.path.join(os.getcwd(), "output")



class Config:
"""Config"""

Expand Down
14 changes: 14 additions & 0 deletions quotes/learning.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"$schema": "https://github.com/tizee/quotes/raw/main/schema.json",
"name": "quotes on learning",
"quotes": [
{
"quote": "Best way to learn to code is reading code.",
"source": "raylib - a simple and easy-to-use library to enjoy videogames programming."
},
{
"quote": "Any fool can know. the point is to understand.",
"source": "James L. Christian - Philosophy: An Introduction to The Art of Wondering"
}
]
}

0 comments on commit 5e31591

Please sign in to comment.