Page 1 of 9
>     >>
#

Mickey Mouse holding horseshoe ornament. 🎄

Manton Reece

28 Nov 2025 at 23:43

The practice of neighborliness

 Nothing original below. To the contrary, I'm trying to remember that less alienated era I grew up in. Some of these I'm doing and some I'm working on. Please suggest additions.

  1. Don’t talk about politics or religion. Never bring it up yourself and if the other person brings it up, redirect the conversation.
  1. The only exception to the above is local news. This encourages engagement with the concerns of the community, which actually affects your life.
  2. Don't gossip, even if it is local.
  3. Get to know your neighborhood by walking it. This gives it texture and shape in your mind.
  4. Embrace small talk; it signals openness between people who may not have much in common.
  5. Take note of the elders around you and watch out for them.
  6. Avoid cash exchange. Practice the gift economy.
  7. Be outside more. That's where most neighborly interactions happen.
  8. Try to remember names. Failing that, "neighbor" signals a warm heart despite a blank mind.
  9. Consider the health of your neighborhood as a whole.
  10. Wave.
  11. Welcome new neighbors with baked goods.
  12. Feed the birds and stray cats.
jabel

28 Nov 2025 at 21:02
#

Micro.blog's CDN bill is up about 25% from last month, no surprise with the launch of better video hosting. I'm taking the opportunity to dig into CloudFront stats that I've never actually looked at. Seeing a few things that could be easy wins to optimize.

Manton Reece

28 Nov 2025 at 20:28
#

Manu Moreale:

...there is so much interesting content out there ready to be discovered. And discovering new content also means connecting with new people, getting exposed to new ideas, different cultures. That’s by far the best quality of the web if you ask me.

Manton Reece

28 Nov 2025 at 17:33
#

Federico Viticci blogging about AI results, matching my recent thoughts about the products and design mattering:

...since the baseline is now good enough, the app experience and how LLMs are woven into a people’s daily lives and workflows will be the differentiators going forward.

Manton Reece

28 Nov 2025 at 16:41

Pink Friday - a Bear theme for dodging the mania

 Are you also tired of the Black Friday shopping mania? Let’s make it fun in a free way instead of stressful in a “don’t really need it, but my gosh it’s cheap” way.

Simply copy the theme styles below, head over to your Bear theme settings, paste them in, and let the party begin. 🥳

If you’re using the wonderful Guestbooks by Meadow, the theme will take care of that too. Check my guestbook to see how it looks. If you’re in the mood, and who isn’t after some Pink Friday vibes, feel free to write me something.

To give you a taste of how lovely the quotes look, here are a few fitting lines from the beautiful song Society by Eddie Vedder:

Oh, it's a mystery to me
We have a greed, with which we have agreed
And you think you have to want more than you need
Until you have it all you won't be free

Disclaimer: While there’s no technical limitation stopping you from using this theme to celebrate Black Friday instead of dodging it, it’s considered bad karma. This may result in your posts getting fewer upvotes. Just saying...

/*
 * Pink Friday — a joyful antidote to Black Friday madness
 * Version 1.0.0 | 2025-11-28
 * Author: Robert Birming
 * URL: https://robertbirming.com
 */

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light dark;

  --bg:        #fff7fb;
  --txt:       #261321;
  --muted:     #8f6a7a;
  --line:      #f0d3e3;
  --accent:    #e45ba8;
  --accent-h:  color-mix(in srgb, var(--accent) 80%, var(--txt) 20%);
  --radius:    6px;
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;

    --bg:       #1b1220;
    --txt:      #ffe9f8;
    --muted:    #c89bb4;
    --line:     #3c253f;
    --accent:   #ff7ec5;
    --accent-h: color-mix(in srgb, var(--accent) 80%, #ffffff 20%);
  }

  footer::before {
    background-image: linear-gradient(
      90deg,
      #ff9ad1,
      #ffcaee,
      #ff9ad1,
      #f9a9ff
    );
  }
}

::selection {
  background: color-mix(in srgb, var(--accent) 35%, var(--bg));
  color: var(--txt);
}

