From e09c3635e15f71ba3d5b68063846dbed5e0b0b72 Mon Sep 17 00:00:00 2001 From: Owen Date: Thu, 28 May 2026 18:01:08 -0400 Subject: [PATCH 01/40] Add GitHub Actions workflow to update YouTube section I wanna see if this works I'm bored --- .github/workflows/update-youtube.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/update-youtube.yml diff --git a/.github/workflows/update-youtube.yml b/.github/workflows/update-youtube.yml new file mode 100644 index 0000000..97e6cc8 --- /dev/null +++ b/.github/workflows/update-youtube.yml @@ -0,0 +1,24 @@ + name: Update YouTube Section + + on: + schedule: + - cron: '0 */6 * * *' + workflow_dispatch: + + jobs: + update: + runs-on: ubuntu-latest + permissions: + contents: write + steps: + - uses: actions/checkout@v4 + + - name: Update YouTube section + run: python .github/scripts/update_youtube.py + + - name: Commit and push if changed + run: | + git config user.name "github-actions[bot]" + git config user.email "github-actions[bot]@users.noreply.github.com" + git add index.html + git diff --staged --quiet || (git commit -m "chore: auto-update YouTube section" && git push) From 3efa00d44753eca19cec2b8bacbdbb5a5d8329a9 Mon Sep 17 00:00:00 2001 From: Owen Date: Thu, 28 May 2026 18:02:05 -0400 Subject: [PATCH 02/40] Add script to update YouTube video embed in HTML --- .github/scripts/update_youtube.py | 46 +++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 .github/scripts/update_youtube.py diff --git a/.github/scripts/update_youtube.py b/.github/scripts/update_youtube.py new file mode 100644 index 0000000..a611fc1 --- /dev/null +++ b/.github/scripts/update_youtube.py @@ -0,0 +1,46 @@ + import urllib.request + import xml.etree.ElementTree as ET + import re + + CHANNEL_ID = "UCM4Zvt9DVqzAHJOJoCgcF_g" + RSS_URL = f"https://www.youtube.com/feeds/videos.xml?channel_id={CHANNEL_ID}" + + NS = { + "atom": "http://www.w3.org/2005/Atom", + "yt": "http://www.youtube.com/xml/schemas/2015", + } + + with urllib.request.urlopen(RSS_URL) as r: + root = ET.fromstring(r.read()) + + entry = root.find("atom:entry", NS) + title = entry.find("atom:title", NS).text + video_id = entry.find("yt:videoId", NS).text + embed_url = f"https://www.youtube.com/embed/{video_id}" + + block = ( + "\n" + f'

7Zeb\'s Newest Video is: {title}

\n' + f'

Watch it now!

\n' + f' \n' + " " + ) + + with open("index.html", "r") as f: + content = f.read() + + updated = re.sub( + r".*?", + block, + content, + flags=re.DOTALL, + ) + + if updated == content: + print("No change.") + else: + with open("index.html", "w") as f: + f.write(updated) + print(f"Updated: {title} ({video_id})") From 22a5850e434333b82bd2a5ec14ef1698f74db812 Mon Sep 17 00:00:00 2001 From: Owen Date: Thu, 28 May 2026 18:03:33 -0400 Subject: [PATCH 03/40] Add the comments so the workflow works --- index.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index 267327b..1cd2851 100644 --- a/index.html +++ b/index.html @@ -42,12 +42,14 @@

Welcome to 7Zeb's Website

- +

Newest Video

+

7Zeb's Newest Video is: Installing Windows Sun Valley on real hardware

Watch it now!

+

Currently 735 Subscribers (-1 Since Last Update)

Go to 7Zeb's Channel


