From 76f120478d238c0ad07f1c06a5e181da9b6ad01c Mon Sep 17 00:00:00 2001 From: bingus_violet Date: Fri, 12 Jan 2024 20:42:57 +0000 Subject: [PATCH 01/10] Commit celebration --- resources/mainPage.html | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/mainPage.html b/resources/mainPage.html index 430b3f4..258e557 100644 --- a/resources/mainPage.html +++ b/resources/mainPage.html @@ -21,6 +21,7 @@

Welcome to Violet's Purgatory

+

We're almost already at 200 commits!

Violet

From f8ecaa5ad5ad80cef7557a38aee90f2f448dd8f9 Mon Sep 17 00:00:00 2001 From: bingus_violet Date: Fri, 12 Jan 2024 20:46:52 +0000 Subject: [PATCH 02/10] Testing Commit Count --- index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/index.js b/index.js index e78dd4c..12d223b 100644 --- a/index.js +++ b/index.js @@ -226,6 +226,7 @@ function pageUpdate() { html = '\n' + html + console.log(commitCount(), commitCount('https://github.com/Violets-puragtory/Violets-Purgatory.dev'), commitCount('https://codeberg.org/Bingus_Violet/Violets-Purgatory'), commitCount('.git')) fs.writeFileSync(path.join(__dirname, 'static/index.html'), html) } From 8a3a80eefdee5177954210327adf26604c1c0142 Mon Sep 17 00:00:00 2001 From: bingus_violet Date: Fri, 12 Jan 2024 20:48:24 +0000 Subject: [PATCH 03/10] testing getting commit counts again --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 12d223b..c678499 100644 --- a/index.js +++ b/index.js @@ -226,7 +226,7 @@ function pageUpdate() { html = '\n' + html - console.log(commitCount(), commitCount('https://github.com/Violets-puragtory/Violets-Purgatory.dev'), commitCount('https://codeberg.org/Bingus_Violet/Violets-Purgatory'), commitCount('.git')) + console.log(fetch('https://codeberg.org/Bingus_Violet/Violets-Purgatory')) fs.writeFileSync(path.join(__dirname, 'static/index.html'), html) } From cdc0dfc8362f7625ec506a8e2c389273358c2c84 Mon Sep 17 00:00:00 2001 From: bingus_violet Date: Fri, 12 Jan 2024 20:51:00 +0000 Subject: [PATCH 04/10] oops --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index c678499..7933dba 100644 --- a/index.js +++ b/index.js @@ -226,7 +226,7 @@ function pageUpdate() { html = '\n' + html - console.log(fetch('https://codeberg.org/Bingus_Violet/Violets-Purgatory')) + fetch('https://codeberg.org/Bingus_Violet/Violets-Purgatory').then(((data) => console.log(data.text()))) fs.writeFileSync(path.join(__dirname, 'static/index.html'), html) } From 78eb9363d660966fb7674309fd4126fa96334c5d Mon Sep 17 00:00:00 2001 From: bingus_violet Date: Fri, 12 Jan 2024 20:54:06 +0000 Subject: [PATCH 05/10] oops again --- index.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/index.js b/index.js index 7933dba..24d6e50 100644 --- a/index.js +++ b/index.js @@ -226,7 +226,11 @@ function pageUpdate() { html = '\n' + html - fetch('https://codeberg.org/Bingus_Violet/Violets-Purgatory').then(((data) => console.log(data.text()))) + fetch('https://codeberg.org/Bingus_Violet/Violets-Purgatory') + .then(((data) => data.text())) + .then((text) => { + console.log(text) + }) fs.writeFileSync(path.join(__dirname, 'static/index.html'), html) } From 9bc28a2b52804d8f05c5a2a95abfb7a0531731cf Mon Sep 17 00:00:00 2001 From: bingus_violet Date: Fri, 12 Jan 2024 20:56:20 +0000 Subject: [PATCH 06/10] try again --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 24d6e50..cd59669 100644 --- a/index.js +++ b/index.js @@ -226,7 +226,7 @@ function pageUpdate() { html = '\n' + html - fetch('https://codeberg.org/Bingus_Violet/Violets-Purgatory') + fetch('https://codeberg.org/Bingus_Violet/Violets-Purgatory/commits/branch/origin') .then(((data) => data.text())) .then((text) => { console.log(text) From 696ac5a4ba93fbeaee0dc922c325f8a1ba108710 Mon Sep 17 00:00:00 2001 From: bingus_violet Date: Fri, 12 Jan 2024 21:00:04 +0000 Subject: [PATCH 07/10] a --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index cd59669..38a1f4d 100644 --- a/index.js +++ b/index.js @@ -226,7 +226,7 @@ function pageUpdate() { html = '\n' + html - fetch('https://codeberg.org/Bingus_Violet/Violets-Purgatory/commits/branch/origin') + fetch('https://github.com/Violets-puragtory/Violets-Purgatory.dev') .then(((data) => data.text())) .then((text) => { console.log(text) From 44a45162def8b22552819b8ec99358400e6f3e85 Mon Sep 17 00:00:00 2001 From: bingus_violet Date: Fri, 12 Jan 2024 21:01:34 +0000 Subject: [PATCH 08/10] Working on this later --- index.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/index.js b/index.js index 38a1f4d..3d15d21 100644 --- a/index.js +++ b/index.js @@ -226,11 +226,11 @@ function pageUpdate() { html = '\n' + html - fetch('https://github.com/Violets-puragtory/Violets-Purgatory.dev') - .then(((data) => data.text())) - .then((text) => { - console.log(text) - }) + // fetch('https://github.com/Violets-puragtory/Violets-Purgatory.dev') + // .then(((data) => data.text())) + // .then((text) => { + // console.log(text) + // }) fs.writeFileSync(path.join(__dirname, 'static/index.html'), html) } From c3a1b0cf01a68a790095b08b309dadd2ae8404d0 Mon Sep 17 00:00:00 2001 From: Bingus_Violet Date: Wed, 17 Jan 2024 16:46:43 +0000 Subject: [PATCH 09/10] Increase image compression to reduce my depression! --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 3d15d21..af281aa 100644 --- a/index.js +++ b/index.js @@ -160,7 +160,7 @@ function pageUpdate() { if (activity.type == 2) { addedHTML += `
- +

Listening to ${activity.name}
Song: ${activity.details || " "} From 5dfa73396d4af8ae5fcd130d6c82c95302cddca2 Mon Sep 17 00:00:00 2001 From: Bingus_Violet Date: Wed, 17 Jan 2024 16:49:26 +0000 Subject: [PATCH 10/10] Celebration time! --- resources/mainPage.html | 29 ++--------------------------- 1 file changed, 2 insertions(+), 27 deletions(-) diff --git a/resources/mainPage.html b/resources/mainPage.html index 258e557..fb9a34d 100644 --- a/resources/mainPage.html +++ b/resources/mainPage.html @@ -21,7 +21,8 @@

Welcome to Violet's Purgatory

-

We're almost already at 200 commits!

+

Happy 200 (201) Commits!!!

+

Hopefully to celebrate, like I promised last time, this time I will try to ACTUALLY find a method to add a commit count to the site!

Violet

@@ -56,32 +57,6 @@ {SOCIALS} {MASTODON_FEED} - -

Projects

-

Here are some of my most major projects. This is not a concise list, though, so please check all of them out here!

-
-

Univerter

-
-
- -
-
-

Univerter is my Javascriptless Youtube video downloader! I tend to call it a "converter" rather than a downloader, because unlike many other youtube downloaders, mine actually converts to more formats than youtube supports! I've been working on Univerter for a long time, and i hope to support more sites soon :>. It also comes with a (experimental) standalone video converter! Please, check it out at yt.violets-purgatory.dev and report any issues or feature requests!

-
-
-
- -
-

SteamRPC

-
-
- -
-
-

When playing games like Gunfire Reborn, I was annoyed that they'd only support Rich presence on Steam but not Discord. I was also having issues at the time with getting games under proton to show up on discord in general. As a solution, i made a (Linux only, sadly) software called SteamRPC, which converts the presence of any Steam game onto Discord using a Rich presence bot. It certainly needs optimization, but it's a project im proud of, and one of my few projects I use all the time! Find it here!

-
-
-
{SEASONAL_EFFECT}