From 561a04fdeda0eff4a13103998d916b223aaaff69 Mon Sep 17 00:00:00 2001 From: Elias Kohout Date: Mon, 16 Feb 2026 23:16:58 +0100 Subject: [PATCH] feat: add 'coming soon' empty state for projects page & gitignore public dir - Add animated coming-soon card when no projects exist - Add Grafana shortcode and gebrauchtwagen-datenbank project - Add hugo/eliaskohout.de/public/ to .gitignore and remove from tracking --- .gitignore | 1 + hugo/eliaskohout.de/assets/css/style.css | 56 ++++++ .../projects/gebrauchtwagen-datenbank.md | 159 ++++++++++++++++++ hugo/eliaskohout.de/hugo.toml | 3 + .../eliaskohout.de/layouts/_default/list.html | 33 ++-- .../layouts/shortcodes/grafana.html | 13 ++ .../public/categories/index.html | 50 ------ .../public/categories/index.xml | 11 -- hugo/eliaskohout.de/public/css/style.min.css | 1 - hugo/eliaskohout.de/public/index.html | 56 ------ hugo/eliaskohout.de/public/index.xml | 19 --- .../eliaskohout.de/public/projects/index.html | 65 ------- hugo/eliaskohout.de/public/projects/index.xml | 19 --- .../projects/llm-confidence-chat/index.html | 79 --------- hugo/eliaskohout.de/public/sitemap.xml | 28 --- .../public/tags/full-stack/index.html | 67 -------- .../public/tags/full-stack/index.xml | 19 --- hugo/eliaskohout.de/public/tags/index.html | 77 --------- hugo/eliaskohout.de/public/tags/index.xml | 33 ---- hugo/eliaskohout.de/public/tags/ml/index.html | 67 -------- hugo/eliaskohout.de/public/tags/ml/index.xml | 19 --- .../public/tags/python/index.html | 67 -------- .../public/tags/python/index.xml | 19 --- 23 files changed, 253 insertions(+), 708 deletions(-) create mode 100644 hugo/eliaskohout.de/content/projects/gebrauchtwagen-datenbank.md create mode 100644 hugo/eliaskohout.de/layouts/shortcodes/grafana.html delete mode 100644 hugo/eliaskohout.de/public/categories/index.html delete mode 100644 hugo/eliaskohout.de/public/categories/index.xml delete mode 100644 hugo/eliaskohout.de/public/css/style.min.css delete mode 100644 hugo/eliaskohout.de/public/index.html delete mode 100644 hugo/eliaskohout.de/public/index.xml delete mode 100644 hugo/eliaskohout.de/public/projects/index.html delete mode 100644 hugo/eliaskohout.de/public/projects/index.xml delete mode 100644 hugo/eliaskohout.de/public/projects/llm-confidence-chat/index.html delete mode 100644 hugo/eliaskohout.de/public/sitemap.xml delete mode 100644 hugo/eliaskohout.de/public/tags/full-stack/index.html delete mode 100644 hugo/eliaskohout.de/public/tags/full-stack/index.xml delete mode 100644 hugo/eliaskohout.de/public/tags/index.html delete mode 100644 hugo/eliaskohout.de/public/tags/index.xml delete mode 100644 hugo/eliaskohout.de/public/tags/ml/index.html delete mode 100644 hugo/eliaskohout.de/public/tags/ml/index.xml delete mode 100644 hugo/eliaskohout.de/public/tags/python/index.html delete mode 100644 hugo/eliaskohout.de/public/tags/python/index.xml diff --git a/.gitignore b/.gitignore index 2fc83b4..7972f2d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ # ── Hugo ── .hugo_build.lock hugo_stats.json +hugo/eliaskohout.de/public/ # ── macOS ── .DS_Store diff --git a/hugo/eliaskohout.de/assets/css/style.css b/hugo/eliaskohout.de/assets/css/style.css index c987e58..7a06cd6 100644 --- a/hugo/eliaskohout.de/assets/css/style.css +++ b/hugo/eliaskohout.de/assets/css/style.css @@ -118,6 +118,62 @@ svg { gap: 1.5rem; } +.coming-soon { + grid-column: 1 / -1; + text-align: center; + padding: 3rem 2rem; + border: 1px solid rgba(255, 255, 255, 0.08); + border-radius: 12px; + background: rgba(255, 255, 255, 0.03); + -webkit-backdrop-filter: blur(12px); + backdrop-filter: blur(12px); + animation: fadeInUp 0.6s ease-out; +} + +.coming-soon-icon { + display: block; + font-size: 2.5rem; + margin-bottom: 1rem; + animation: float 3s ease-in-out infinite; +} + +.coming-soon h2 { + font-size: 1.4rem; + letter-spacing: 2px; + margin: 0 0 0.5rem; + color: #fff; +} + +.coming-soon p { + color: rgba(255, 255, 255, 0.5); + font-size: 0.95rem; + margin: 0 0 1rem; +} + +.coming-soon-dots span { + display: inline-block; + font-size: 1.5rem; + color: #ff3c3c; + animation: blink 1.4s infinite both; +} +.coming-soon-dots span:nth-child(2) { animation-delay: 0.2s; } +.coming-soon-dots span:nth-child(3) { animation-delay: 0.4s; } + +@keyframes fadeInUp { + from { opacity: 0; transform: translateY(16px); } + to { opacity: 1; transform: translateY(0); } +} + +@keyframes float { + 0%, 100% { transform: translateY(0); } + 50% { transform: translateY(-8px); } +} + +@keyframes blink { + 0%, 80%, 100% { opacity: 0; } + 40% { opacity: 1; } +} + .project-card { display: block; border: 1px solid rgba(255, 255, 255, 0.1); diff --git a/hugo/eliaskohout.de/content/projects/gebrauchtwagen-datenbank.md b/hugo/eliaskohout.de/content/projects/gebrauchtwagen-datenbank.md new file mode 100644 index 0000000..85e8d20 --- /dev/null +++ b/hugo/eliaskohout.de/content/projects/gebrauchtwagen-datenbank.md @@ -0,0 +1,159 @@ +--- +title: "2 Million Used Cars and What They Tell Us" +draft: true +date: 2026-02-12 +tags: ["Scraping", "Data Engineering", "Grafana", "PostgreSQL"] +summary: "Scraping ~2M used car listings, throwing them into a database, and seeing what shakes out." +code: "" +demo: "" +--- + +## The Question + +Everyone's heard the legend: a VW Passat that just keeps going at 400,000 km. But is it actually the only car that pulls that off? What other models quietly rack up absurd mileage — and what do they cost? In short: what makes a car *last*, and can you get one without overpaying? + +Time to find out with data instead of hearsay. + +## The Approach + +A major used car platform turned out to be surprisingly cooperative when it came to structured data. Their recommendation engine helpfully links to similar listings — so starting from a search, you can just keep crawling through related results. + +The haul: roughly **2 million listings** from early 2026, downloaded as JSON and +loaded into a PostgreSQL database. At that point, the recommendation graph +stopped surfacing new entries — a second pass would likely uncover more, since +new listings appear daily. But 2M felt like a solid starting point. + +## The Data + +**2,046,879 listings**, most of them containing the following fields (among others): + +`make` · `model` · `model_variant` · `fuel` · `price` · `mileage` · `power_kw` · +`transmission_type` · `number_of_cylinders` · `body_type` · `body_color` · +`first_registration_date` · `number_of_previous_owners` · `is_roadworthy` · +`is_currently_damaged` · `usage_state` · `type` · `zip_code` · `country_code` · +`city` + +That's enough to get interesting. + +About 119,500 listings were missing either price or mileage — not entirely clear +why, but with nearly 2 million records left, it's barely a dent. + +--- + +## Findings + +### Price vs. Mileage + +The obvious place to start: how does price relate to mileage? + + +{{< grafana url="https://gr.eliaskohout.de/public-dashboards/0852019305114cd189aedb67dea27721" height="450" >}} + +Two hot spots jump out immediately. One in the low-mileage/high-price corner, +one in the high-mileage/low-price corner — exactly what you'd expect. Expensive +special cars that barely leave the garage, and daily drivers with six-figure +odometers priced to move. + +The vast majority of listings, though, cluster in relatively low-price and +low-mileage territory compared to the extremes. + +**A note on clipping.** The plot caps at €1,000,000 and 1,000,000 km because the +*tails get absurd. The highest listed price was €999,999,999 — obviously not +*real. Six listings exceeded €10 million, none of them serious. A handful +*between €1M and €10M could be genuine exotics. On the mileage side, the maximum +*was 100,000,000 km. The highest plausible reading I found was an Iveco truck at +*897,000 km on the odometer. The roughly 570 listings beyond that appeared to be +*typos or placeholder values for "mileage unknown." + +Across the cleaned dataset, averages land at roughly **€28,400** for price and +**75,600 km** for mileage. The standard deviations are enormous — €731k and 109k +km respectively — which tells you just how wide the spread really is. + +That gives an overall average ratio of about **€375 per 1,000 km**. In other +words: for each 1,000 km on the odometer, the average listing costs about €375. +This isn't a depreciation rate in the strict sense — we're looking at a +cross-sectional snapshot of listed prices, not tracking individual cars losing +value over time. But it turns out to be a useful back-of-the-napkin metric for +comparing brands. + +### By Brand + +The dataset contains **346 distinct makes**. Of those, 72 (~21%) have more than +500 listings — enough for halfway meaningful statistics. The rest are too sparse +to generalize from, so brand-level analysis focuses on these 72. + +{{/* dashboard on price per mileage; table with make and euro/km; ordered by price per mileage */}} +{{< grafana url="https://gr.eliaskohout.de/public-dashboards/1777bb018e9b47639b93ef31d97f9c89" height="450" >}} + +The ranking roughly mirrors the common perception of luxury brands — makes with +a reputation for being expensive also tend to show up with high price-per-km +values. No surprises there. + +But this metric has a blind spot: **age**. Brands with almost no older cars on +the market look disproportionately expensive per km, simply because their +listings haven't had time to depreciate. BYD, for example, ranks just below +Ferrari and Rolls-Royce — not because a BYD is a luxury vehicle, but because the +average BYD listing is only **0.7 years** old, compared to the overall average +of **6.7 years**. Leapmotor is even more extreme at **0.5 years**. Give these +brands a few years to accumulate used inventory at higher mileages, and their +ratios will settle down considerably. + +### Depreciation Curves + +You'd expect the price-per-km ratio to fall as mileage increases — older, +high-mileage cars are cheaper, and the new-car premium fades fast. You'd also +expect the decline to be roughly exponential: a car loses a percentage of its +current value per additional kilometer, not a fixed euro amount. + +Both hold up in the data: + +{{/* dashboard on price vs mileage and price/km vs mileage */}} +{{< grafana url="https://gr.eliaskohout.de/public-dashboards/e999ce3c237b4cae95b3331331a26261" height="400" >}} + +The curves above show average prices over mileage for BMW, Volkswagen, and Fiat. +The brand-level differences are immediately visible — different starting points, +different values throughout the decay — but the overall shape is the same: steep +early depreciation that gradually flattens out. + + +* nur zum ende hin verschwimmen die Grenzen, 200k km kann hier als grobe grenze gesehen werden, ab der die daten etwas chaotischer werden +* das könnte auch daran liegen, dass es hier einfach weniger datenpunkte gibt und damit die durchschnittbrechnung schlechter wird + +* also lass uns genauer auf die verteilungen an diesem Ende der skala schauen + + +### The Survivors: Cars Beyond 250k km + + + + +{{/* + ============================================== + PLAN: Analysis chapters to write + ============================================== + + 1. Price vs. Mileage Relationship + - Scatter/heatmap of price vs. mileage across all listings + - Depreciation curves: how fast do different makes lose value? + - The "sweet spot": best mileage-to-price ratio by model + + 2. The Survivors: Cars Beyond 300k km + - Which makes/models appear most often at extreme mileage? + - Fuel type breakdown (diesel vs. petrol at high mileage) + - Average price of high-mileage cars — are they dirt cheap or still holding value? + + + ausfallrate abschätzen + + 4. Fuel & Drivetrain Trends + - Fuel type distribution (diesel/petrol/electric/hybrid/LPG) + - Price and mileage by fuel type + - Are EVs showing up in used markets yet? At what price? + + 5. Geography + - Listings by country and region (zip code clusters) + - Regional price differences for the same model + - Where are the cheap cars? + + ============================================== +*/}} + diff --git a/hugo/eliaskohout.de/hugo.toml b/hugo/eliaskohout.de/hugo.toml index 829e0d0..d260a53 100644 --- a/hugo/eliaskohout.de/hugo.toml +++ b/hugo/eliaskohout.de/hugo.toml @@ -16,3 +16,6 @@ title = 'Elias Kohout' [[params.links]] name = "[r]ezepte" url = "https://r.eliaskohout.de" + +[markup.goldmark.renderer] + unsafe = true diff --git a/hugo/eliaskohout.de/layouts/_default/list.html b/hugo/eliaskohout.de/layouts/_default/list.html index cb68a2a..8eed0d7 100644 --- a/hugo/eliaskohout.de/layouts/_default/list.html +++ b/hugo/eliaskohout.de/layouts/_default/list.html @@ -5,19 +5,28 @@