From 1ae3947b78b5a6477b9b846f3855b05deb404097 Mon Sep 17 00:00:00 2001 From: Owen Date: Thu, 28 May 2026 18:05:16 -0400 Subject: [PATCH 04/40] Fix my idiotic self putting an indent in all lines --- .github/scripts/update_youtube.py | 93 ++++++++++++++++--------------- 1 file changed, 47 insertions(+), 46 deletions(-) diff --git a/.github/scripts/update_youtube.py b/.github/scripts/update_youtube.py index a611fc1..474454d 100644 --- a/.github/scripts/update_youtube.py +++ b/.github/scripts/update_youtube.py @@ -1,46 +1,47 @@ - import urllib.request - import xml.etree.ElementTree as ET - import re - - CHANNEL_ID = "UCM4Zvt9DVqzAHJOJoCgcF_g" - RSS_URL = f"https://www.youtube.com/feeds/videos.xml?channel_id={CHANNEL_ID}" - - NS = { - "atom": "http://www.w3.org/2005/Atom", - "yt": "http://www.youtube.com/xml/schemas/2015", - } - - with urllib.request.urlopen(RSS_URL) as r: - root = ET.fromstring(r.read()) - - entry = root.find("atom:entry", NS) - title = entry.find("atom:title", NS).text - video_id = entry.find("yt:videoId", NS).text - embed_url = f"https://www.youtube.com/embed/{video_id}" - - block = ( - "\n" - f'

7Zeb\'s Newest Video is: {title}

\n' - f'

Watch it now!

\n' - f' \n' - " " - ) - - with open("index.html", "r") as f: - content = f.read() - - updated = re.sub( - r".*?", - block, - content, - flags=re.DOTALL, - ) - - if updated == content: - print("No change.") - else: - with open("index.html", "w") as f: - f.write(updated) - print(f"Updated: {title} ({video_id})") +import urllib.request +import xml.etree.ElementTree as ET +import re + +CHANNEL_ID = "UCM4Zvt9DVqzAHJOJoCgcF_g" +RSS_URL = f"https://www.youtube.com/feeds/videos.xml?channel_id={CHANNEL_ID}" + +NS = { + "atom": "http://www.w3.org/2005/Atom", + "yt": "http://www.youtube.com/xml/schemas/2015", +} + +with urllib.request.urlopen(RSS_URL) as r: + root = ET.fromstring(r.read()) + +entry = root.find("atom:entry", NS) +title = entry.find("atom:title", NS).text +video_id = entry.find("yt:videoId", NS).text +embed_url = f"https://www.youtube.com/embed/{video_id}" + +block = ( + "\n" + f"

7Zeb's Newest Video is: {title}

\n" + f"

Watch it now!

\n" + f' \n' + " " +) + +with open("index.html", "r") as f: + content = f.read() + +updated = re.sub( + r".*?", + block, + content, + flags=re.DOTALL, +) + +if updated == content: + print("No change.") +else: + with open("index.html", "w") as f: + f.write(updated) + + print(f"Updated: {title} ({video_id})") From 5e88d6817b6698ad40532287b6e4a787c6fe5488 Mon Sep 17 00:00:00 2001 From: Owen Date: Thu, 28 May 2026 18:07:11 -0400 Subject: [PATCH 05/40] Re add the comment --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 1cd2851..5ee1f64 100644 --- a/index.html +++ b/index.html @@ -42,7 +42,7 @@

Welcome to 7Zeb's Website

- +

Newest Video

From ea4aee9c571bd786f04f736979e5de735ae1ddc2 Mon Sep 17 00:00:00 2001 From: Owen Date: Thu, 28 May 2026 18:39:42 -0400 Subject: [PATCH 06/40] Change path to index.html in update_youtube.py --- .github/scripts/update_youtube.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/update_youtube.py b/.github/scripts/update_youtube.py index 474454d..a27c5fe 100644 --- a/.github/scripts/update_youtube.py +++ b/.github/scripts/update_youtube.py @@ -28,7 +28,7 @@ " " ) -with open("index.html", "r") as f: +with open("../../index.html", "r") as f: content = f.read() updated = re.sub( From 261174d3193e23673737c279a5a353ec8ef859b5 Mon Sep 17 00:00:00 2001 From: Owen Date: Thu, 28 May 2026 18:41:23 -0400 Subject: [PATCH 07/40] Implement error handling for YouTube markers Added error handling for missing markers in index.html. --- .github/scripts/update_youtube.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/scripts/update_youtube.py b/.github/scripts/update_youtube.py index a27c5fe..2604bb9 100644 --- a/.github/scripts/update_youtube.py +++ b/.github/scripts/update_youtube.py @@ -26,8 +26,12 @@ f'allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" ' f'referrerpolicy="strict-origin-when-cross-origin" allowfullscreen>\n' " " -) +)= +if "" not in content: + raise RuntimeError("Markers not found in index.html — add and around the newest video block.") + with open("../../index.html", "r") as f: content = f.read() From 9b6b889d081b0bd87958fb96534011f2d674afb7 Mon Sep 17 00:00:00 2001 From: Owen Date: Thu, 28 May 2026 18:41:38 -0400 Subject: [PATCH 08/40] Fix file path for index.html in update_youtube.py --- .github/scripts/update_youtube.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/update_youtube.py b/.github/scripts/update_youtube.py index 2604bb9..e696f33 100644 --- a/.github/scripts/update_youtube.py +++ b/.github/scripts/update_youtube.py @@ -32,7 +32,7 @@ raise RuntimeError("Markers not found in index.html — add and around the newest video block.") -with open("../../index.html", "r") as f: +with open("index.html", "r") as f: content = f.read() updated = re.sub( From 72af1425914ac35f9440dfa78f80950b523f6deb Mon Sep 17 00:00:00 2001 From: Owen Date: Thu, 28 May 2026 18:42:43 -0400 Subject: [PATCH 09/40] Add UTF-8 encoding to file operations in update_youtube.py --- .github/scripts/update_youtube.py | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/.github/scripts/update_youtube.py b/.github/scripts/update_youtube.py index e696f33..e61ad54 100644 --- a/.github/scripts/update_youtube.py +++ b/.github/scripts/update_youtube.py @@ -26,15 +26,17 @@ f'allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" ' f'referrerpolicy="strict-origin-when-cross-origin" allowfullscreen>\n' " " -)= +) -if "" not in content: - raise RuntimeError("Markers not found in index.html — add and around the newest video block.") - -with open("index.html", "r") as f: +with open("index.html", "r", encoding="utf-8") as f: content = f.read() +if "" not in content: + raise RuntimeError( + "Markers not found in index.html, add " + "and around the newest video block." + ) + updated = re.sub( r".*?", block, @@ -45,7 +47,7 @@ if updated == content: print("No change.") else: - with open("index.html", "w") as f: + with open("index.html", "w", encoding="utf-8") as f: f.write(updated) print(f"Updated: {title} ({video_id})") From 251179a8dc0bfd0bddf395544187433f767ddc3d Mon Sep 17 00:00:00 2001 From: Owen Date: Thu, 28 May 2026 18:43:32 -0400 Subject: [PATCH 10/40] Fix comment formatting for YouTube section --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 5ee1f64..0269954 100644 --- a/index.html +++ b/index.html @@ -45,7 +45,7 @@

Welcome to 7Zeb's Website

Newest Video

- +

7Zeb's Newest Video is: Installing Windows Sun Valley on real hardware

Watch it now!

From 8e50d85744cdc55187e14e024467ac7fd0f9d88f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 28 May 2026 22:43:52 +0000 Subject: [PATCH 11/40] chore: auto-update YouTube section --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 0269954..b4e87d8 100644 --- a/index.html +++ b/index.html @@ -46,9 +46,9 @@

Welcome to 7Zeb's Website

Newest Video

-

7Zeb's Newest Video is: Installing Windows Sun Valley on real hardware

+

7Zeb's Newest Video is: “Off to a horrible start” - Exploring Windows 8 Build7978(fbldnt3wireless) But Everything Goes Wrong

Watch it now!

- +

Currently 735 Subscribers (-1 Since Last Update)

Go to 7Zeb's Channel

From 8bd1c505848fae052311adac1bfce26a92166be1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 30 May 2026 03:44:45 +0000 Subject: [PATCH 12/40] chore: auto-update YouTube section --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index b4e87d8..dd2b075 100644 --- a/index.html +++ b/index.html @@ -46,9 +46,9 @@

Welcome to 7Zeb's Website

Newest Video

-

7Zeb's Newest Video is: “Off to a horrible start” - Exploring Windows 8 Build7978(fbldnt3wireless) But Everything Goes Wrong

+

7Zeb's Newest Video is: why does it look like the German empire tho 💀😭 #shorts #histo #worldhistory #memes

Watch it now!

- +

Currently 735 Subscribers (-1 Since Last Update)

Go to 7Zeb's Channel

From 31b6196a7c42173c3a72c51a2ae0a13e1c6abe11 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sun, 31 May 2026 04:10:42 +0000 Subject: [PATCH 13/40] chore: auto-update YouTube section --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index dd2b075..b9bfc94 100644 --- a/index.html +++ b/index.html @@ -46,9 +46,9 @@

Welcome to 7Zeb's Website

Newest Video

-

7Zeb's Newest Video is: why does it look like the German empire tho 💀😭 #shorts #histo #worldhistory #memes

+

7Zeb's Newest Video is: I try installing Windows 8 build 7989 but its the wrong file

Watch it now!

- +

Currently 735 Subscribers (-1 Since Last Update)

Go to 7Zeb's Channel

From a6182d9b6bd10c5330309a0fbe3384099af56ef3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sun, 31 May 2026 19:21:48 +0000 Subject: [PATCH 14/40] chore: auto-update YouTube section --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index b9bfc94..3a24cd6 100644 --- a/index.html +++ b/index.html @@ -46,9 +46,9 @@

Welcome to 7Zeb's Website

Newest Video

-

7Zeb's Newest Video is: I try installing Windows 8 build 7989 but its the wrong file

+

7Zeb's Newest Video is: you can buy the sun #memes

Watch it now!

- +

Currently 735 Subscribers (-1 Since Last Update)

Go to 7Zeb's Channel

From 4638b69dfca7c93e59d890f0505dcc2608ce1b29 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 1 Jun 2026 04:25:01 +0000 Subject: [PATCH 15/40] chore: auto-update YouTube section --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 3a24cd6..464567d 100644 --- a/index.html +++ b/index.html @@ -46,9 +46,9 @@

Welcome to 7Zeb's Website

Newest Video

-

7Zeb's Newest Video is: you can buy the sun #memes

+

7Zeb's Newest Video is: “Cat images in Windows” - Exploring Windows 8 Build 7989

Watch it now!

- +

Currently 735 Subscribers (-1 Since Last Update)

Go to 7Zeb's Channel

From 6473c7081a3632110ebb760dcc21d60269d78f01 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 2 Jun 2026 10:42:53 +0000 Subject: [PATCH 16/40] chore: auto-update YouTube section --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 464567d..604e477 100644 --- a/index.html +++ b/index.html @@ -46,9 +46,9 @@

Welcome to 7Zeb's Website

Newest Video

-

7Zeb's Newest Video is: “Cat images in Windows” - Exploring Windows 8 Build 7989

+

7Zeb's Newest Video is: 6 Years of YouTube - Thank You

Watch it now!

- +

Currently 735 Subscribers (-1 Since Last Update)

Go to 7Zeb's Channel

From c23f463aa4225ffc7ea66c1e19e31a32761d5bd1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 3 Jun 2026 11:06:47 +0000 Subject: [PATCH 17/40] chore: auto-update YouTube section --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 604e477..8fed781 100644 --- a/index.html +++ b/index.html @@ -46,9 +46,9 @@

Welcome to 7Zeb's Website

Newest Video

-

7Zeb's Newest Video is: 6 Years of YouTube - Thank You

+

7Zeb's Newest Video is: map of Toniron #mocodonia

Watch it now!

- +

Currently 735 Subscribers (-1 Since Last Update)

Go to 7Zeb's Channel

From 7a75dfa874576eb47143554ecf30f9f974cf5bff Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 3 Jun 2026 16:56:41 +0000 Subject: [PATCH 18/40] chore: auto-update YouTube section --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 8fed781..cdd6fe1 100644 --- a/index.html +++ b/index.html @@ -46,9 +46,9 @@

Welcome to 7Zeb's Website

Newest Video

-

7Zeb's Newest Video is: map of Toniron #mocodonia

+

7Zeb's Newest Video is: Ranking Fast Food Places in a Tier List

Watch it now!

- +

Currently 735 Subscribers (-1 Since Last Update)

Go to 7Zeb's Channel

From 789ff5ef66df3c938294273efc80c6b5b3dee282 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 5 Jun 2026 09:58:05 +0000 Subject: [PATCH 19/40] chore: auto-update YouTube section --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index cdd6fe1..5581a52 100644 --- a/index.html +++ b/index.html @@ -46,9 +46,9 @@

Welcome to 7Zeb's Website

Newest Video

-

7Zeb's Newest Video is: Ranking Fast Food Places in a Tier List

+

7Zeb's Newest Video is: who wants it

Watch it now!

- +

Currently 735 Subscribers (-1 Since Last Update)

Go to 7Zeb's Channel

From 20dc4a92cdfadfe79df7892cf12f49acbbdc19ba Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 5 Jun 2026 14:57:54 +0000 Subject: [PATCH 20/40] chore: auto-update YouTube section --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 5581a52..e6ee1a3 100644 --- a/index.html +++ b/index.html @@ -46,9 +46,9 @@

Welcome to 7Zeb's Website

Newest Video

-

7Zeb's Newest Video is: who wants it

+

7Zeb's Newest Video is: test

Watch it now!

- +

Currently 735 Subscribers (-1 Since Last Update)

Go to 7Zeb's Channel

From 3354125cbc4dc066c77bc3e23934a90e932e148d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 13 Jun 2026 19:41:37 +0000 Subject: [PATCH 21/40] chore: auto-update YouTube section --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index e6ee1a3..6c52d36 100644 --- a/index.html +++ b/index.html @@ -46,9 +46,9 @@

Welcome to 7Zeb's Website

Newest Video

-

7Zeb's Newest Video is: test

+

7Zeb's Newest Video is: y'all wanna buy the underground? #london #memes #londonundergroundtransport #tfl

Watch it now!

- +

Currently 735 Subscribers (-1 Since Last Update)

Go to 7Zeb's Channel

From 4e6695932bde56578a85d7d5a48d19678093978f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 15 Jun 2026 12:22:46 +0000 Subject: [PATCH 22/40] chore: auto-update YouTube section --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 6c52d36..46432e7 100644 --- a/index.html +++ b/index.html @@ -46,9 +46,9 @@

Welcome to 7Zeb's Website

Newest Video

-

7Zeb's Newest Video is: y'all wanna buy the underground? #london #memes #londonundergroundtransport #tfl

+

7Zeb's Newest Video is: only day you can use this sound

Watch it now!

- +

Currently 735 Subscribers (-1 Since Last Update)

Go to 7Zeb's Channel

From 5b3d9360ffaa7dd0739df59db4a3eac236c19f2d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 15 Jun 2026 21:08:12 +0000 Subject: [PATCH 23/40] chore: auto-update YouTube section --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 46432e7..bf23a54 100644 --- a/index.html +++ b/index.html @@ -46,9 +46,9 @@

Welcome to 7Zeb's Website

Newest Video

-

7Zeb's Newest Video is: only day you can use this sound

+

7Zeb's Newest Video is: this is not flying gng #plen #avation #memes

Watch it now!

- +

Currently 735 Subscribers (-1 Since Last Update)

Go to 7Zeb's Channel

From ec27afe3602189d8db0ef2e0d5d698de6424cff5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 19 Jun 2026 15:27:32 +0000 Subject: [PATCH 24/40] chore: auto-update YouTube section --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index bf23a54..9c69b20 100644 --- a/index.html +++ b/index.html @@ -46,9 +46,9 @@

Welcome to 7Zeb's Website

Newest Video

-

7Zeb's Newest Video is: this is not flying gng #plen #avation #memes

+

7Zeb's Newest Video is: Channel Annoucments June 19, 2026

Watch it now!

- +

Currently 735 Subscribers (-1 Since Last Update)

Go to 7Zeb's Channel

From 40056d302c12285ccb2b1662b81389c69421c135 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 20 Jun 2026 14:10:40 +0000 Subject: [PATCH 25/40] chore: auto-update YouTube section --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 9c69b20..1a1dc08 100644 --- a/index.html +++ b/index.html @@ -46,9 +46,9 @@

Welcome to 7Zeb's Website

Newest Video

-

7Zeb's Newest Video is: Channel Annoucments June 19, 2026

+

7Zeb's Newest Video is: Windows ME upgrade

Watch it now!

- +

Currently 735 Subscribers (-1 Since Last Update)

Go to 7Zeb's Channel

From ae059fc30d9508cc3d2068641c74425f344e3ea5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sun, 21 Jun 2026 14:18:25 +0000 Subject: [PATCH 26/40] chore: auto-update YouTube section --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 1a1dc08..50e8ebe 100644 --- a/index.html +++ b/index.html @@ -46,9 +46,9 @@

Welcome to 7Zeb's Website

Newest Video

-

7Zeb's Newest Video is: Windows ME upgrade

+

7Zeb's Newest Video is: Dell Inspiron 3535 - My Review Finally

Watch it now!

- +

Currently 735 Subscribers (-1 Since Last Update)

Go to 7Zeb's Channel

From 6c68107d233d498562d3acef8eb1241eaf7a562a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 22 Jun 2026 12:10:42 +0000 Subject: [PATCH 27/40] chore: auto-update YouTube section --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 50e8ebe..b9a08ab 100644 --- a/index.html +++ b/index.html @@ -46,9 +46,9 @@

Welcome to 7Zeb's Website

Newest Video

-

7Zeb's Newest Video is: Dell Inspiron 3535 - My Review Finally

+

7Zeb's Newest Video is: Exploring Windows 8 Build 7990 (fbl_core1_kernel)

Watch it now!

- +

Currently 735 Subscribers (-1 Since Last Update)

Go to 7Zeb's Channel

From 79ff7bce56722a6522ff74e9fe980a2e1c3071fc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 23 Jun 2026 20:10:02 +0000 Subject: [PATCH 28/40] chore: auto-update YouTube section --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index b9a08ab..68ed0a1 100644 --- a/index.html +++ b/index.html @@ -46,9 +46,9 @@

Welcome to 7Zeb's Website

Newest Video

-

7Zeb's Newest Video is: Exploring Windows 8 Build 7990 (fbl_core1_kernel)

+

7Zeb's Newest Video is: Exploring Windows 8 build 7991

Watch it now!

- +

Currently 735 Subscribers (-1 Since Last Update)

Go to 7Zeb's Channel

From 2df0e6fbe5a0794cb7e739e487177849834e165e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 24 Jun 2026 09:37:01 +0000 Subject: [PATCH 29/40] chore: auto-update YouTube section --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 68ed0a1..efeffb2 100644 --- a/index.html +++ b/index.html @@ -46,9 +46,9 @@

Welcome to 7Zeb's Website

Newest Video

-

7Zeb's Newest Video is: Exploring Windows 8 build 7991

+

7Zeb's Newest Video is: Saturday

Watch it now!

- +

Currently 735 Subscribers (-1 Since Last Update)

Go to 7Zeb's Channel

From b193cb26c0b79ec5e4e4321bf3cb10bd67f89d97 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 25 Jun 2026 14:38:52 +0000 Subject: [PATCH 30/40] chore: auto-update YouTube section --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index efeffb2..46dc9b3 100644 --- a/index.html +++ b/index.html @@ -46,9 +46,9 @@

Welcome to 7Zeb's Website

Newest Video

-

7Zeb's Newest Video is: Saturday

+

7Zeb's Newest Video is: “Gradients spawned in” - Exploring Windows 8 Build 7992 (fbl_dnt3_wireless)

Watch it now!

- +

Currently 735 Subscribers (-1 Since Last Update)

Go to 7Zeb's Channel

From c05edb9e0a4abf5cb8704a7e73c9e7432c8166cd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 26 Jun 2026 14:31:58 +0000 Subject: [PATCH 31/40] chore: auto-update YouTube section --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 46dc9b3..f57acf6 100644 --- a/index.html +++ b/index.html @@ -46,9 +46,9 @@

Welcome to 7Zeb's Website

Newest Video

-

7Zeb's Newest Video is: “Gradients spawned in” - Exploring Windows 8 Build 7992 (fbl_dnt3_wireless)

+

7Zeb's Newest Video is: LimeOrange Express

Watch it now!

- +

Currently 735 Subscribers (-1 Since Last Update)

Go to 7Zeb's Channel

From 37d9aff844c4596c9678a6e98aae1bc9aa1bfb45 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 26 Jun 2026 19:53:45 +0000 Subject: [PATCH 32/40] chore: auto-update YouTube section --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index f57acf6..085b58e 100644 --- a/index.html +++ b/index.html @@ -46,9 +46,9 @@

Welcome to 7Zeb's Website

Newest Video

-

7Zeb's Newest Video is: LimeOrange Express

+

7Zeb's Newest Video is: POV: you found the Desert Temple irl #memes #minecraft#gaming

Watch it now!

- +

Currently 735 Subscribers (-1 Since Last Update)

Go to 7Zeb's Channel

From f506c9728d413ba81d2293222042268d11e1d496 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 27 Jun 2026 13:49:35 +0000 Subject: [PATCH 33/40] chore: auto-update YouTube section --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 085b58e..6866ce1 100644 --- a/index.html +++ b/index.html @@ -46,9 +46,9 @@

Welcome to 7Zeb's Website

Newest Video

-

7Zeb's Newest Video is: POV: you found the Desert Temple irl #memes #minecraft#gaming

+

7Zeb's Newest Video is: Why Windows 11 isn't as bad as you think

Watch it now!

- +

Currently 735 Subscribers (-1 Since Last Update)

Go to 7Zeb's Channel

From 08464fa508353153d475e7911865ecf1600f0042 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sun, 28 Jun 2026 08:57:07 +0000 Subject: [PATCH 34/40] chore: auto-update YouTube section --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 6866ce1..b258d9f 100644 --- a/index.html +++ b/index.html @@ -46,9 +46,9 @@

Welcome to 7Zeb's Website

Newest Video

-

7Zeb's Newest Video is: Why Windows 11 isn't as bad as you think

+

7Zeb's Newest Video is: “Ship It” - Exploring Windows 95 Build 302

Watch it now!

- +

Currently 735 Subscribers (-1 Since Last Update)

Go to 7Zeb's Channel

From 31ec6305d7f534699b250aba4f8ffd78b81ae309 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 29 Jun 2026 04:15:47 +0000 Subject: [PATCH 35/40] chore: auto-update YouTube section --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index b258d9f..866759a 100644 --- a/index.html +++ b/index.html @@ -46,9 +46,9 @@

Welcome to 7Zeb's Website

Newest Video

-

7Zeb's Newest Video is: “Ship It” - Exploring Windows 95 Build 302

+

7Zeb's Newest Video is: Idk

Watch it now!

- +

Currently 735 Subscribers (-1 Since Last Update)

Go to 7Zeb's Channel

From 9ff05e96d30f205490f86b789677b12df5034974 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 30 Jun 2026 14:25:54 +0000 Subject: [PATCH 36/40] chore: auto-update YouTube section --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 866759a..f02e06f 100644 --- a/index.html +++ b/index.html @@ -46,9 +46,9 @@

Welcome to 7Zeb's Website

Newest Video

-

7Zeb's Newest Video is: Idk

+

7Zeb's Newest Video is: Secrets of the Capital Line (Poorly made Geoff Parody)

Watch it now!

- +

Currently 735 Subscribers (-1 Since Last Update)

Go to 7Zeb's Channel

From 06a42f1940bfbc73f69ca2940547a75969175c1c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 1 Jul 2026 14:43:13 +0000 Subject: [PATCH 37/40] chore: auto-update YouTube section --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index f02e06f..7b2935e 100644 --- a/index.html +++ b/index.html @@ -46,9 +46,9 @@

Welcome to 7Zeb's Website

Newest Video

-

7Zeb's Newest Video is: Secrets of the Capital Line (Poorly made Geoff Parody)

+

7Zeb's Newest Video is: My internet is cooked

Watch it now!

- +

Currently 735 Subscribers (-1 Since Last Update)

Go to 7Zeb's Channel

From 2e46615a9079794ec4f4f09afb583509f8905154 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 2 Jul 2026 14:08:49 +0000 Subject: [PATCH 38/40] chore: auto-update YouTube section --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 7b2935e..c8aefb6 100644 --- a/index.html +++ b/index.html @@ -46,9 +46,9 @@

Welcome to 7Zeb's Website

Newest Video

-

7Zeb's Newest Video is: My internet is cooked

+

7Zeb's Newest Video is: since when did we have this

Watch it now!

- +

Currently 735 Subscribers (-1 Since Last Update)

Go to 7Zeb's Channel

From 75ecc3b29eb75ec819e39f4112165980fc02d859 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 2 Jul 2026 19:34:52 +0000 Subject: [PATCH 39/40] chore: auto-update YouTube section --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index c8aefb6..918706d 100644 --- a/index.html +++ b/index.html @@ -46,9 +46,9 @@

Welcome to 7Zeb's Website

Newest Video

-

7Zeb's Newest Video is: since when did we have this

+

7Zeb's Newest Video is: “Picture Passwords and Wallpapers” - Exploring Windows 8 Build 7997 But things go mildly wrong

Watch it now!

- +

Currently 735 Subscribers (-1 Since Last Update)

Go to 7Zeb's Channel

From 0a00ff8af54fb20004e279c214ebaa3bf07c75ea Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 3 Jul 2026 19:27:04 +0000 Subject: [PATCH 40/40] chore: auto-update YouTube section --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 918706d..67b4306 100644 --- a/index.html +++ b/index.html @@ -46,9 +46,9 @@

Welcome to 7Zeb's Website

Newest Video

-

7Zeb's Newest Video is: “Picture Passwords and Wallpapers” - Exploring Windows 8 Build 7997 But things go mildly wrong

+

7Zeb's Newest Video is: iOS 27 Beta

Watch it now!

- +

Currently 735 Subscribers (-1 Since Last Update)

Go to 7Zeb's Channel