💾 Archived View for vk3.wtf › gemlog › 2021-07-31.gmi captured on 2022-01-08 at 14:14:00. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2021-12-03)
-=-=-=-=-=-=-
Setting up a gemini server has inspired me to consider keeping a log again. The log probably will be most useful to myself as a place to keep track of things or remember them for later. I've setup an Atom feed using solderpunk's gemfeed, for which I wrote a simple Nix expression:
{ python3Packages }: python3Packages.buildPythonApplication { name = "gemfeed"; src = fetchGit { url = "https://tildegit.org/solderpunk/gemfeed.git"; rev = "2c58b4a576324753e67221ddb1e72e962990053b"; }; propagatedBuildInputs = with python3Packages; [ feedgen ]; }