{{ .Title }}

- {{ range .Pages.ByDate.Reverse }} - - {{ with .Params.image }} - {{ $.Title }} - {{ end }} -

{{ .Title }}

-

- {{ range .Params.tags }} - {{ . }} + {{ if .Pages }} + {{ range .Pages.ByDate.Reverse }} + + {{ with .Params.image }} + {{ $.Title }} {{ end }} -

-

{{ .Params.summary }}

-
+

{{ .Title }}

+

+ {{ range .Params.tags }} + {{ . }} + {{ end }} +

+

{{ .Params.summary }}

+ + {{ end }} + {{ else }} +
+ 🚀 +

More projects coming soon

+

I'm currently working on new things — stay tuned!

+ ... +
{{ end }}
diff --git a/hugo/eliaskohout.de/layouts/shortcodes/grafana.html b/hugo/eliaskohout.de/layouts/shortcodes/grafana.html new file mode 100644 index 0000000..f8231f0 --- /dev/null +++ b/hugo/eliaskohout.de/layouts/shortcodes/grafana.html @@ -0,0 +1,13 @@ +
+ +
diff --git a/hugo/eliaskohout.de/public/categories/index.html b/hugo/eliaskohout.de/public/categories/index.html deleted file mode 100644 index 61b76d6..0000000 --- a/hugo/eliaskohout.de/public/categories/index.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - -Elias Kohout - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - -
-
-