body {
  max-width: 640px;
  margin: 36px auto;
  padding: 0 20px;
  font-family: system-ui, sans-serif;
  font-size: 1.075rem;
  line-height: 1.66;
  letter-spacing: 0.01em;
  color: var(--txt);
  background: var(--bg);
  overflow-wrap: break-word;
}

main > p:first-of-type {
  margin-top: 0.2em;
}

p {
  margin-block: 1.2em;
}

h1,
h2,
h3 {
  margin-block: 1.4em 0.6em;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--txt);
}

h1 {
  margin-block: 0 0.4em;
}

h1 { font-size: 1.7rem; }
h2 { font-size: 1.45rem; }
h3 { font-size: 1.25rem; }

ul,
ol {
  margin-block: 1.2em;
  padding-left: 1.4em;
}

li + li {
  margin-top: 0.25em;
}

a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition:
    color 0.15s ease,
    text-decoration-thickness 0.15s ease;
}

a:hover {
  color: var(--accent-h);
  text-decoration-thickness: 2px;
}

blockquote {
  margin-block: 2em;
  margin-inline: 0;
  padding: 0.85em 1rem;
  border-left: 3px solid var(--accent);
  background: color-mix(in srgb, var(--bg) 85%, var(--accent) 15%);
  color: var(--muted);
  font-style: italic;
  border-radius: 10px;
  box-shadow: 0 2px 6px color-mix(in srgb, var(--txt) 10%, transparent);
}

blockquote p {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-block: 1.4em;
  border-radius: 8px;
}

hr {
  border: none;
  border-top: 1px solid var(--line);
  margin-block: 2rem;
}

/* Header */
header {
  margin-bottom: 2.4rem;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 1.2rem;
}

header a.title {
  text-decoration: none;
  color: var(--txt);
  position: relative;
  display: inline-block;
}

header a.title h1 {
  margin: 0;
  padding: 0;
  font-size: 1.7rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  display: inline-block;
  filter:
    drop-shadow(0 0 2px color-mix(in srgb, var(--accent) 45%, transparent))
    drop-shadow(0 0 4px color-mix(in srgb, var(--accent-h) 35%, transparent));
  transition: filter 0.25s ease, transform 0.25s ease;
}

header a.title:hover h1 {
  filter:
    drop-shadow(0 0 4px color-mix(in srgb, var(--accent) 70%, transparent))
    drop-shadow(0 0 8px color-mix(in srgb, var(--accent-h) 55%, transparent));
  transform: scale(1.012);
}

header a.title h1::after {
  content: " *:・゚✧";
  padding-left: 4px;
  background: linear-gradient(
    to right,
    var(--txt),
    var(--accent),
    color-mix(in srgb, var(--accent) 65%, var(--txt) 35%)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
          text-fill-color: transparent;
  vertical-align: baseline;
  opacity: 0.9;
}

/* Nav links */
header nav p {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.9rem;
}

header nav a {
  text-decoration: none;
  color: var(--accent);
  padding: 0.25rem 0.8rem 0.18rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--bg) 94%, var(--accent) 6%);
  border: 1px solid transparent;
  box-shadow: 0 1px 2px color-mix(in srgb, var(--txt) 10%, transparent);
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

@media (prefers-color-scheme: dark) {
  header nav a {
    background: color-mix(in srgb, var(--bg) 90%, var(--accent) 10%);
  }
}

header nav a:hover {
  color: var(--bg);
  background: color-mix(in srgb, var(--accent) 80%, var(--bg) 20%);
  border-color: color-mix(in srgb, var(--accent) 55%, var(--line));
  box-shadow: 0 4px 10px color-mix(in srgb, var(--txt) 16%, transparent);
  transform: translate(1px, 2px) rotate(2.5deg);
}

header nav a:active {
  transform: translate(0, 0) rotate(0deg);
  box-shadow: 0 1px 3px color-mix(in srgb, var(--txt) 20%, transparent);
}

