☆ welcome to my little corner of the internet ☆     ♪♪♪♪♪♪    ✦ virtual diary      this site is best viewed with a cup of coffee ☆     ♡
::: currently :::
listening to...
Radiohead
No Surprises
OK Computer
::: visitor counter :::
0012467
thanks for stopping by! ♡
::: guestbook :::
[ thank you card image ]
view / sign
::: webmistress :::
[ photo ]
çınar
istanbul, tr
est. 2026
::: welcome :::
[ cozy photo ]
welcome to my little corner on the internet!

this is where i share my thoughts, projects, favorite music and things that inspire me.

stay a while and make yourself at home. ♡
::: write a blog post :::
::: my blog :::
::: updates :::
may
20
2026
new diary entry
wrote about a quiet day at home, debussy and overthinking.
[ photo ]
may
18
2026
added new photos to gallery
check out the new film photos i took last weekend!
[ flowers ]
may
15
2026
new playlist
added some songs to my "late night drives" playlist.
[ city lights ]
::: about this site :::
🌙
🎵
📷
0001847
days online
this site is best viewed in 1024x768 resolution with a cup of coffee and your favorite song.

made with using notepad and lots of <3
::: recent diary entries :::
::: links i like :::
::: my playlists :::
  1. 01.mazzy star · fade into you
  2. 02.radiohead · no surprises
  3. 03.deftones · cherry waves
  4. 04.cigarettes after sex · k.
  5. 05.beach house · space song
::: site info :::
site created:05.2026
last updated:05.20.2026
browser:netscape 7.0
platform:windows xp
best viewed with
Netscape now!
let posts = JSON.parse(localStorage.getItem("posts")) || []; function renderPosts() { const container = document.getElementById("posts"); if (posts.length === 0) { container.innerHTML = "
no posts yet...
"; return; } container.innerHTML = posts.map((p, i) => `
${p}
`).join(""); } function addPost() { const input = document.getElementById("postInput"); if (!input.value.trim()) return; posts.unshift(input.value); localStorage.setItem("posts", JSON.stringify(posts)); input.value = ""; renderPosts(); } function deletePost(index) { posts.splice(index, 1); localStorage.setItem("posts", JSON.stringify(posts)); renderPosts(); } renderPosts();