From b679c6c2e28621ca6810bcdd14ef7a5db0236a6b Mon Sep 17 00:00:00 2001 From: JJ Date: Fri, 21 Mar 2025 13:45:32 +0000 Subject: chess page --- content/_index.md | 2 +- content/chess.md | 4 ++++ content/notes/index.njk | 40 ---------------------------------------- content/projects/indexcooking.md | 3 ++- content/projects/polypubs.md | 2 ++ content/projects/tubestat.md | 11 +++++++++++ content/snippets/rsync.md | 13 +++++++++++++ 7 files changed, 33 insertions(+), 42 deletions(-) create mode 100644 content/chess.md delete mode 100644 content/notes/index.njk create mode 100644 content/projects/tubestat.md create mode 100644 content/snippets/rsync.md (limited to 'content') diff --git a/content/_index.md b/content/_index.md index 9ae96f3..b1c45a6 100644 --- a/content/_index.md +++ b/content/_index.md @@ -6,4 +6,4 @@ This is my personal blog, where I can jot down my thoughts o I also use it as a personal references for code snippets I routinely re-use and notes on the things I am currently studying. -When i'm not doing this, i'm probably playing chess. +When i'm not doing this, i'm probably playing chess. diff --git a/content/chess.md b/content/chess.md new file mode 100644 index 0000000..a4d11f3 --- /dev/null +++ b/content/chess.md @@ -0,0 +1,4 @@ ++++ +title = "chess" +layout= "chess" ++++ diff --git a/content/notes/index.njk b/content/notes/index.njk deleted file mode 100644 index 3dabc96..0000000 --- a/content/notes/index.njk +++ /dev/null @@ -1,40 +0,0 @@ ---- -layout: /layouts/layout.njk -title: All notes -description: A list of all notes ---- -{% set coursesArr = [] %} - -{% for item in collections.coursesList %} - {% if coursesArr.indexOf(item.data.course) == -1 %} - {% set coursesArr = (coursesArr.push( item.data.course ), coursesArr) %} - {% endif %} -{% endfor %} - -
- - - -
diff --git a/content/projects/indexcooking.md b/content/projects/indexcooking.md index 290d1d9..a3eaafa 100644 --- a/content/projects/indexcooking.md +++ b/content/projects/indexcooking.md @@ -5,6 +5,7 @@ tags = [ "flask", "mongodb", ] +draft = true [params] - link = "https://pubs.jezl.xyz" + link = "https://example.com" +++ diff --git a/content/projects/polypubs.md b/content/projects/polypubs.md index 49b34f5..3e79e39 100644 --- a/content/projects/polypubs.md +++ b/content/projects/polypubs.md @@ -5,4 +5,6 @@ tags = [ "maps", "algolia", ] +[params] + link = "https://pubs.jezl.xyz" +++ diff --git a/content/projects/tubestat.md b/content/projects/tubestat.md new file mode 100644 index 0000000..a745454 --- /dev/null +++ b/content/projects/tubestat.md @@ -0,0 +1,11 @@ ++++ +title = "tubestat" +description = "London tube statuses from the command line" +tags = [ + "cli", + "python", +] +[params] + link = "https://pypi.org/project/tube-stat/" +date = 2025-03-20 ++++ diff --git a/content/snippets/rsync.md b/content/snippets/rsync.md new file mode 100644 index 0000000..21e43fa --- /dev/null +++ b/content/snippets/rsync.md @@ -0,0 +1,13 @@ +--- +title: Basic rsync commands +description: Basic rsync commands +tags: ["rsync"] +--- + +I use these rscync commands regularly to sync local data and remote servers: + +```console +rsync -avz --progress /local/path /remote/path +``` + +`a` is archive mode, which keeps permissions, timestamps, symlinks etc, `v` means verbose and shows transfer progress in a human readable format, `z` compresses data during send and `---progress` shows files transer progress. -- cgit v1.2.3