/* Footer */
footer {
  position: relative;
  margin-top: 1rem;
  padding: 30px 0 26px;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

footer::before {
  content: "âś§";
  display: block;
  margin: 0 auto 1.8rem;
  text-align: center;
  color: var(--accent);
  font-size: 1.25rem;
  letter-spacing: 0.35em;
  opacity: 0.95;
  width: 70%;
  background:
    linear-gradient(to right, transparent, var(--line) 70%),
    linear-gradient(to left, transparent, var(--line) 70%);
  background-size: 48% 1.5px, 48% 1.5px;
  background-position: left center, right center;
  background-repeat: no-repeat;
}

footer a {
  color: var(--accent);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Blog */
time {
  font-style: normal;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  font-size: 0.9rem;
}

p > time,
p > i > time {
  display: inline-block;
  margin-top: 0.2rem;
}

ul.blog-posts {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
}

ul.blog-posts li {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  padding-block: 0.4em;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 60%, transparent);
}

ul.blog-posts li:first-child {
  border-top: 1px solid color-mix(in srgb, var(--line) 60%, transparent);
}

ul.blog-posts li span {
  flex: 0 0 140px;
  color: var(--muted);
  font-size: 0.9rem;
}

ul.blog-posts li a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  transition:
    color 0.15s ease,
    text-decoration-thickness 0.15s ease;
}

ul.blog-posts li a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  color: var(--accent-h);
}

@media (max-width: 540px) {
  ul.blog-posts li {
    flex-direction: column;
    align-items: flex-start;
    padding-block: 0.7em;
    gap: 0.25em;
  }

  ul.blog-posts li span {
    order: 1;
    flex: none;
    font-size: 0.85rem;
  }

  ul.blog-posts li a {
    order: 0;
  }
}

/* Upvote button */
:is(.post, .page) .upvote-button {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 0.35rem;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
  background: color-mix(in srgb, var(--bg) 96%, var(--accent) 4%);
  color: var(--txt);
  font: inherit;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background-color 0.15s ease,
    border-color 0.15s ease,
    transform 0.12s ease;
}

:is(.post, .page) .upvote-button svg {
  display: none !important;
}

:is(.post, .page) .upvote-button::before {
  content: "♡";
  font-size: 1.25rem;
  line-height: 1;
  color: var(--accent);
  transform: translateY(1px);
  transition:
    color 0.15s ease,
    transform 0.12s ease;
}

:is(.post, .page) .upvote-button .upvote-count {
  display: inline-block !important;
  width: auto !important;
  flex: 0 0 auto !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 0.85rem;
  color: var(--muted);
  opacity: 0.85;
  white-space: nowrap;
  transform: translateY(1px);
}

:is(.post, .page) .upvote-button:hover {
  background: color-mix(in srgb, var(--bg) 90%, var(--accent) 10%);
  border-color: color-mix(in srgb, var(--accent) 50%, var(--line));
  transform: translateY(-1px);
}

:is(.post, .page) .upvote-button:hover::before {
  transform: translateY(0);
}

:is(.post, .page) .upvote-button:is(.upvoted, [aria-pressed="true"], [disabled])::before {
  content: "♥";
  color: var(--accent-h);
}

:is(.post, .page) .upvote-button[disabled] {
  cursor: default;
  opacity: 0.85;
}

:is(.post, .page) .upvote-button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Guestbook */
#guestbooks___guestbook-form-container form {
  display: grid;
  gap: 0.6rem;
  margin: 1.6rem 0;
}

#guestbooks___guestbook-form-container :is(input, textarea, button) {
  font: inherit;
  padding: 0.6rem 0.7rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--txt);
}

#guestbooks___guestbook-form-container :is(input, textarea) {
  width: 100%;
  line-height: 1.5;
}

#guestbooks___guestbook-form-container :is(input, textarea):focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 35%, transparent);
}

#guestbooks___guestbook-form-container :is(button, input[type="submit"]) {
  cursor: pointer;
  font-weight: 600;
  align-self: flex-start;
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  transition:
    background-color 0.2s ease,
    transform 0.15s ease;
}

#guestbooks___guestbook-form-container :is(button, input[type="submit"]):hover {
  background: var(--accent-h);
  transform: translateY(-1px);
}

#guestbooks___guestbook-messages-container > div {
  margin: 1.2rem 0;
  padding: 1rem 1.1rem;
  font-size: 0.95rem;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid color-mix(in srgb, var(--accent) 40%, var(--bg));
  background: color-mix(in srgb, var(--bg) 93%, var(--accent) 7%);
}