Categories

- -
- -
- - -
- - - diff --git a/hugo/eliaskohout.de/public/categories/index.xml b/hugo/eliaskohout.de/public/categories/index.xml deleted file mode 100644 index dde26c0..0000000 --- a/hugo/eliaskohout.de/public/categories/index.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - Categories on Elias Kohout - http://localhost:1313/categories/ - Recent content in Categories on Elias Kohout - Hugo - de - - - diff --git a/hugo/eliaskohout.de/public/css/style.min.css b/hugo/eliaskohout.de/public/css/style.min.css deleted file mode 100644 index b523c72..0000000 --- a/hugo/eliaskohout.de/public/css/style.min.css +++ /dev/null @@ -1 +0,0 @@ -html,body{margin:0;padding:0;height:100%;background:#000;font-family:geist mono,sans-serif;color:#fff}.background{position:fixed;width:100%;height:100%;top:0;left:0;z-index:0}svg{width:100%;height:100%;filter:blur(1px)brightness(1.2)}.flow-path{fill:none;stroke:#fff;stroke-width:1;stroke-opacity:.2;stroke-dasharray:1500;stroke-dashoffset:0;animation:flow 12s ease-in-out infinite alternate}.glow{stroke-opacity:.12;animation-duration:18s}.flow-path:nth-child(3n){animation-delay:2s}.flow-path:nth-child(4n){animation-delay:4s}@keyframes flow{0%{stroke-dashoffset:0}100%{stroke-dashoffset:3e3}}.centered{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);text-align:center;z-index:1}.centered h1{font-size:3.5rem;margin-bottom:1.5rem;letter-spacing:4px}.centered nav a{display:block;margin:.3rem 0;color:#ccc;text-decoration:none;font-size:1.1rem}.centered nav a:hover{color:#ff3c3c}.nav-label{display:block;font-size:.7rem;color:#555;text-transform:uppercase;letter-spacing:2px;margin-top:1.2rem;margin-bottom:.3rem}.centered nav a[href^=http]::after{content:" ↗";font-size:.8em;opacity:.5}.centered nav a[href^="/"]::after{content:none}.page-content{position:relative;z-index:1;max-width:800px;margin:4rem auto;padding:0 2rem}.page-content h1{font-size:2.5rem;letter-spacing:3px;margin-bottom:2rem}.project-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(320px,1fr));gap:1.5rem}.project-card{display:block;border:1px solid rgba(255,255,255,.1);border-radius:8px;padding:1.5rem;text-decoration:none;color:#fff;transition:border-color .3s,transform .2s;background:rgba(255,255,255,5%);-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px)}.project-card:hover{border-color:#ff3c3c;transform:translateY(-2px);background:rgba(255,255,255,8%)}.project-card img{width:100%;border-radius:4px;margin-bottom:1rem}.project-card h2{font-size:1.3rem;margin:0 0 .5rem}.project-card p{color:#aaa;font-size:.9rem;margin:.3rem 0}.tags{display:flex;gap:.5rem;flex-wrap:wrap;margin:.5rem 0}.tag{background:rgba(255,255,255,8%);padding:.2rem .6rem;border-radius:4px;font-size:.8rem;color:#ccc}.project-links{margin:1rem 0 2rem}.project-links a{color:#ff3c3c;text-decoration:none;margin-right:1rem}.project-links a:hover{text-decoration:underline}.project-body{line-height:1.8;color:#ddd}.project-body h2{color:#fff;margin-top:2rem;font-size:1.4rem}.back-link{margin-top:3rem}.back-link a{color:#888;text-decoration:none;font-size:.9rem}.back-link a:hover{color:#ff3c3c}@media(max-width:600px){.centered h1{font-size:2rem}.page-content{margin:2rem auto}.project-grid{grid-template-columns:1fr}} \ No newline at end of file diff --git a/hugo/eliaskohout.de/public/index.html b/hugo/eliaskohout.de/public/index.html deleted file mode 100644 index b812625..0000000 --- a/hugo/eliaskohout.de/public/index.html +++ /dev/null @@ -1,56 +0,0 @@ - - - - - -Elias Kohout - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - -
-
-

