From cd467e7da25a315355dd241b8ccd76694778af5c Mon Sep 17 00:00:00 2001 From: aravezskinteeth <104392087+aravezskinteeth@users.noreply.github.com> Date: Fri, 7 Apr 2023 10:58:02 -0500 Subject: [PATCH 01/34] Update README.md --- docs/README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/README.md b/docs/README.md index b87eecc..69b7f6d 100755 --- a/docs/README.md +++ b/docs/README.md @@ -1,6 +1,8 @@ # Startpage -## This is [mhmdali102's](https://github.com/mhmdali102) fork of mtwb47's [startpage](https://github.com/mtwb47/mtwb47.github.io) with [gruvbox](https://github.com/morhetz/gruvbox) and [nord](https://github.com/arcticicestudio/nord) theme. +This is [aravezskinteeth](https://github.com/aravezskinteeth) fork of [mhmdali102's](https://github.com/mhmdali102), which is a fork of mtwb47's [startpage](https://github.com/mtwb47/mtwb47.github.io). I made subtle adjutments to make the page fit in smaller windows. + +## [mhmdali102's](https://github.com/mhmdali102) changes ### Change Theme: From e1171d963a2209d4b9592584c9f06695cfec6f09 Mon Sep 17 00:00:00 2001 From: aravezskinteeth <104392087+aravezskinteeth@users.noreply.github.com> Date: Fri, 7 Apr 2023 10:58:32 -0500 Subject: [PATCH 02/34] Create README.md --- docs/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/README.md b/docs/README.md index 69b7f6d..a9c87b9 100755 --- a/docs/README.md +++ b/docs/README.md @@ -1,6 +1,6 @@ # Startpage -This is [aravezskinteeth](https://github.com/aravezskinteeth) fork of [mhmdali102's](https://github.com/mhmdali102), which is a fork of mtwb47's [startpage](https://github.com/mtwb47/mtwb47.github.io). I made subtle adjutments to make the page fit in smaller windows. +This is [aravezskinteeth's](https://github.com/aravezskinteeth) fork of [mhmdali102's](https://github.com/mhmdali102), which is a fork of mtwb47's [startpage](https://github.com/mtwb47/mtwb47.github.io). I made subtle adjutments to make the page fit in smaller windows. ## [mhmdali102's](https://github.com/mhmdali102) changes From 1c2ed12c253ac2efd491479bf38eb271a2190f34 Mon Sep 17 00:00:00 2001 From: aravezskinteeth <104392087+aravezskinteeth@users.noreply.github.com> Date: Fri, 7 Apr 2023 11:27:51 -0500 Subject: [PATCH 03/34] make general.css fit smaller windows + make spaces in lists (between urls) smaller to fit more --- docs/general.css | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/docs/general.css b/docs/general.css index bc53431..fbf85e4 100755 --- a/docs/general.css +++ b/docs/general.css @@ -81,10 +81,11 @@ html[data-theme="Mocha"] { body { font-family: 'Iosevka', monospace; font-size: 20px; - background-color: var(--bgcolor); + /*background-color: var(--bgcolor);*/ background-image: url("img/"); background-repeat: repeat; width: 670px; + min-width: 1100px; /* Prevents the layout to get cut off */ height: 320px; position: absolute; top: 0px; @@ -92,6 +93,7 @@ body { left: 0px; right: 0px; margin: auto; + overflow: auto /* Adds scrollbars */ } h1 { @@ -107,6 +109,9 @@ h1 { } .main { + /* Transforms the whole page and makes it smaller */ + --webkit-transform: scale(0.8); + -moz-transform: scale(0.8); display: inline-block; border-style: solid; border-width: 1px; @@ -187,14 +192,14 @@ img { font-family: Iosevka, monospace; font-size: 18px; position: absolute; - top: 565px; + top: 560px; width: auto; height: auto; - left: 12px; + left: 250px; } li { - margin: 10px 0; + margin: 5px 0; /* Margin between the text elements of the lis */ } nav { @@ -216,9 +221,9 @@ ul { text-align: center; height: 100%; border-color: var(--main-border); - border-right-width: 1px; + border-right-width: 1px; /* changes border of the table where the list goes */ border-right-style: solid; - padding: 10px 25px; + padding: 0px 15px; transition: all 0.8s; cursor: default; list-style-type: none; From e28c15dfa446ff6c80cee0c88bae355e47fbb584 Mon Sep 17 00:00:00 2001 From: aravezskinteeth <104392087+aravezskinteeth@users.noreply.github.com> Date: Fri, 7 Apr 2023 11:31:47 -0500 Subject: [PATCH 04/34] Make urls open in a new tab + added my own bookmarks --- docs/index.html | 80 ++++++++++++++++++++++++++++++------------------- 1 file changed, 49 insertions(+), 31 deletions(-) diff --git a/docs/index.html b/docs/index.html index 68a2bb3..8b572eb 100755 --- a/docs/index.html +++ b/docs/index.html @@ -3,7 +3,7 @@ - New Tab + Home @@ -20,50 +20,68 @@

