My Carrd (W.I.P)
todays bird

pixel skylines
let's talk about Bridgerton tea, my ask is open
trying on a metaphor
noise dept.

祝日 / Permanent Vacation

Discoholic 🪩
Keni
we're not kids anymore.

Kaledo Art
he wasn't even looking at me and he found me
One Nice Bug Per Day
Cosmic Funnies
"I'm Dorothy Gale from Kansas"
tumblr dot com


JBB: An Artblog!


blake kathryn

seen from Germany
seen from Netherlands
seen from United States
seen from Italy

seen from Türkiye

seen from Taiwan
seen from United States

seen from Malaysia

seen from Malaysia
seen from United States

seen from Germany

seen from Malaysia
seen from Malaysia

seen from United States

seen from Maldives
seen from Slovakia

seen from France

seen from Spain
seen from United States

seen from United Kingdom
@runeru
My Carrd (W.I.P)

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
how are we feeling today
does anyone else ever feel like they are constantly in danger of being punished and controlled and stripped of autonomy or is that just a me thing
had a fucking hilarious dream that tumblr replaced the "block" function with the far funnier "glock" function, which did the exact same thing except whenever anyone blocked you a random bullet hole, like a png of a bullet hole, would appear on your blog. discourse blogs were unreadable bc you'd go to the page and the sheer amount of bullet hole pngs stacked over the blogs obscured everything. I woke myself up laughing
oh god I forgot. happy one year anniversary to the post that broke my blog
As an autistic/adhd person going through the job search process I’ve learned to phrase my autistic/adhd traits as corporate friendly things. Here’s some examples:
I have trouble reading between the lines and picking up on implicit information? Actually, I’ve learned the importance of giving and receiving precise, specific instructions in order to avoid time consuming miscommunications.
I’m easily bored with only one task? Actually, I have a curious mind and thrive in places with a wide range of tasks as I prefer dynamic environments where I can contribute to many projects.
I have trouble with white lies that are merely social niceties? Actually, I prioritize a transparent work environment where we can tackle issues head-on.
This way I don’t have to lie, but rather just spin my truth in a way that’s palatable to them.
This is the most autistic way to tackle autism in the workplace
(This is a complement and I will be using these at some point in my life)

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
I wrote a tutorial on how to set up a deviantArt-like art gallery on a neocities (or other static site) come check it out:
It was a lot of work to put my art gallery together and get it working, but because I didn't see literally anything on creating such a gallery (other than ready-made templates) I decided to write up a tutorial hoping it will help others who want to code a more robust art gallery that goes beyond just using a simple slideshow/lightbox. Each image is its own post, like how deviantArt works.
This is a draft of the page where I copied my existing posts just to fill up the gallery and see how it fits:
and this is what my individual post looks like:
I just discovered Freefrontend.com, and it's pretty cool! It's a site to compile exampes of free code bits you can use. Here's the stuff I liked:
14 HTML resume templates
Accordions
App Examples
Audio Visualizer
Background Effects
Book Effects
Borders
Buttons
Cards
Carousels
Cursors
Drag & Drop
Forms
Gallery Examples
Glass Effects
Glow Effects
Image Effects
Input Text
Hover Effects
Links
Lists
Marquee
Masonry Layouts
Menus
Context Menus
Menu Icons
Modal Windows
Music Players
Parallax
Preloaders
Progress Bars
Reveal Effects
Sliders
Slideshows
Scroll Bars
Scroll Effects
Spinners
Tabs
Tab bars
Text Effects
Theme Switchers
Tilt Effects
Toggle Switches
Zoom Effects
How to Set Up a Self-Updating Blog Page on Neocities
Using Standard Notes, Listed, and an RSS Feed
What is Standard Notes?
Standard Notes is a privacy-focused writing app. Think of it as a simpler, encrypted version of Evernote or Notion — with less bloat and more focus. You can use it for journaling, note-taking, writing drafts, or… publishing blog posts. It works on:
Web (in any browser)
Desktop (Windows, Mac, Linux)
Mobile (iOS and Android)
Your notes sync across devices, and because the app is end-to-end encrypted, you’re the only one who can read what you write. No cloud peeking, no surveillance. Perfect for a private journal, but it also offers an opt-in public blog feature called Listed.
What is Listed?
Listed is a blogging extension built into Standard Notes. You choose which notes to publish publicly. Each time you publish one, it shows up on a minimalist blog page — something like:
https://listed.to/@yourusername
That page also includes an automatically generated RSS feed:
https://listed.to/@yourusername/feed
Step-by-Step: How to Set This Up
1. Set Up Standard Notes + Listed
Go to standardnotes.com and create an account
Download the mobile app (optional but useful)
In the web or desktop app, go to the menu and open “Extensions”
Enable the extension called Listed
This will give you a blog URL like https://listed.to/@yourusername
You now have a blog, but it’s empty until you publish something. Let’s fix that next.
2. Write and Publish a Post
Create a new note
Click or tap the “share” icon
Select “Publish to Listed”
The note is now live on your blog and added to your RSS feed
You can do this from your phone too — same steps. Just write, publish, done.
3. Create Your Blog Page on Neocities
On your Neocities site, create a new page like blog.html. This page will act as a visual wrapper that pulls content from your RSS feed and displays it automatically. Here’s what your code might look like.
Copy and paste the code below into your file editor:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>My Blog</title> <meta name="description" content="Posts from my Standard Notes blog"> <link rel="stylesheet" href="style.css"> </head> <body> <h1>Blog</h1> <div id="blog-feed">Loading posts...</div> <script> fetch("https://listed.to/@yourusername/feed") .then(res => res.text()) .then(str => new window.DOMParser().parseFromString(str, "text/xml")) .then(data => { const items = data.querySelectorAll("item"); const container = document.getElementById("blog-feed"); container.innerHTML = ""; items.forEach(item => { const title = item.querySelector("title").textContent; const link = item.querySelector("link").textContent; const pubDate = new Date(item.querySelector("pubDate").textContent); const description = item.querySelector("description")?.textContent || ""; const post = document.createElement("div"); post.className = "post"; post.innerHTML = ` <a href="${link}" target="_blank">${title}</a> <div class="date">${pubDate.toDateString()}</div> <div class="desc">${description}</div> `; container.appendChild(post); }); }) .catch(err => { document.getElementById("blog-feed").innerText = "Couldn't load posts."; console.error(err); }); </script> </body> </html>
Important: replace @yourusername in the URL with your actual Listed username.
You can also style this page with your site’s usual CSS — background, fonts, layout — just like any other part of your site.
Why Use This Method?
Most blogging platforms give you either:
Too much complexity (WordPress, Ghost, etc.)
Or no control at all
This setup gives you the best of both:
Post from anywhere — desktop or mobile
Your blog updates automatically
Hope this helps!!
I’ve said it before, and I’ll say it again: that hotline is forvo.com. It’s a pronunciation dictionary that allows you type in a word and see how it’s pronounced. They have multiple languages as well. Don’t see a word on there that you know how to pronounce? You can totally add it. Visit forvo. Help yourself.
that is much better than a hotline because you don’t have to actually talk to someone

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
you can make several seals and put them on the hot dashboard of your car
hey I liked ur guys so much I transparented them
WOAH
sorry they're discord emotes now
caninehood is a spectrum
I'm often really dedicated to the visual quality and authenticity of the memes I make, but like idk if I could ever make another human being care about that. I used the proper font and color picked the correct color and sized everything correctly and used the alignment tool to get the spacing right and redrew the nebula background and spent way too long messing with the drop shadow settings to mimic the original text. Skyrim media literacy 0 skill meme. If you care.
Your commitment to craftsmanship is appreciated. Years ago I spent way too long on this stupid meme to get the pull lines in the dark green and the fading of the lime color just right.
i am still stupidly proud of this lmao
awow. awow. awow. Awow. awowAwowawowAwow awow awow awow. bup bup bupbup bup bup bup bup bup. if you even care
btw. if you even care btw. btw
@aroyalbirb
Love them sm

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
Reblog to make it die faster