Elias Kohout

- -
- - - diff --git a/hugo/eliaskohout.de/public/index.xml b/hugo/eliaskohout.de/public/index.xml deleted file mode 100644 index 774552a..0000000 --- a/hugo/eliaskohout.de/public/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Elias Kohout - http://localhost:1313/ - Recent content on Elias Kohout - Hugo - de - Sat, 01 Jun 2024 00:00:00 +0000 - - - LLM Confidence Chat Interface - http://localhost:1313/projects/llm-confidence-chat/ - Sat, 01 Jun 2024 00:00:00 +0000 - http://localhost:1313/projects/llm-confidence-chat/ - A chat interface making LLM confidence scores accessible to non-technical users. - - - diff --git a/hugo/eliaskohout.de/public/projects/index.html b/hugo/eliaskohout.de/public/projects/index.html deleted file mode 100644 index b0d99eb..0000000 --- a/hugo/eliaskohout.de/public/projects/index.html +++ /dev/null @@ -1,65 +0,0 @@ - - - - -Elias Kohout - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - -
-
-

Projects

- - - - -
- - - diff --git a/hugo/eliaskohout.de/public/projects/index.xml b/hugo/eliaskohout.de/public/projects/index.xml deleted file mode 100644 index 05d17b6..0000000 --- a/hugo/eliaskohout.de/public/projects/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Projects on Elias Kohout - http://localhost:1313/projects/ - Recent content in Projects on Elias Kohout - Hugo - de - Sat, 01 Jun 2024 00:00:00 +0000 - - - LLM Confidence Chat Interface - http://localhost:1313/projects/llm-confidence-chat/ - Sat, 01 Jun 2024 00:00:00 +0000 - http://localhost:1313/projects/llm-confidence-chat/ - A chat interface making LLM confidence scores accessible to non-technical users. - - - diff --git a/hugo/eliaskohout.de/public/projects/llm-confidence-chat/index.html b/hugo/eliaskohout.de/public/projects/llm-confidence-chat/index.html deleted file mode 100644 index a498928..0000000 --- a/hugo/eliaskohout.de/public/projects/llm-confidence-chat/index.html +++ /dev/null @@ -1,79 +0,0 @@ - - - - -Elias Kohout - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - -
-
-

