diff options
| -rw-r--r-- | content/pages/projects.md | 24 | ||||
| -rw-r--r-- | static/snapshots/sm-v0.1.tar | bin | 0 -> 12288 bytes | |||
| -rw-r--r-- | templates/base.html | 13 |
3 files changed, 32 insertions, 5 deletions
diff --git a/content/pages/projects.md b/content/pages/projects.md new file mode 100644 index 0000000..ce2bdd5 --- /dev/null +++ b/content/pages/projects.md | |||
| @@ -0,0 +1,24 @@ | |||
| 1 | --- | ||
| 2 | title: Projects | ||
| 3 | date: 2022-08-27T12:00:00+02:00 | ||
| 4 | url: projects.html | ||
| 5 | type: page | ||
| 6 | draft: false | ||
| 7 | --- | ||
| 8 | |||
| 9 | - [Simple snapshot manager](#simple-snapshot-manager) | ||
| 10 | |||
| 11 | While most of my projects are hosted on GitHub, I wanted a centralized location | ||
| 12 | to store them independently of GitHub and provide different versions in a bit | ||
| 13 | clearer way. | ||
| 14 | |||
| 15 | ## Simple snapshot manager | ||
| 16 | |||
| 17 | Simple snapshot utility that uses TAR to compress current directory into a | ||
| 18 | `.tar` file while ignoring some of the directories. | ||
| 19 | [GitHub repository](https://github.com/mitjafelicijan/sm). | ||
| 20 | |||
| 21 | - Version 0.1 / 2024-10-21 ([sm-v0.1.tar](/snapshots/sm-v0.1.tar)) | ||
| 22 | - First release. | ||
| 23 | - Able to tag and create tar snapshots. | ||
| 24 | |||
diff --git a/static/snapshots/sm-v0.1.tar b/static/snapshots/sm-v0.1.tar new file mode 100644 index 0000000..bbf2c50 --- /dev/null +++ b/static/snapshots/sm-v0.1.tar | |||
| Binary files differ | |||
diff --git a/templates/base.html b/templates/base.html index fa8c0ae..634841d 100644 --- a/templates/base.html +++ b/templates/base.html | |||
| @@ -163,14 +163,16 @@ | |||
| 163 | pre code span { display: initial!important; } | 163 | pre code span { display: initial!important; } |
| 164 | } | 164 | } |
| 165 | 165 | ||
| 166 | @media only screen and (max-width: 800px) { | 166 | @media only screen and (max-width: 720px) { |
| 167 | /* Responsive tables. */ | 167 | /* Responsive tables. */ |
| 168 | table { | 168 | table { |
| 169 | display: block; | 169 | display: block; |
| 170 | overflow-y: auto; | 170 | overflow-y: auto; |
| 171 | } | 171 | } |
| 172 | 172 | ||
| 173 | section.quick-jump { grid-template-columns: 1fr; } | 173 | .hide-on-mobile { display: none; } |
| 174 | |||
| 175 | section.quick-jump { display: none; } | ||
| 174 | } | 176 | } |
| 175 | </style> | 177 | </style> |
| 176 | <script defer src="https://app.tinyanalytics.io/pixel/isfRNEahfHiS2Ttp"></script> | 178 | <script defer src="https://app.tinyanalytics.io/pixel/isfRNEahfHiS2Ttp"></script> |
| @@ -179,10 +181,11 @@ | |||
| 179 | <header> | 181 | <header> |
| 180 | <nav> | 182 | <nav> |
| 181 | <a href="/">Home</a> | 183 | <a href="/">Home</a> |
| 184 | <a href="/projects.html">Projects</a> | ||
| 182 | <a href="https://github.com/mitjafelicijan" target="_blank">Code</a> | 185 | <a href="https://github.com/mitjafelicijan" target="_blank">Code</a> |
| 183 | <a href="https://github.com/mitjafelicijan/probe" target="_blank">Probe</a> | 186 | <a href="https://github.com/mitjafelicijan/probe" target="_blank" class="hide-on-mobile">Probe</a> |
| 184 | <a href="https://github.com/mitjafelicijan/dotfiles" target="_blank">Dotfiles</a> | 187 | <a href="https://github.com/mitjafelicijan/dotfiles" target="_blank" class="hide-on-mobile">Dotfiles</a> |
| 185 | <a href="/assets/mitjafelicijan.pgp.pub.txt">PGP</a> | 188 | <a href="/assets/mitjafelicijan.pgp.pub.txt" class="hide-on-mobile">PGP</a> |
| 186 | <a href="/curriculum-vitae.html">CV</a> | 189 | <a href="/curriculum-vitae.html">CV</a> |
| 187 | <a href="/feed.xml">RSS</a> | 190 | <a href="/feed.xml">RSS</a> |
| 188 | </nav> | 191 | </nav> |
