From 407572b5f49d89baad3dd0ef3d50b89a3b1ae451 Mon Sep 17 00:00:00 2001 From: pux Date: Sat, 7 Jan 2023 10:58:18 +0100 Subject: initial commit, skel index.html and the md convert script - also using old backpack notes from pub-docs/ to have an entry --- data/.gitignore | 3 ++ data/2020-06-23-182943_Backpacks.md | 56 +++++++++++++++++++++ data/INDEX_template.md | 6 +++ .../2020-06-23-182943_Backpacks/baltoro.jpg | Bin 0 -> 274167 bytes .../2020-06-23-182943_Backpacks/redwing.jpg | Bin 0 -> 213675 bytes data/style.css | 13 +++++ data/template.md | 10 ++++ data/update.sh | 20 ++++++++ index.html | 15 ++++++ style.css | 10 ++++ 10 files changed, 133 insertions(+) create mode 100644 data/.gitignore create mode 100644 data/2020-06-23-182943_Backpacks.md create mode 100644 data/INDEX_template.md create mode 100644 data/attachments/2020-06-23-182943_Backpacks/baltoro.jpg create mode 100644 data/attachments/2020-06-23-182943_Backpacks/redwing.jpg create mode 100644 data/style.css create mode 100644 data/template.md create mode 100755 data/update.sh create mode 100644 index.html create mode 100644 style.css diff --git a/data/.gitignore b/data/.gitignore new file mode 100644 index 0000000..8c1463c --- /dev/null +++ b/data/.gitignore @@ -0,0 +1,3 @@ +*.html +INDEX.md +index.html diff --git a/data/2020-06-23-182943_Backpacks.md b/data/2020-06-23-182943_Backpacks.md new file mode 100644 index 0000000..d1c6450 --- /dev/null +++ b/data/2020-06-23-182943_Backpacks.md @@ -0,0 +1,56 @@ +--- +Tags: +Language: +--- + +# 2020-06-23-182943_Backpacks + +## Backpack reviews + +Focus: + + Durability/longevity + + small one for caving / everyday + + ~ 40 l medium one, also airplane carry on + + ~ 75 l big one, groceries / trekking tours + + I EDC depending on mood, but even 75 l, have to walk 10 mins to the car, and got used to it + +### Osprey Farpoint 40 l + +My first "good one", lasted almost 5 years (daily use), back straps broke on an Italy-motorcycle-tour when i probably packed too many beer cans into it. +Laptop compartment isn't really protecting... never really used it. + +### Tatonka Laptop Backpack + +Lasted some years, great protection for 15 " laptop. A bit small when trying to fit something else in there when laptop present. + +### Kelty Redwing 44 l (black) + + + +Current medium backpack (2019+), lot of space, had to bend the aluminium backbone a bit to match my backbone, but then it was great comfort. + +Never used the girdle (closed the clips bending around the backpack instead of my hip) as it's never that heavily loaded. + +You need to think a bit of where to put stuff to keep an aesthetic form though. Somehow when wearing it it looks like an Eastpak school backpack. + +### Gregory Baltoro 75 l (blue) + + + +Current (2020) big daily / trekking backpack. + +Awesome fit (for me). + +Looks awesome, but you'll get looks from people when using it in the city / as a daily. That's why i also wear a $IndianaJones hat to kill last doubt in people on what to think of me :) + +Never tried a laptop in it. + +After ~7 months of daily use the material on the two main shoulder belts is a bit worn, but i often didn't use the tensioner that goes in front of my breast, so there was a lot of rubbing against my clothes. Anyway, this seems to get worse... + + +## TODO / Wishlist + +### Small / caving backpack + +- ideally something that holds a water-tight canister and can be dragged without getting stuck easily. +- maybe EDC-able without looking like a barrel... diff --git a/data/INDEX_template.md b/data/INDEX_template.md new file mode 100644 index 0000000..5219f6c --- /dev/null +++ b/data/INDEX_template.md @@ -0,0 +1,6 @@ +# mucked out db + +[back](..) + +## INDEX + diff --git a/data/attachments/2020-06-23-182943_Backpacks/baltoro.jpg b/data/attachments/2020-06-23-182943_Backpacks/baltoro.jpg new file mode 100644 index 0000000..4deb8b0 Binary files /dev/null and b/data/attachments/2020-06-23-182943_Backpacks/baltoro.jpg differ diff --git a/data/attachments/2020-06-23-182943_Backpacks/redwing.jpg b/data/attachments/2020-06-23-182943_Backpacks/redwing.jpg new file mode 100644 index 0000000..d92c3b5 Binary files /dev/null and b/data/attachments/2020-06-23-182943_Backpacks/redwing.jpg differ diff --git a/data/style.css b/data/style.css new file mode 100644 index 0000000..4a5093d --- /dev/null +++ b/data/style.css @@ -0,0 +1,13 @@ +* { + color: white; + /*font-family: Courier New, Courier, monospace;*/ + font-family: Arial; + background-color: transparent; +} +html { background-color: #16161d; } +a:link {color: dodgerblue} +a:visited {color: dodgerblue} +a:hover {color: dodgerblue} +a:active {color: dodgerblue} +img {padding: 20px} +code {background-color: #555555; font-family: Courier New; font-size: smaller; background-clip: padding-box; border: 0px solid; display: inline-block; margin: 0px;} diff --git a/data/template.md b/data/template.md new file mode 100644 index 0000000..34b78bb --- /dev/null +++ b/data/template.md @@ -0,0 +1,10 @@ +--- +Author: +Tags: +Language: +--- + +# @@title + +## @@desc + diff --git a/data/update.sh b/data/update.sh new file mode 100755 index 0000000..687c805 --- /dev/null +++ b/data/update.sh @@ -0,0 +1,20 @@ +#!/bin/sh + +cp INDEX_template.md INDEX.md + +for i in *.md +do + filename_wo_ext=$(echo "$i" | cut -f 1 -d '.') + if [ $filename_wo_ext != "template" ] && [ $filename_wo_ext != "INDEX_template" ] + then + pandoc $i -s --highlight-style pygments --css=style.css --self-contained -t html5 -o $filename_wo_ext.html + + if [ $filename_wo_ext != "INDEX" ] + then + echo "[$filename_wo_ext]($filename_wo_ext.html) " >> INDEX.md + fi + + fi +done + +ln -s INDEX.html index.html diff --git a/index.html b/index.html new file mode 100644 index 0000000..04bba69 --- /dev/null +++ b/index.html @@ -0,0 +1,15 @@ + + + + + +

mucked out!

+ +

mucked out is a bullshit-free fact database about product and services, exposing marketing-bs and fighting planned obsolescence or cheap products just consuming planetary resources that should have no right to exist.

+

you can join and edit this database via git and markdown

+

repos url soon

+
+go to database
+
+
+ diff --git a/style.css b/style.css new file mode 100644 index 0000000..216401e --- /dev/null +++ b/style.css @@ -0,0 +1,10 @@ +* { + color: white; + /*font-family: Courier New, Courier, monospace;*/ + font-family: Arial; +} +html { background-color: #16161d; } +a:link {color: dodgerblue} +a:visited {color: dodgerblue} +a:hover {color: dodgerblue} +a:active {color: dodgerblue} -- cgit v1.2.2-1-g5e49