LLM Confidence Chat Interface

- -

- - Python - - ML - - Full-Stack - -

- - - -
-

Problem

-

Non-technical users have no way to assess how confident an LLM is in its responses.

-

Approach

-

Built an interactive chat interface integrating lm-polygraph for -uncertainty estimation with an intuitive visualization layer.

-

Tech Stack

-
    -
  • Python, FastAPI
  • -
  • lm-polygraph
  • -
  • React
  • -
-

Challenges & Learnings

-

Translating probabilistic outputs into user-friendly visual indicators -while keeping the interface responsive.

- -
- - -
- - - diff --git a/hugo/eliaskohout.de/public/sitemap.xml b/hugo/eliaskohout.de/public/sitemap.xml deleted file mode 100644 index b7ac5df..0000000 --- a/hugo/eliaskohout.de/public/sitemap.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - http://localhost:1313/ - 2024-06-01T00:00:00+00:00 - - http://localhost:1313/tags/full-stack/ - 2024-06-01T00:00:00+00:00 - - http://localhost:1313/projects/llm-confidence-chat/ - 2024-06-01T00:00:00+00:00 - - http://localhost:1313/tags/ml/ - 2024-06-01T00:00:00+00:00 - - http://localhost:1313/projects/ - 2024-06-01T00:00:00+00:00 - - http://localhost:1313/tags/python/ - 2024-06-01T00:00:00+00:00 - - http://localhost:1313/tags/ - 2024-06-01T00:00:00+00:00 - - http://localhost:1313/categories/ - - diff --git a/hugo/eliaskohout.de/public/tags/full-stack/index.html b/hugo/eliaskohout.de/public/tags/full-stack/index.html deleted file mode 100644 index 25d9589..0000000 --- a/hugo/eliaskohout.de/public/tags/full-stack/index.html +++ /dev/null @@ -1,67 +0,0 @@ - - - - -Elias Kohout - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - -
-
-