-

Hello, Mhmd Ali

+

Hello, Liv ※\(^o^)/※

@@ -129,7 +147,7 @@

Hello, Mhmd Ali

} if (n < 1) { slideIndex = 23; - } + } slide.querySelector("img").src = `img/side${slideIndex}.gif` console.log(slideIndex) } @@ -138,7 +156,7 @@

Hello, Mhmd Ali

const html = document.getElementById("html"); // Themes list - const colorchemes = ["default", "gruvbox", "nord", "Macchiato", "Mocha"]; + const colorchemes = ["Mocha", "Macchiato", "default", "gruvbox", "nord"]; let changeTheme = (e) => { // Change theme key From 09e5c32659e155c3fa8c3c00c5df42c2e09fedcb Mon Sep 17 00:00:00 2001 From: aravezskinteeth <104392087+aravezskinteeth@users.noreply.github.com> Date: Fri, 7 Apr 2023 11:40:23 -0500 Subject: [PATCH 05/34] Update index.html --- docs/index.html | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/index.html b/docs/index.html index 8b572eb..110b1d3 100755 --- a/docs/index.html +++ b/docs/index.html @@ -31,14 +31,14 @@

Hello, Liv ※\(^o^)/※ Drawabox
  • Proko
  • Gesture Drawing
  • -
  • Ctrlpaint
  • +
  • Ctrlpaint
  • Domestika
  • WatercolorDB Oto
  • PigmentDB Kim
  • Colorpedia Blundell
  • -
  • Lospec
  • -
  • Nerd Icons
  • -
  • Iconify
  • +
  • Lospec
  • +
  • Nerd Icons
  • +
  • Iconify
  • From 082a08205088e3bca4edb4c2fe374ef08b76be60 Mon Sep 17 00:00:00 2001 From: aravezskinteeth Date: Fri, 25 Aug 2023 19:44:19 -0500 Subject: [PATCH 11/34] Add touch typing link --- docs/index.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/index.html b/docs/index.html index 633962d..7d83a0c 100755 --- a/docs/index.html +++ b/docs/index.html @@ -61,7 +61,8 @@

    Hello, Liv ※\(^o^)/※ Google Drive
  • Gmail
  • Google Photos
  • -
  • Pufferdle
  • +
  • Pufferdle
  • +
  • Touch typing
  • Github md
  • Markdown
  • Obsidian-md
  • From 842cca3dd1550cbd1581c6c950e17194609b79fd Mon Sep 17 00:00:00 2001 From: aravezskinteeth Date: Tue, 29 Aug 2023 09:36:01 -0500 Subject: [PATCH 12/34] Move Vercel Startpage to Dev --- docs/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.html b/docs/index.html index 7d83a0c..e55bb57 100755 --- a/docs/index.html +++ b/docs/index.html @@ -53,6 +53,7 @@

    Hello, Liv ※\(^o^)/※ The Odin Project
  • freecodecamp.org
  • w3schools.com
  • +
  • Vercel Startpage
    • From e2469d15a2bf552f448efb61315dc89d402a08a0 Mon Sep 17 00:00:00 2001 From: aravezskinteeth Date: Tue, 29 Aug 2023 09:36:19 -0500 Subject: [PATCH 13/34] Delete github markdown --- docs/index.html | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/index.html b/docs/index.html index e55bb57..8bf67eb 100755 --- a/docs/index.html +++ b/docs/index.html @@ -64,7 +64,6 @@

      Hello, Liv ※\(^o^)/※ Google Photos
    • Pufferdle
    • Touch typing
    • -
    • Github md
    • Markdown
    • Obsidian-md
    • Obsidian-hub
    • From 760dded45c82f5d068008ece2d7a0246905b9e34 Mon Sep 17 00:00:00 2001 From: aravezskinteeth Date: Tue, 29 Aug 2023 09:36:42 -0500 Subject: [PATCH 14/34] Replace Pufferdle with Stardew Wiki --- docs/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.html b/docs/index.html index 8bf67eb..dc385cb 100755 --- a/docs/index.html +++ b/docs/index.html @@ -62,8 +62,8 @@

      Hello, Liv ※\(^o^)/※ Google Drive
    • Gmail
    • Google Photos
    • -
    • Pufferdle
    • Touch typing
    • +
    • Stardew Wiki
    • Markdown
    • Obsidian-md
    • Obsidian-hub
    • From 1f50e22ea28426afa71a36eab60b34719b12072f Mon Sep 17 00:00:00 2001 From: aravezskinteeth Date: Tue, 29 Aug 2023 09:36:53 -0500 Subject: [PATCH 15/34] Add Roots of Pacha Wiki --- docs/index.html | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/index.html b/docs/index.html index dc385cb..6f22355 100755 --- a/docs/index.html +++ b/docs/index.html @@ -64,6 +64,7 @@

      Hello, Liv ※\(^o^)/※ Google Photos
    • Touch typing
    • Stardew Wiki
    • +
    • Roots of Pacha Wiki
    • Markdown
    • Obsidian-md
    • Obsidian-hub
    • From ddc1f8a962040488494647f0b8c90bbbd8633ece Mon Sep 17 00:00:00 2001 From: aravezskinteeth Date: Tue, 29 Aug 2023 09:40:23 -0500 Subject: [PATCH 16/34] To do section --- docs/README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/README.md b/docs/README.md index a9c87b9..4eb963c 100755 --- a/docs/README.md +++ b/docs/README.md @@ -32,6 +32,10 @@ To change the theme press "c". This is a fork of RamenMaestro's [startpage](https://github.com/RamenMaestro/startpage) with a image scroll option and larger option size. +## To Do + +- [ ] Make the background rectangle bigger + ## Credits Images used in the sidebar are by background artist [Waneella](https://twitter.com/waneella_). From 5ffaaab513b2f58119a2eca8486d67131dab583d Mon Sep 17 00:00:00 2001 From: aravezskinteeth Date: Tue, 29 Aug 2023 09:44:20 -0500 Subject: [PATCH 17/34] Add todo actions --- docs/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/README.md b/docs/README.md index 4eb963c..397efb5 100755 --- a/docs/README.md +++ b/docs/README.md @@ -35,6 +35,7 @@ This is a fork of RamenMaestro's [startpage](https://github.com/RamenMaestro/sta ## To Do - [ ] Make the background rectangle bigger +- [ ] Make a wikipage explaining how to add a custom startpage to Mozilla Firefox. ## Credits From a7f49032cfff43c9d074b8d4b8c08dc5cb0e93d4 Mon Sep 17 00:00:00 2001 From: aravezskinteeth Date: Mon, 25 Sep 2023 11:24:03 -0500 Subject: [PATCH 18/34] Fix compatibility issues with Firefox 117 --- mozilla.cfg | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/mozilla.cfg b/mozilla.cfg index ca42343..107d485 100644 --- a/mozilla.cfg +++ b/mozilla.cfg @@ -1,14 +1,12 @@ -// Any comment. You must start the file with a single-line comment! -let { classes:Cc, interfaces:Ci, utils:Cu } = Components; +// +var {classes:Cc,interfaces:Ci,utils:Cu} = Components; +/* set new tab page */ try { Cu.import("resource:///modules/AboutNewTab.jsm"); - let newTabURL = "/Users/skinofmyeden/Documents/start-page/docs/index.html"; + var newTabURL = "file:///Users/skinofmyeden/Documents/start-page/docs/index.html"; AboutNewTab.newTabURL = newTabURL; - Cu.import("resource:///modules/HomePage.jsm"); - HomePage.set(newTabURL); -} catch(e) { Cu.reportError(e); } - +} catch(e){Cu.reportError(e);} // report errors in the Browser Console // Auto focus new tab content try { @@ -19,4 +17,4 @@ try { window = BrowserWindowTracker.getTopWindow(); window.gBrowser.selectedBrowser.focus(); }, "browser-open-newtab-start"); -} catch(e) { Cu.reportError(e); } +} catch(e) { Cu.reportError(e); } \ No newline at end of file From 66f88882a23d97ab9bc3b78b9122006a1494104b Mon Sep 17 00:00:00 2001 From: skinofmyeden Date: Sat, 30 Sep 2023 14:15:11 -0500 Subject: [PATCH 19/34] Add TODO --- docs/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/README.md b/docs/README.md index 397efb5..4737850 100755 --- a/docs/README.md +++ b/docs/README.md @@ -35,6 +35,7 @@ This is a fork of RamenMaestro's [startpage](https://github.com/RamenMaestro/sta ## To Do - [ ] Make the background rectangle bigger +- [ ] Fix white background issue found in Firefox 117. - [ ] Make a wikipage explaining how to add a custom startpage to Mozilla Firefox. ## Credits From 29d73e505384adcd972e6948fef3d7bec0cf6092 Mon Sep 17 00:00:00 2001 From: skinofmyeden Date: Sat, 30 Sep 2023 14:15:25 -0500 Subject: [PATCH 20/34] Fix roots of pacha links --- docs/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.html b/docs/index.html index 6f22355..790c89d 100755 --- a/docs/index.html +++ b/docs/index.html @@ -64,7 +64,7 @@

      Hello, Liv ※\(^o^)/※ Google Photos
    • Touch typing
    • Stardew Wiki
    • -
    • Roots of Pacha Wiki
    • +
    • Roots of Pacha Wiki
    • Markdown
    • Obsidian-md
    • Obsidian-hub
    • From dd514077ab7280ce68472707201c772650290839 Mon Sep 17 00:00:00 2001 From: skinofmyeden Date: Tue, 3 Oct 2023 16:54:53 -0500 Subject: [PATCH 21/34] Properly declare the background color Fixes this issue: Background looks white on Firefox 117+ --- docs/general.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/general.css b/docs/general.css index fbf85e4..ada9bfe 100755 --- a/docs/general.css +++ b/docs/general.css @@ -81,7 +81,7 @@ html[data-theme="Mocha"] { body { font-family: 'Iosevka', monospace; font-size: 20px; - /*background-color: var(--bgcolor);*/ + background-color: var(--bgcolor); background-image: url("img/"); background-repeat: repeat; width: 670px; From ace16347070fe413c50e416e38a8c919c85a0abb Mon Sep 17 00:00:00 2001 From: skinofmyeden Date: Tue, 3 Oct 2023 16:58:12 -0500 Subject: [PATCH 22/34] Striketrough TODO task --- docs/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/README.md b/docs/README.md index 4737850..a1594c4 100755 --- a/docs/README.md +++ b/docs/README.md @@ -35,8 +35,8 @@ This is a fork of RamenMaestro's [startpage](https://github.com/RamenMaestro/sta ## To Do - [ ] Make the background rectangle bigger -- [ ] Fix white background issue found in Firefox 117. - [ ] Make a wikipage explaining how to add a custom startpage to Mozilla Firefox. +- [x] ~~Fix white background issue found in Firefox 117.~~ ## Credits From 497703e702bbbbd6ff1edcf9468429c23cf1aca7 Mon Sep 17 00:00:00 2001 From: skinofmyeden Date: Tue, 3 Oct 2023 17:17:29 -0500 Subject: [PATCH 23/34] Change snapdrop for embed notion --- docs/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.html b/docs/index.html index 790c89d..572fe19 100755 --- a/docs/index.html +++ b/docs/index.html @@ -82,7 +82,7 @@

      Hello, Liv ※\(^o^)/※ Udemy
    • Temp Mail
    • Toby
    • -
    • Snapdrop
    • +
    • Notion Embed
    From 6937cc732bda2164b5698bb7a11823a67da2d813 Mon Sep 17 00:00:00 2001 From: skinofmyeden Date: Tue, 17 Oct 2023 15:02:32 -0500 Subject: [PATCH 24/34] Add Latex Equation Editor --- docs/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/index.html b/docs/index.html index 572fe19..899dad5 100755 --- a/docs/index.html +++ b/docs/index.html @@ -64,8 +64,8 @@

    Hello, Liv ※\(^o^)/※ Google Photos
  • Touch typing
  • Stardew Wiki
  • -
  • Roots of Pacha Wiki
  • -
  • Markdown
  • +
  • Pacha Wiki
  • +
  • Latex Equation Editor
  • Obsidian-md
  • Obsidian-hub
  • From 4c94084a58149587ae5fb30b6242732e0bd7e04d Mon Sep 17 00:00:00 2001 From: skinofmyeden Date: Fri, 20 Oct 2023 19:06:59 -0500 Subject: [PATCH 25/34] Change latex equation editor --- docs/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.html b/docs/index.html index 899dad5..4b6efe7 100755 --- a/docs/index.html +++ b/docs/index.html @@ -65,7 +65,7 @@

    Hello, Liv ※\(^o^)/※ Touch typing
  • Stardew Wiki
  • Pacha Wiki
  • -
  • Latex Equation Editor
  • +
  • Latex Equation Editor
  • Obsidian-md
  • Obsidian-hub
  • From 14336cf44e7250b275e0ec5901c1814e4b93d1eb Mon Sep 17 00:00:00 2001 From: skinofmyeden Date: Wed, 24 Jan 2024 18:43:26 -0500 Subject: [PATCH 26/34] Move code element --- docs/general.css | 16 ++++++++++++++-- docs/index.html | 33 ++++++++++++++++----------------- 2 files changed, 30 insertions(+), 19 deletions(-) diff --git a/docs/general.css b/docs/general.css index ada9bfe..8e19db5 100755 --- a/docs/general.css +++ b/docs/general.css @@ -192,10 +192,10 @@ img { font-family: Iosevka, monospace; font-size: 18px; position: absolute; - top: 560px; + top: 35px; + left: 250px; width: auto; height: auto; - left: 250px; } li { @@ -215,6 +215,18 @@ nav { position: relative; } +div[id = green] { + display: inline-block; + width:120px; + height:120px; +} + +div[id = red] { + display: inline-block; + width:160px; + height:160px; +} + ul { display: table-cell; horizontal-align: middle; diff --git a/docs/index.html b/docs/index.html index 4b6efe7..c60962a 100755 --- a/docs/index.html +++ b/docs/index.html @@ -25,7 +25,6 @@

    Hello, Liv ※\(^o^)/※
    -
    • Art & Design
    • Drawabox
    • @@ -42,18 +41,18 @@

      Hello, Liv ※\(^o^)/※
        @@ -180,13 +179,13 @@

        Hello, Liv ※\(^o^)/※ Date: Sat, 10 Feb 2024 12:21:46 -0500 Subject: [PATCH 27/34] Delete temp changes --- docs/general.css | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/docs/general.css b/docs/general.css index 8e19db5..030aca0 100755 --- a/docs/general.css +++ b/docs/general.css @@ -215,18 +215,6 @@ nav { position: relative; } -div[id = green] { - display: inline-block; - width:120px; - height:120px; -} - -div[id = red] { - display: inline-block; - width:160px; - height:160px; -} - ul { display: table-cell; horizontal-align: middle; From 2fe122cca2284d1ea866aa8768580e76723ef57d Mon Sep 17 00:00:00 2001 From: skinofmyeden Date: Sat, 10 Feb 2024 12:21:54 -0500 Subject: [PATCH 28/34] Change link --- docs/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.html b/docs/index.html index c60962a..3c651db 100755 --- a/docs/index.html +++ b/docs/index.html @@ -71,7 +71,7 @@

        Hello, Liv ※\(^o^)/※
      • Academic
      • -
      • Z-lib
      • DeepL
      • Anna's Archive
      • From 3415c147ff6111795a997490e4ad34e3b1315331 Mon Sep 17 00:00:00 2001 From: livisupajares Date: Sat, 14 Sep 2024 10:39:18 -0500 Subject: [PATCH 29/34] Change chatgpt url --- docs/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.html b/docs/index.html index 3c651db..0106ad7 100755 --- a/docs/index.html +++ b/docs/index.html @@ -42,7 +42,7 @@

        Hello, Liv ※\(^o^)/※
      • Dev
      • -
      • ChatGPT
      • +
      • ChatGPT
      • explain shell
      • explain.dev
      • TodoCode
      • From 8cd4023c1fde927fb79c897b1ed77ab9c5bee482 Mon Sep 17 00:00:00 2001 From: livisupajares Date: Sat, 14 Sep 2024 10:39:34 -0500 Subject: [PATCH 30/34] Delete excalith startpage --- docs/index.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/index.html b/docs/index.html index 0106ad7..0068d10 100755 --- a/docs/index.html +++ b/docs/index.html @@ -52,7 +52,8 @@

        Hello, Liv ※\(^o^)/※ The Odin Project
      • freecodecamp.org
      • w3schools.com
      • -
      • Vercel Startpage
      • +
      • Nerd Icons
      • +
      • Iconify
        From d6ba996b6b3f373719bfae55d70b13500493bb33 Mon Sep 17 00:00:00 2001 From: livisupajares Date: Sat, 14 Sep 2024 10:39:44 -0500 Subject: [PATCH 31/34] Delete one drive --- docs/index.html | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/index.html b/docs/index.html index 0068d10..d779bfb 100755 --- a/docs/index.html +++ b/docs/index.html @@ -58,7 +58,6 @@

        Hello, Liv ※\(^o^)/※
      • Else
      • -
      • One Drive
      • Google Drive
      • Gmail
      • Google Photos
      • From b29ed7dd0c646a1eb63d58218d81fc05c3ff9afb Mon Sep 17 00:00:00 2001 From: livisupajares Date: Sat, 14 Sep 2024 10:39:57 -0500 Subject: [PATCH 32/34] Change roots of pacha wiki url --- docs/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.html b/docs/index.html index d779bfb..94836c2 100755 --- a/docs/index.html +++ b/docs/index.html @@ -63,7 +63,7 @@

        Hello, Liv ※\(^o^)/※ Google Photos
      • Touch typing
      • Stardew Wiki
      • -
      • Pacha Wiki
      • +
      • Pacha Wiki
      • Latex Equation Editor
      • Obsidian-md
      • Obsidian-hub
      • From f7e32529f39a2e712252053d535e7cab89243d0c Mon Sep 17 00:00:00 2001 From: livisupajares Date: Sat, 14 Sep 2024 10:40:08 -0500 Subject: [PATCH 33/34] Add data science page --- docs/index.html | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/index.html b/docs/index.html index 94836c2..0157eb3 100755 --- a/docs/index.html +++ b/docs/index.html @@ -67,6 +67,7 @@

        Hello, Liv ※\(^o^)/※ Latex Equation Editor
      • Obsidian-md
      • Obsidian-hub
      • +
      • Data Science
        From 2478c10c67287d7f82da2b70aab694b885035dfb Mon Sep 17 00:00:00 2001 From: livisupajares Date: Sat, 14 Sep 2024 10:40:33 -0500 Subject: [PATCH 34/34] Add artist page --- docs/index.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/index.html b/docs/index.html index 0157eb3..2e74f0e 100755 --- a/docs/index.html +++ b/docs/index.html @@ -35,9 +35,10 @@

        Hello, Liv ※\(^o^)/※ WatercolorDB Oto
      • PigmentDB Kim
      • Colorpedia Blundell
      • +
      • Artist's Pigments
      • +
      • Art Assist
      • Lospec
      • -
      • Nerd Icons
      • -
      • Iconify
      • +