1000 views update
This commit is contained in:
parent
e1f1cb0b27
commit
0e656a7f1a
5 changed files with 29 additions and 4 deletions
|
@ -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">
|
<div style="font-size: .9em; padding: .4em 0">
|
||||||
|
|
||||||
- [last update](/updates): 2024.09.16
|
- [last update](/updates): 2024.09.17
|
||||||
</div><div class="center">
|
</div><div class="center">
|
||||||
|
|
||||||
[![ublock origin now!](ublockoriginnow.png)](https://ublockorigin.com/)
|
[![ublock origin now!](ublockoriginnow.png)](https://ublockorigin.com/)
|
||||||
|
|
|
@ -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)
|
![peach moon button animated](/img/peachmoon2.gif)
|
||||||
|
|
||||||
### milestones
|
### milestones
|
||||||
|
- **2024.09.17**: 1000 views
|
||||||
- **2024.08.11**: 900 views
|
- **2024.08.11**: 900 views
|
||||||
- **2024.08.05**: 800 views
|
- **2024.08.05**: 800 views
|
||||||
- **2024.07.14**: 600 views
|
- **2024.07.14**: 600 views
|
||||||
|
|
|
@ -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 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>
|
||||||
<div class="dotbox">
|
<div class="dotbox">
|
||||||
<div class="smoltitle">currently</div>
|
<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>
|
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
|
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/)
|
4. 👾 **playing**: [Fields of Mistria](https://www.fieldsofmistria.com/)
|
||||||
5. 🎧 **listening**: <span id="song">⌛</span>
|
5. 🎧 **listening**: <span id="song">⌛</span>
|
||||||
</div><div>
|
</div><div>
|
||||||
|
|
6
content/updates/20240917.md
Normal file
6
content/updates/20240917.md
Normal 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.
|
|
@ -43,3 +43,21 @@ fetch(url)
|
||||||
x.style.display = "block";
|
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();
|
Loading…
Add table
Reference in a new issue