#guestbooks___guestbook-messages-container blockquote {
  margin: 0 0 0.4rem;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
  border-radius: 0;
  font-style: normal;
  color: var(--txt);
}

#guestbooks___guestbook-messages-container p {
  margin: 0 0 0.4rem;
}

#guestbooks___guestbook-made-with {
  margin-top: 0.8rem;
  font-size: 0.85rem;
  color: var(--muted);
}
Robert Birming

28 Nov 2025 at 16:32

On eating shit

 

You’re sitting at a table. In front of you, a series of plates. They’re full of shit (like some people). Not the same shit, mind you. It’s different types, produced by different animals, in different quantities. The unfortunate reality of the situation is that you have to eat the contents of one of those plates. Yeah, it sucks, I’m sorry. But you just have to.

So you understandably start going through the thought process of figuring out which one is the “best” one. You start examining the shape, the texture, the animal that produced it. You start finding reasons to pick one over another. You start rationalising, trying to justify your decision to the other people who, like you, also need to pick which one to eat.

It’s a process. A shitty one, I might say. But in going through this ordeal, you start losing track of the only thing that really matters: this situation fucking sucks, and there’s no good answer. The only reasonable thing to do is to pick the plate with the least steamy, smelly, nasty pile of shit and then figure out a way not to find yourself in that situation ever again.

Sometimes eating shit is unavoidable. The only thing you can do is make it as painless as possible.


Thank you for keeping RSS alive. You're awesome.

Email me :: Sign my guestbook :: Support for 1$/month :: See my generous supporters :: Subscribe to People and Blogs

Manu's Feed

28 Nov 2025 at 15:10
#

The new job has me working on Black Friday for the first time in a quarter-century. (This is adequately offset by the addition of a few bank holidays to my calendar.) Going to be a quiet day people-wise but I'm covering for a couple of co-workers so I should be busy. Headphones on, music up.

jabel

28 Nov 2025 at 13:50

Karen

 

This week on the People and Blogs series we have an interview with Karen, whose blog can be found at chronosaur.us.

Tired of RSS? Read this in your browser or sign up for the newsletter.

The People and Blogs series is supported by Emmanuel Odongo and the other 127 members of my "One a Month" club.

If you enjoy P&B, consider becoming one for as little as 1 dollar a month.


Let's start from the basics: can you introduce yourself?

Hello! My name is Karen. I work in IT support for a large company’s legal department, and am currently working on my Bachelors in Cybersecurity and Information Assurance.

I live near New Orleans, Louisiana, with my husband and two dogs - Daisy, A Pembroke Welsh Corgi, and Mia, a Chihuahua. Daisy is The Most Serious Corgi ever (tm), and Mia has the personality of an old lady who chain smokes, plays Bingo every week at the rec center, and still records her soap operas on a VHS daily. My husband is an avid maker (woodworking and 3D printing, mostly), video gamer, and has an extensive collection of board games that takes up the entire back wall of our livingroom.

As for me, outside of work, I’m a huge camera nerd and photographer. I love film photography, and recently learned how to develop my own negatives at home! I also do digital - I will never turn my nose up at one versus the other. I’ve always been into assorted fandoms, and used to volunteer at local sci-fi/fantasy/comic conventions up to a few years ago. I got into K-Pop back in 2022, and am now an active participant in the local New Orleans fan community, providing Instax photo booth services for events. I’ve also hosted K-Pop events here in NOLA as well. My ult K-Pop group is ATEEZ, but I’m a proud multi fan and listen to whatever groups or music catch my attention, including Stray Kids, SHINee, and Mamamoo. I also love 80s and 90s alternative, mainly Depeche Mode, Nine Inch Nails, and Garbage.

And yes, I may be named Karen but I refuse to BE a “Karen”. I don’t get upset when people use the term, I find it hilarious.

What's the story behind your blog?

So I have been blogging off and on since 2001 or so - back when they were still called “weblogs” and “online journals”. Originally, I was using LiveJournal, but even with a paid account, I wanted to learn more customization and make a site that was truly my own. My husband - then boyfriend - had their own server, and gave me some space on it. I started out creating sites in Microsoft Frontpage and Dreamweaver (BEFORE Adobe owned them!), and moved to using Greymatter blog software, which I loved and miss dearly.

