From: Eshel Yaron Date: Fri, 14 Apr 2023 07:57:51 +0000 (+0300) Subject: Add metadata line with creation and update dates to all posts X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=28d8385f30c309f837ad23fee2150dcaa839904a;p=esy-publish.git Add metadata line with creation and update dates to all posts --- diff --git a/src/posts/2023-04-01-take-on-recursion.org b/src/posts/2023-04-01-take-on-recursion.org index bd463d5..fd6d419 100644 --- a/src/posts/2023-04-01-take-on-recursion.org +++ b/src/posts/2023-04-01-take-on-recursion.org @@ -4,6 +4,8 @@ #+KEYWORDS: emacs #+DATE: 2023-04-01 +@@html:
@@Created on [{{{date}}}], last updated [{{{modification-time(%Y-%m-%d, t)}}}]@@html:
@@ + Over at [[https://takeonrules.com]], Jeremy Friesen has [[https://takeonrules.com/2023/03/25/using-built-in-emacs-29-tree-sitter-package-to-get-qualified-ruby-function-name/][a couple of]] [[https://takeonrules.com/2023/03/25/using-built-in-emacs-29-tree-sitter-package-to-get-qualified-ruby-function-name/][recent posts]] about an Emacs command he wrote for grabbing the qualified name of the function at point in Ruby files. diff --git a/src/posts/2023-04-05-the-self-healing-code-fallacy.org b/src/posts/2023-04-05-the-self-healing-code-fallacy.org index 3afc1b4..e651d1b 100644 --- a/src/posts/2023-04-05-the-self-healing-code-fallacy.org +++ b/src/posts/2023-04-05-the-self-healing-code-fallacy.org @@ -4,6 +4,8 @@ #+KEYWORDS: ai #+DATE: 2023-04-05 +@@html:
@@Created on [{{{date}}}], last updated [{{{modification-time(%Y-%m-%d, t)}}}]@@html:
@@ + Yesterday, a colleague of mine shared [[https://twitter.com/minchoi/status/1643215812298260480][a tweet]] in our =#random= Slack channel about [[https://gitlab.com/min.choi/selfhealing-gitlab-ci/][a new AI-powered plugin for GitLab CI]] that supposedly makes your code /self-healing/. diff --git a/src/posts/2023-04-08-making-shell-scripts-executable-just-in-time.org b/src/posts/2023-04-08-making-shell-scripts-executable-just-in-time.org index 16efc05..fa0618d 100644 --- a/src/posts/2023-04-08-making-shell-scripts-executable-just-in-time.org +++ b/src/posts/2023-04-08-making-shell-scripts-executable-just-in-time.org @@ -4,6 +4,8 @@ #+KEYWORDS: emacs lisp #+DATE: 2023-04-08 +@@html:
@@Created on [{{{date}}}], last updated [{{{modification-time(%Y-%m-%d, t)}}}]@@html:
@@ + In my work I often need to write small programs or scripts that accomplish very specific tasks. Many of these involve fetching and analyzing data from JSON-based APIs, and I tend to use shell scripts diff --git a/src/posts/2023-04-11-optimizing-project-selection-in-emacs.org b/src/posts/2023-04-11-optimizing-project-selection-in-emacs.org index d5cfc75..71690dd 100644 --- a/src/posts/2023-04-11-optimizing-project-selection-in-emacs.org +++ b/src/posts/2023-04-11-optimizing-project-selection-in-emacs.org @@ -4,6 +4,8 @@ #+KEYWORDS: emacs,lisp #+DATE: 2023-04-11 +@@html:
@@Created on [{{{date}}}], last updated [{{{modification-time(%Y-%m-%d, t)}}}]@@html:
@@ + Emacs has a brand new user option for customizing the interface used for project selection, e.g. when switching from one project to another. I always considered the way Emacs handles project selection diff --git a/src/style.css b/src/style.css index 1a5f104..6a5655a 100644 --- a/src/style.css +++ b/src/style.css @@ -310,3 +310,9 @@ Generated with `M-x org-html-htmlize-generate-css` after loading the text-decoration-color: #9acd32; font-style: italic; } + +.metadata { + color: #989898; + font-style: italic; + font-size: smaller; +}