Remove useless stuff, change something.
32
posts/backnotwhy.md
Normal 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 couldn’t afford to renew it. That’s 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 couldn’t find my domain anywhere.
|
||||

|
||||
|
||||
It seems like I’ll need to contact Namecheap support to recover it. Wish me luck!
|
||||
|
||||
On another note, I’m considering moving to **Cloudflare Registrar** because they’re much [cheaper than Namecheap!](https://tld-list.com/tld/dev)
|
||||
|
||||
### The effect of losing access
|
||||
I’ve 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 I’m always happy to reply to your messages!
|
||||
|
||||
|
||||
|
||||
See ya!
|
Before Width: | Height: | Size: 3.1 MiB |
BIN
public/abcdefg/lost.png
Normal file
After Width: | Height: | Size: 65 KiB |
Before Width: | Height: | Size: 383 KiB |
Before Width: | Height: | Size: 1.9 MiB |
BIN
public/pfp.jpg
Before Width: | Height: | Size: 438 KiB |
BIN
public/pfp.png
Before Width: | Height: | Size: 2.2 MiB After Width: | Height: | Size: 1.6 MiB |
BIN
public/sekai/4.jpeg
Normal file
After Width: | Height: | Size: 1.4 MiB |
|
@ -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?" />
|
||||
</>
|
||||
)
|
||||
}
|
||||
|
|
|
@ -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" />,
|
||||
},
|
||||
{
|
||||
|
|
|
@ -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
|
||||
|
|