1000 views update

This commit is contained in:
onomanapeia 2024-09-17 21:47:26 -05:00
parent e1f1cb0b27
commit 0e656a7f1a
5 changed files with 29 additions and 4 deletions

View file

@ -18,7 +18,7 @@ bear with me with regard to the sidebar, I'm still figuring out how i wanna stru
<div style="font-size: .9em; padding: .4em 0">
- [last update](/updates): 2024.09.16
- [last update](/updates): 2024.09.17
</div><div class="center">
[![ublock origin now!](ublockoriginnow.png)](https://ublockorigin.com/)

View file

@ -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

View file

@ -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**
</div>
<div class="dotbox">
<div class="smoltitle">currently</div>
@ -13,7 +13,7 @@ this is a [now](https://nownownow.com/about) page. you can make your own, if you
1. 😊 **feeling**: <a href="https://www.imood.com/users/rainbowpink"><img src="https://moods.imood.com/display/uname-rainbowpink/fg-000000/bg-ffffff/imood.gif" alt="The current mood of rainbowpink at www.imood.com" border="0"></a>
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**: <span id="song">&#8987;</span>
</div><div>

View file

@ -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.

View file

@ -42,4 +42,22 @@ fetch(url)
} else {
x.style.display = "block";
}
}
}
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();