Full-Stack

- - - - -
- - - diff --git a/hugo/eliaskohout.de/public/tags/full-stack/index.xml b/hugo/eliaskohout.de/public/tags/full-stack/index.xml deleted file mode 100644 index bce8e69..0000000 --- a/hugo/eliaskohout.de/public/tags/full-stack/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Full-Stack on Elias Kohout - http://localhost:1313/tags/full-stack/ - Recent content in Full-Stack on Elias Kohout - Hugo - de - Sat, 01 Jun 2024 00:00:00 +0000 - - - LLM Confidence Chat Interface - http://localhost:1313/projects/llm-confidence-chat/ - Sat, 01 Jun 2024 00:00:00 +0000 - http://localhost:1313/projects/llm-confidence-chat/ - A chat interface making LLM confidence scores accessible to non-technical users. - - - diff --git a/hugo/eliaskohout.de/public/tags/index.html b/hugo/eliaskohout.de/public/tags/index.html deleted file mode 100644 index d8d9556..0000000 --- a/hugo/eliaskohout.de/public/tags/index.html +++ /dev/null @@ -1,77 +0,0 @@ - - - - -Elias Kohout - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - -
-
-

Tags

- - - - -
- - - diff --git a/hugo/eliaskohout.de/public/tags/index.xml b/hugo/eliaskohout.de/public/tags/index.xml deleted file mode 100644 index 19f9bfe..0000000 --- a/hugo/eliaskohout.de/public/tags/index.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - - Tags on Elias Kohout - http://localhost:1313/tags/ - Recent content in Tags on Elias Kohout - Hugo - de - Sat, 01 Jun 2024 00:00:00 +0000 - - - Full-Stack - http://localhost:1313/tags/full-stack/ - Sat, 01 Jun 2024 00:00:00 +0000 - http://localhost:1313/tags/full-stack/ - - - - ML - http://localhost:1313/tags/ml/ - Sat, 01 Jun 2024 00:00:00 +0000 - http://localhost:1313/tags/ml/ - - - - Python - http://localhost:1313/tags/python/ - Sat, 01 Jun 2024 00:00:00 +0000 - http://localhost:1313/tags/python/ - - - - diff --git a/hugo/eliaskohout.de/public/tags/ml/index.html b/hugo/eliaskohout.de/public/tags/ml/index.html deleted file mode 100644 index e44b1c9..0000000 --- a/hugo/eliaskohout.de/public/tags/ml/index.html +++ /dev/null @@ -1,67 +0,0 @@ - - - - -Elias Kohout - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - -
-
-

