From dce5cd3faccd80a504a07fd84a24121cd9d8de30 Mon Sep 17 00:00:00 2001 From: m Date: Sun, 15 Mar 2026 13:03:01 +0100 Subject: [PATCH] attributes --- .gitattribute => .gitattributes | 0 edit_script/edit_entry.ipynb | 21 +++++++++++++-------- 2 files changed, 13 insertions(+), 8 deletions(-) rename .gitattribute => .gitattributes (100%) diff --git a/.gitattribute b/.gitattributes similarity index 100% rename from .gitattribute rename to .gitattributes diff --git a/edit_script/edit_entry.ipynb b/edit_script/edit_entry.ipynb index 6701ccf..fbbd454 100644 --- a/edit_script/edit_entry.ipynb +++ b/edit_script/edit_entry.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "code", - "execution_count": null, + "execution_count": 7, "id": "090c7992", "metadata": {}, "outputs": [], @@ -134,21 +134,26 @@ "name": "stdout", "output_type": "stream", "text": [ - "new id 10\n", - "Successfully added Post #10: test timeline\n" + "have been fighting with tailwind & boostrap for hours...\n", + "\n", + "Post 10 updated successfully.\n" ] } ], "source": [ "FIEL_PATH = \"../content/posts.py\"\n", - "#get_entry(FIEL_PATH, 0)\n", + "get_entry(FIEL_PATH, 10)\n", "# update_entry(FIEL_PATH, target_id, new_text)\n", "# add_entry(FIEL_PATH, \"title\", \"subtitle\", new_text)\n", - "text=\"\"\"

Project Timeline

\n", - "\n", - "{% include \"components/timeline.html\" %}\n", + "text=\"\"\"I have been fighting with tailwind \n", + "& bootstrap for past two days... It was easy to write a standalone \n", + "web page with a few lines under tailwind or bootstrap, but not with the \n", + "combination of both. I had the nice timeline in first 2 minutes, and \n", + "then made 60+ hopeless commits for the font and spacing behavior under \n", + "bootstrap...\n", "\"\"\"\n", - "add_entry(FIEL_PATH, \"test timeline\", \"subtitle\", text)" + "#add_entry(FIEL_PATH, \"test timeline\", \"subtitle\", text)\n", + "update_entry(FIEL_PATH, 10, text)\n" ] } ],