I moved to Wordpress in - 2004 maybe? - and used that for all my personal sites until 2024. I’d been reading more and more about the Indieweb for a while and found Bear, and I loved the simplicity.

I’ve had sites ranging from a basic daily online journal, to a fashion blog, to a food blog, to a K-Pop and fandom-centric blog, to what it is today - my online space for everything and anything I like.

I taught myself HTML and CSS in order to customize and create my sites. No classes, no courses, no books, no certifications, just Google and looking at other people’s sites to see what I liked and how they did it. My previous job before this one, I was a web administrator for a local marketing company that built sites using DNN and Wordpress, and I’m proud to say that I got that job and my current one with my self-developed skills and being willing to learn and grow. I would not be where I am today, professionally, if it wasn’t for blogging.

What does your creative process look like when it comes to blogging?

I’ll be totally honest - I don’t have a writing process. I get inspiration from random thoughts, seeing things online, wanting to share the day-to-day of my life. I don’t draft or have someone proof read, I just type out what I feel like writing.

When I had blogs focusing on specific things - plus size fashion and K-Pop, respectively - I kept a list of topics and ideas to refer back to when I was stuck for ideas. That was when I was really focused on playing the SEO and search engine algorithm game, though, where I was trying to stick to the “two-three posts a week” rule in an attempt to boost my search engine results. I don’t do that now. I do still have a list of ideas on my phone, but it’s nothing I am feeling FORCED to stick to. It’s more along the lines of that I had an idea while I was out, and wanted to note it so I don’t forget. Memory is a fickle thing in your late 40s, LOL.

Do you have an ideal creative environment? Also do you believe the physical space influences your creativity?

My space absolutely influences my mindset for writing. I prefer to write in the early morning, because my brain operates best then. (I know I am an exception to the rule by being an early bird.) I love weekend mornings when I can get up really early and settle into my recliner with my laptop and coffee, and just listen to some lofi music and just feel topics and ideas out. I also made my office/guest bedroom into a cozy little space, with a daybed full of soft blankets and fluffy pillows and cushions, and a lap desk.

In all honesty, my preferred location to write is at a coffeeshop first thing in the morning. I love sitting tucked in a booth with a coffee and muffin, headphones on and listening to music, when the sun is just on the cusp of rising and the shop is still a little too chilly. That’s when the creative ideas light up the brightest and the synapses are firing on all cylinders.

A question for the techie readers: can you run us through your tech stack?

Currently, my site is hosted on Bear.

I used to be a self-hosted Wordpress devotee, but in mid-late 2024, I got really tired of the bloat that the apps had become. In order to use it efficiently for me, I had to install entirely too many plugins to make it “simpler”. (Shout-out to the Indieweb Wordpress team, though - they work so hard on those plugins!) Of course, the more plugins you have, the less secure your site…

My domain is registered through Hostinger.

To write my posts, I use Bear Markdown Notes. I heard about this program after seeing a few others talking about using it for drafts, notes, etc.

Given your experience, if you were to start a blog today, would you do anything differently?

I honestly don’t think I’d change much! I really love using Bear Blog. It reminds me of the very old school LiveJournal days, or when I used Greymatter. It takes me back to the web being simpler, more straightforward, more fun. I also like Bear’s manifesto, and that he built the service for longevity.

I would probably structure my site differently, especially after seeing some personal sites set up with more of a “digital garden” format. I will eventually adjust my site at some point, but for now, I’m fine with it. (That and between school and work, it’s kind of low on the priority list.)

Financial question since the Web is obsessed with money: how much does it cost to run your blog? Is it just a cost, or does it generate some revenue? And what's your position on people monetising personal blogs?

I purchased a lifetime subscription to Bear after a week of using it, which ran around $200 - I don’t remember exactly. I knew that I was going to be using the service for a while and thought I should invest in a place that I believed in. My Hostinger domain renewals run around $8.99 annually.

My blog is just my personal site - I don’t generate any revenue or monetise in any way.