ML

- - - - -
- - - diff --git a/hugo/eliaskohout.de/public/tags/ml/index.xml b/hugo/eliaskohout.de/public/tags/ml/index.xml deleted file mode 100644 index bf07c75..0000000 --- a/hugo/eliaskohout.de/public/tags/ml/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - ML on Elias Kohout - http://localhost:1313/tags/ml/ - Recent content in ML on Elias Kohout - Hugo - de - Sat, 01 Jun 2024 00:00:00 +0000 - - - LLM Confidence Chat Interface - http://localhost:1313/projects/llm-confidence-chat/ - Sat, 01 Jun 2024 00:00:00 +0000 - http://localhost:1313/projects/llm-confidence-chat/ - A chat interface making LLM confidence scores accessible to non-technical users. - - - diff --git a/hugo/eliaskohout.de/public/tags/python/index.html b/hugo/eliaskohout.de/public/tags/python/index.html deleted file mode 100644 index 46717c9..0000000 --- a/hugo/eliaskohout.de/public/tags/python/index.html +++ /dev/null @@ -1,67 +0,0 @@ - - - - -Elias Kohout - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - -
-
-

Python

- - - - -
- - - diff --git a/hugo/eliaskohout.de/public/tags/python/index.xml b/hugo/eliaskohout.de/public/tags/python/index.xml deleted file mode 100644 index ea861de..0000000 --- a/hugo/eliaskohout.de/public/tags/python/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Python on Elias Kohout - http://localhost:1313/tags/python/ - Recent content in Python on Elias Kohout - Hugo - de - Sat, 01 Jun 2024 00:00:00 +0000 - - - LLM Confidence Chat Interface - http://localhost:1313/projects/llm-confidence-chat/ - Sat, 01 Jun 2024 00:00:00 +0000 - http://localhost:1313/projects/llm-confidence-chat/ - A chat interface making LLM confidence scores accessible to non-technical users. - - -