added matplotlib to plot graphs; elements are now sorted from newest to oldest; slight changes in html structure;

This commit is contained in:
mia 2025-05-21 21:21:39 +00:00
parent d7a1026ad1
commit 47f6657327
8 changed files with 73 additions and 16 deletions

12
shell.nix.old Normal file
View file

@ -0,0 +1,12 @@
{ pkgs ? import <nixpkgs> {} }:
(pkgs.buildFHSUserEnv {
name = "venv";
targetPkgs = pkgs: (with pkgs; [
python312
python312Packages.pip
python312Packages.virtualenv
python312Packages.matplotlib
]);
runScript = "bash --init-file /etc/profile";
# runScript = "zsh";
}).env