diff --git a/content/_index.md b/content/_index.md
index eabf07a..776ac05 100644
--- a/content/_index.md
+++ b/content/_index.md
@@ -18,7 +18,7 @@ bear with me with regard to the sidebar, I'm still figuring out how i wanna stru
-- [last update](/updates): 2024.09.16
+- [last update](/updates): 2024.09.17
[![ublock origin now!](ublockoriginnow.png)](https://ublockorigin.com/)
diff --git a/content/about.md b/content/about.md
index a800dba..54d0ce5 100644
--- a/content/about.md
+++ b/content/about.md
@@ -109,6 +109,7 @@ if you'd like to link to me, I've provided the following buttons! if you do, [le
![peach moon button animated](/img/peachmoon2.gif)
### milestones
+- **2024.09.17**: 1000 views
- **2024.08.11**: 900 views
- **2024.08.05**: 800 views
- **2024.07.14**: 600 views
diff --git a/content/now.md b/content/now.md
index c345cb4..4f040d4 100644
--- a/content/now.md
+++ b/content/now.md
@@ -5,7 +5,7 @@ title = "what i'm up to lately"
this is a [now](https://nownownow.com/about) page. you can make your own, if you like!
-**this page last updated: 2024.09.15**
+**this page last updated: 2024.09.17**
currently
@@ -13,7 +13,7 @@ this is a [now](https://nownownow.com/about) page. you can make your own, if you
1. 😊 **feeling**:
![The current mood of rainbowpink at www.imood.com](https://moods.imood.com/display/uname-rainbowpink/fg-000000/bg-ffffff/imood.gif)
2. 📚 **reading**: [Spice & Wolf](https://en.wikipedia.org/wiki/Spice_and_Wolf) by Hasekura Isuna
-3. 📺 **watching**:
+3. 📺 **watching**: [Hello! Morning](https://helloproject.fandom.com/wiki/Hello!_Morning)
4. 👾 **playing**: [Fields of Mistria](https://www.fieldsofmistria.com/)
5. 🎧 **listening**:
⌛
diff --git a/content/updates/20240917.md b/content/updates/20240917.md
new file mode 100644
index 0000000..12eba20
--- /dev/null
+++ b/content/updates/20240917.md
@@ -0,0 +1,6 @@
++++
+date = "2024-09-17"
+[taxonomies]
+ tags = ["updates"]
++++
+new [website milestone](/about#this-website), we hit 1000 views! also did a small update to the [now](/now) page.
\ No newline at end of file
diff --git a/static/js/script.js b/static/js/script.js
index 8e589ab..9d731c4 100644
--- a/static/js/script.js
+++ b/static/js/script.js
@@ -42,4 +42,22 @@ fetch(url)
} else {
x.style.display = "block";
}
- }
\ No newline at end of file
+ }
+
+
+function getRandomImage() {
+
+ var images = ['/picrew/058.png', '/picrew/057.jpg', '/picrew/056.png', '/picrew/055.png', '/picrew/053.png', '/picrew/052.jpg', '/picrew/050.png', '/picrew/048.png', '/picrew/045.png', '/picrew/043.jpg', '/picrew/042.png', '/picrew/039.png', '/picrew/037.png', '/picrew/036.png', '/picrew/030.jpg', '/picrew/029.png', '/picrew/028.png', '/picrew/010.png', '/picrew/007.png', '/picrew/005.png', '/picrew/004.png', '/picrew/003.png'];
+ var image = images[Math.floor(Math.random()*images.length)];
+
+ return image;
+
+ }
+
+ function displayRandomImage() {
+
+ var htmlImage = document.getElementById("randomImage");
+ htmlImage.src = getRandomImage();
+
+ }
+ displayRandomImage();
\ No newline at end of file