From 9b91255904e88aa4b5e362c95542d0493678915e Mon Sep 17 00:00:00 2001 From: Leyla Becker Date: Thu, 19 Feb 2026 11:01:21 -0600 Subject: [PATCH 1/2] copy: added more notes to document --- posts/drafts/remove-tracking-params-from-links.md | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/posts/drafts/remove-tracking-params-from-links.md b/posts/drafts/remove-tracking-params-from-links.md index 73fc610..04523fc 100644 --- a/posts/drafts/remove-tracking-params-from-links.md +++ b/posts/drafts/remove-tracking-params-from-links.md @@ -3,11 +3,14 @@ When you open up your phone and click on or share links though websites and applications websites are secretly injecting tracking information into the pages. -explain why that is a bad thing for privacy, and personal life +While you may like this might not be that important to your life because its not relevant but the information being tracked in those links has large impacts on your life. + +TODO: explain why that is a bad thing for privacy, and personal life - you didn't consent to being tracked you just wanted to open a webpage - can be used to make targeted ads work better and influence people behavers and beliefs - can be used to track what you specifically are looking at on the internet and who you know - it can be used to track and build profiles of who knows who +- even if you agree with what the groups in power are doing right now you shouldn't just give them the tools they need to stop caring about what you think - makes links harder for people to read - saves screen space @@ -147,7 +150,13 @@ explain why that is a bad thing for privacy, and personal life
- https://www.example.com:443/products/shoes?utm_source=facebook&utm_campaign=summer_sale&fbclid=abc123#reviews + https://eggsexposed.com +
+
+ http://www.example.com:8080/products/shoes?utm_source=facebook&utm_campaign=summer_sale&fbclid=abc123#reviews +
+
+ ftp://192.168.0.2:20/lambda/documents
From 46c631ba656a109ca19d2f2c915cc34213e025cf Mon Sep 17 00:00:00 2001 From: Leyla Becker Date: Thu, 19 Feb 2026 11:04:02 -0600 Subject: [PATCH 2/2] feat: added warning banners to drafts --- _includes/post.njk | 5 +++++ _includes/recipe.njk | 5 +++++ css/style.css | 12 ++++++++++++ 3 files changed, 22 insertions(+) diff --git a/_includes/post.njk b/_includes/post.njk index b2ff93b..18feab3 100644 --- a/_includes/post.njk +++ b/_includes/post.njk @@ -3,6 +3,11 @@ layout: base.njk ---
+ {% if not released %} +
+ ⚠️ This post is still a draft and may be incomplete or subject to changes. +
+ {% endif %}

{{ title }}

diff --git a/_includes/recipe.njk b/_includes/recipe.njk index f0a529e..9f92965 100644 --- a/_includes/recipe.njk +++ b/_includes/recipe.njk @@ -2,6 +2,11 @@ layout: base.njk ---
+ {% if isDraft %} +
+ ⚠️ This recipe is still a draft and may be incomplete or subject to changes. +
+ {% endif %}

{{ title }}

{% if isDraft %} diff --git a/css/style.css b/css/style.css index 75a691b..bd9c572 100644 --- a/css/style.css +++ b/css/style.css @@ -319,6 +319,18 @@ a { text-decoration: none; } +/* Draft Warning Banner */ +.draft-warning-banner { + background-color: #fff3cd; + border: 1px solid #ffc107; + border-radius: 5px; + padding: 1rem; + margin-bottom: 1.5rem; + color: #856404; + font-weight: 500; + text-align: center; +} + /* Footer */ footer { margin-top: 2rem;