Remove useless stuff, change something.

This commit is contained in:
Phapoom Saksri 2025-01-28 20:44:01 +07:00
parent 69f962dac5
commit dd05af95ce
11 changed files with 36 additions and 4 deletions

32
posts/backnotwhy.md Normal file
View file

@ -0,0 +1,32 @@
---
title: "I'm back but not the same."
desc: This back to normal but not the same!
date: "28/01/2025"
tags:
- website
- domain
- personal
---
### This website is finally back up 🎉
#### But not the same.
This website is back but with different name but why?
### Lose access to blueskychan.dev
A month ago, my domain **blueskychan.dev** expired, and unfortunately, I was going through a tough financial time, which meant I couldnt afford to renew it. Thats why you might have noticed I switched to using **mind.notmycode.dev** for a while.
Yesterday, I decided to try renewing **blueskychan.dev** through my Namecheap dashboard, but to my surprise, I couldnt find my domain anywhere.
![Where did it go?](/abcdefg/lost.png)
It seems like Ill need to contact Namecheap support to recover it. Wish me luck!
On another note, Im considering moving to **Cloudflare Registrar** because theyre much [cheaper than Namecheap!](https://tld-list.com/tld/dev)
### The effect of losing access
Ive updated my contact email and website! If you wish to contact me via email, my new address is [hello@mindhas403.dev](mailto:hello@mindhas403.dev).
This email is now my primary contact address, and Im always happy to reply to your messages!
See ya!

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 MiB

BIN
public/abcdefg/lost.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 65 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 383 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 438 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 MiB

After

Width:  |  Height:  |  Size: 1.6 MiB

Before After
Before After

BIN
public/sekai/4.jpeg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

View file

@ -6,13 +6,13 @@ const Avatar = () => {
<div className="rounded-2xl overflow-hidden w-24" id="status">
<Image
priority={true}
src="/pfp.jpg"
src="/pfp.png"
width={128}
height={128}
alt="Profile picture"
/>
</div>
<Tooltip anchorSelect="#status" content=":3" />
<Tooltip anchorSelect="#status" content="What are you looking at?" />
</>
)
}

View file

@ -20,7 +20,7 @@ const SocialLinks = () => {
LinkIcon: <TwitterLogo size={IconSize} color="#F3F4F6" weight="bold" />,
},
{
href: "https://t.me/bskychan",
href: "https://t.me/mindthenerd",
LinkIcon: <TelegramLogo size={IconSize} color="#F3F4F6" weight="bold" />,
},
{

View file

@ -7,7 +7,7 @@ export default function handler(req, res) {
return;
}
const random = Math.floor(Math.random() * 3) + 1; // Generate random number 1-3
const random = Math.floor(Math.random() * 4) + 1; // Generate random number 1-3
const imagePath = path.join(process.cwd(), "public", "sekai", `${random}.jpeg`);
// Check if the image file exists