I don’t mind when people monetize their site - it’s their site and they can do what they choose. As long as it’s not invading others’ privacy or harmful, I have absolutely no issue. Make that money however you like.

Time for some recommendations: any blog you think is worth checking out? And also, who do you think I should be interviewing next?

Ooooh I have three really good suggestions for both checking out and interviewing!

Binary Digit - B is kind of an influence for me to play with my site again. They have just this super cool and early 2000s vibe and style that I really love. Their site reminds me of me when I first started blogging, when I was learning new things and implementing what I thought was cool on my site, joining fanlistings, making new online friends.

Kevin Spencer - I love Kevin’s writing and especially his photography. Not only that, he has fantastic taste in music. I’ve left many a comment on his site about 80s and 90s synthpop and industrial music.

A Parenthetical Departure - Sylvia was one of the first sites I started reading when I started looking up info on Bear Blog. They are EXTREMELY talented and have an excellent knack for playing with design, and showing others how it works.

Final question: is there anything you want to share with us?

One of my side projects is Burn Like A Flame, which is my local K-pop and fandom photography site. I actualy just started a project there that is more than slightly based on People and Blogs - The Fandom Story Project. I’m interviewing local fans to talk about what they love and what their feelings are on fandom culture now, and I’m accompanying that with a photoshoot with that person. It’s a way to introduce people to each other within the community.

Two of my favorite YouTube channels that I have recently been watching are focused on fashion discussion and history - Bliss Foster and understitch,. If you like learning and listening to information on fashion, I highly recommend these creators.

I know a TON of people have now seen K-Pop Demon Hunters (which I love, and the movie has a great message for not only kids, but adults). If you’ve seen this and are interested in getting into K-Pop, I suggest checking out my favorite group, ATEEZ. If you think that most K-Pop is all chirpy bubbly cutesy songs, let me suggest two by this group that aren’t what you’d expect: Guerrilla and Turbulence. I strongly suggesting watching without the translations, and then watching again with them. Their lyrics are the thing that really drew me into this group, and had me learning more about the deeper meaning behind a lot of K-Pop songs.

And finally, THANK YOU to Manu for People and Blogs! I always find some really great new sites to check out after reading these interviews, and I am truly honored to be asked to join this list of great bloggers. It’s inspiring me to work harder on my blog and to post more often.


Keep exploring

Now that you're done reading the interview, go check the blog and subscribe to the RSS feed.

If you're looking for more content, go read one of the previous 117 interviews.

Make sure to also say thank you to Matt Rutherford and the other 127 supporters for making this series possible.

Manu's Feed

28 Nov 2025 at 12:00
#

Rachel’s parents have a really cool limestone clock carved by Rachel’s great-grandfather. The timepiece is from a car of the era. Family lore says he used a hammer and screwdriver because it’s the only tools he had.

jabel

28 Nov 2025 at 01:13
>     >>



Refresh complete

ReloadX
Home
(81) All feeds

Last 24 hours
Download OPML
Annie
*
Articles – Dan Q
*
Baty.net posts
bgfay
Bix Dot Blog
*
Brandon's Journal
*
Chris McLeod's blog
*
Colin Devroe
*
Colin Walker – Daily Feed
Content on Kwon.nyc
Crazy Stupid Tech
*
daverupert.com
Dealgorithmed
*
Human Stuff from Lisa Olivera
*
jabel
*
James Van Dyne
*
Jim Nielsen's Blog
*
Jo's Blog
Kev Quirk
*
Manton Reece
*
Manu's Feed
*
Notes – Dan Q
On my Om
*
QC RSS
rebeccatoh.co
*
Rhoneisms
*
Robert Birming
*
Scripting News for email
*
Simon Collison | Articles & Stream
strandlines
*
The Torment Nexus
*
thejaymo

About Reader


Reader is a public/private RSS & Atom feed reader.


The page is publicly available but all admin and post actions are gated behind login checks. Anyone is welcome to come and have a look at what feeds are listed — the posts visible will be everything within the last week and be unaffected by my read/unread status.


Reader currently updates every six hours.


Close

Search




x
Colin Walker Colin Walker colin@colinwalker.blog