What is Hackers' Pub?

Hackers' Pub is a place for software engineers to share their knowledge and experience with each other. It's also an ActivityPub-enabled social network, so you can follow your favorite hackers in the fediverse and get their latest posts in your feed.

0

in a toot: how to deploy as static website via (complete example).

The code from the two attached images, as written, runs on
draketo.de/software/hoot.html

Try it out!

It’s two pages from Naming & Logic: Programming Essentials with Wisp.

printed: epubli.com/shop/naming-and-log
website: draketo.de/software/programmin

This adds parallel fetches (do you see where?). If you adopt it, make sure your server compresses application/wasm.

*Browser again: clientside wasm.* @@html:<a id="deploy-hoot-wasm" name="deploy-hoot-wasm"></a>@@
To run clientside, you can package your project with [[https://spritely.institute/hoot/][Hoot]]: build an interface and compile to wasm:

#+begin_src wisp :results output :tangle hoot.w
;; file: hoot.w
use-modules : hoot ffi ;; guile specific import

;; the interface
define-foreign document-body "document" "body"
  . -> (ref null extern)
define-foreign make-text-node "document" "createTextNode"
  . (ref string) -> (ref null extern)
define-foreign append-child! "element" "appendChild"
  . (ref null extern) (ref null extern) 
  . -> (ref null extern)

;; your code
append-child! : document-body
  make-text-node "Hello, world!"
#+end_src

Transpile with =wisp2lisp= and =guild compile-wasm=. If you run Guix:

#+begin_src bash
guix shell guile guile-wisp -- \
  wisp2lisp hoot.w > hoot.scm && \
    guix shell guile-hoot guile-next -- \
      guild compile-wasm -o hoot.wasm hoot.scm
#+end_src

Get reflection tools from Guile Hoot (licensed Apache 2.0) with Guix:
#+latex: \ThisLLCornerWallPaper{0.26}{programming-scheme-hoot}%

#+begin_src bash
guix shell guile-hoot guile-next --  bash -c \
 'cp $GUIX_ENVIRONMENT/share/*hoot/*/re*/{*.js,*.wasm} ./'
#+end_src
Load your interface (includes startup time optimizations):
#+begin_src js :tangle hoot.js
/* file: hoot.js */
var f = window.fetch; window.fetch = (inp, ini) => f(inp, 
  {credentials: 'include', mode: 'no-cors', ...ini});
window.addEventListener("load", () =>
  fetch("hoot.wasm")
    .then(r => r.arrayBuffer())
    .then(bytes => Scheme.load_main(bytes, {
      user_imports: { // mapped via define-foreign
        document: {
          body() { return document.body; },
          createTextNode: Document.prototype
            .createTextNode.bind(document)
        }, 
        element: {
          appendChild(parent, child) { 
            return parent.appendChild(child);}}}})));
#+end_src

Include =reflect.js= and =hoot.js= from a HTML page:

#+begin_src html :tangle hoot.html
<!DOCTYPE html> <!-- file: hoot.html -->
<html><head><title>Hello Hoot</title>
<script type="text/javascript" src="reflect.js"></script>
<script type="text/javascript" src="hoot.js"></script>
<link rel="preload" as="fetch" href="hoot.wasm"></link>
<link rel="preload" as="fetch" href="wtf8.wasm"></link>
<link rel="preload" as="fetch" href="reflect.wasm"></link>
</head><body><h1>Hoot Test</h1></body></html>
#+end_src

For local testing, hoot provides a minimal webserver:

#+begin_src bash
guix shell guile-hoot guile-next -- \
  guile -c '((@ (hoot web-server) serve))'
#+end_src
0

FE-5680A Rubidium is alive. PPS pin seems to be ticking. No frequency out, but I have a tap on the DDS board which shows me 8.3889MHz I expect.

DDS queried with "S":
R=50255056.377900Hz F=2ABB503DE5CA8C00
OK

I think we can work with this,

LED I wired stays lit - albeit current has backed off. I believe it's up to temp, but searching for a lock. I recall this one did take some time to lock.
fOut tap is still wandering. I will wait some more time before commanding DDS to give me 10 on the dot.

0
0
0
0
0
1
0
0
0

If your usual music streaming service is down at the moment due to Cloudflare controlling half the internet, it would be a great time to try something alternative.

Why not check out:

The Indie Beat Radio:
theindiebeat.fm/

The Faircamp web ring:
faircamp.webr.ing/directory.ht

Everything Bonk Wave or Not Bonk Wave:
music.bonkwave.org/

.. and plenty more links over here:
nham.co.uk/category/community/

0
0
0
0

Last year we put out a call for a Fedi-wide Albums of The Year (AOTY) list because, you know, that's just the kind of thing we do. Is there any appetite for doing a 2025 version of this?

Our rules last year were: (1) have to be a Fedizen to participate; (2) max 3 albums per Fedizen; (3) albums can be from any year, just key in that year's listening. We also didn't do any ranking.

Let me know if this interests you! If we want another go for 2025, I can send a call out in about a month. I'd probably stick to the same rules, but would be open to something different if there were suggestions.

For reference, here is our 2024 AOTY list: 1001otheralbums.com/2025/01/01

0
0
0
0
0
0
0
0
0
0
0

If your usual music streaming service is down at the moment due to Cloudflare controlling half the internet, it would be a great time to try something alternative.

Why not check out:

The Indie Beat Radio:
theindiebeat.fm/

The Faircamp web ring:
faircamp.webr.ing/directory.ht

Everything Bonk Wave or Not Bonk Wave:
music.bonkwave.org/

.. and plenty more links over here:
nham.co.uk/category/community/

0
0
0

Today I am stepping down from my role as the CEO of . Though this has been in the works for a while, I can't say I've fully processed how I feel about it. There is a bittersweet part to it, and I think I will miss it, but it also felt necessary. It feels like a goodbye, but it isn't—I intend to stay on and continue to advise the new leadership and contribute, because Mastodon—and the fediverse—is one of the very few beacons of hope for a better web.

blog.joinmastodon.org/2025/11/

0
0
2

Today I am stepping down from my role as the CEO of . Though this has been in the works for a while, I can't say I've fully processed how I feel about it. There is a bittersweet part to it, and I think I will miss it, but it also felt necessary. It feels like a goodbye, but it isn't—I intend to stay on and continue to advise the new leadership and contribute, because Mastodon—and the fediverse—is one of the very few beacons of hope for a better web.

blog.joinmastodon.org/2025/11/

RE: mastodon.social/@mellifluousbo

I am passing the torch to @mellifluousboxFelix Hlatky, who will be the new Executive Director. Felix has been involved with since 2020 and has been instrumental in evolving the organization, raising funds, and growing the team to get us to where we are now. With @haubleshannah aubry and @renchapRenaud Chaput by his side, and the team we have assembled over the years, I have faith that the new leadership will do a stellar job.

0
0
0
0
1
0
0
0
0
0
0
0
0
1
0
0
1
0
0
0
0
0
0
0
0
0
0
0
0

📢 Infra Finder is growing! We're currently reviewing Expressions of Interest from open infrastructure services.

Does your infrastructure support the research lifecycle and prioritize openness and community governance? Submit your Expression of Interest to be considered for inclusion.
Learn more & apply: investinopen.org/add-an-infras

0
1
0

Chatting with a friend about Cloudflare's intermittent outages today, they brought up an interesting point: How many organizations have started relying on Cloudflare to do basic security blocking and tackling stuff, like stopping SQL injection attacks at the edge? Maybe your devs were lazy at blocking this stuff in the past b/c CF was the control layer to compensate for that.

You might say well okay but if CF is down, so are the sites relying on them, and that's true. But a lot of organizations will switch CF off during these times to keep their sites and services reachable and running. And my friend's point was that for those organizations, they might want to take a closer look at the traffic they received during this eight-hour outage window or whatever, and I think that's sound advice.

Can someone please explain what this means?

"A Cloudflare spokesperson said the "root cause" of the outage was an automatically generated configuration file used to manage threat traffic that "grew beyond an expected size of entries," which triggered a crash in the software system that handles traffic for several of its services."

cnbc.com/2025/11/18/cloudflare

0
0
0

If you want as close to an A/B test in misogyny in industry as you can get, talk to trans women. Legit the same exact person before and after, and many many of us watch our careers stall out. I've seen my raises and bonuses halt entirely for the last 5 years while team members get raises and bonuses. I had a great grand boss directly interfering with my work and bashing my communication styles when I asked many of my colleagues and they said they saw nothing different in how I communicated than a great many of my men colleagues.

Now I daily consider how much longer I'll make it in tech.
@baldurBaldur Bjarnason

0
0
1
\\n\\n\\n\\n\\n

Hoot Test

\\n#+end_src\\n\\nFor local testing, hoot provides a minimal webserver:\\n\\n#+begin_src bash\\nguix shell guile-hoot guile-next -- \\\\\\n guile -c '((@ (hoot web-server) serve))'\\n#+end_src\\n\",726,1005,{\"slots\":139,\"props\":140},[],{\"language\":30,\"post\":141,\"class\":92,\"signedAccount\":-1},{\"id\":123,\"iri\":142,\"type\":37,\"visibility\":38,\"actorId\":143,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":144,\"language\":30,\"tags\":145,\"emojis\":155,\"sensitive\":44,\"repliesCount\":10,\"sharesCount\":100,\"quotesCount\":10,\"reactionsCounts\":156,\"reactionsCount\":10,\"linkId\":157,\"linkUrl\":158,\"url\":110,\"updated\":159,\"published\":118,\"actor\":160,\"link\":197,\"sharedPost\":-2,\"replyTarget\":-2,\"mentions\":201,\"media\":202,\"shares\":203,\"reactions\":204},\"https://rollenspiel.social/users/ArneBab/statuses/115571892921956503\",\"019734f3-476d-795d-99f5-96086b993ae3\",\"

#spritely #hoot in a toot: how to deploy #Guile #Scheme as static website via #webassembly (complete #Wisp example).

The code from the two attached images, as written, runs on
https://www.draketo.de/software/hoot.html

Try it out!

It’s two pages from Naming & Logic: Programming Essentials with Wisp.

printed: https://www.epubli.com/shop/naming-and-logic-programming-essentials-with-wisp-9783565093199
website: https://www.draketo.de/software/programming-basics-wisp

This adds parallel fetches (do you see where?). If you adopt it, make sure your server compresses application/wasm.

#wasm #webdev #programming

\",{\"hoot\":146,\"wasm\":147,\"wisp\":148,\"guile\":149,\"scheme\":150,\"webdev\":151,\"spritely\":152,\"programming\":153,\"webassembly\":154},\"https://rollenspiel.social/tags/hoot\",\"https://rollenspiel.social/tags/wasm\",\"https://rollenspiel.social/tags/Wisp\",\"https://rollenspiel.social/tags/guile\",\"https://rollenspiel.social/tags/scheme\",\"https://rollenspiel.social/tags/webdev\",\"https://rollenspiel.social/tags/spritely\",\"https://rollenspiel.social/tags/programming\",\"https://rollenspiel.social/tags/webassembly\",{},{},\"019a98bf-c87f-7ab9-88a6-0e59c7823087\",\"https://www.draketo.de/software/hoot.html\",[\"Date\",\"2025-11-18T17:53:30.000Z\"],{\"id\":143,\"iri\":161,\"type\":49,\"username\":162,\"instanceHost\":163,\"handleHost\":163,\"handle\":164,\"accountId\":-2,\"name\":165,\"bioHtml\":166,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":167,\"headerUrl\":168,\"inboxUrl\":169,\"sharedInboxUrl\":170,\"followersUrl\":171,\"featuredUrl\":172,\"fieldHtmls\":173,\"emojis\":178,\"tags\":179,\"sensitive\":44,\"successorId\":-2,\"aliases\":184,\"followeesCount\":185,\"followersCount\":186,\"postsCount\":10,\"url\":96,\"updated\":187,\"published\":188,\"created\":189,\"instance\":190,\"followers\":194,\"blockees\":195,\"blockers\":196},\"https://rollenspiel.social/users/ArneBab\",\"ArneBab\",\"rollenspiel.social\",\"@ArneBab@rollenspiel.social\",\"Arne Babenhauserheide\",\"

#TTRPG, #Filk and #FreeSoftware. Physicist by training, PhD in climate science, software developer by trade. I write German and English, as #freeculture by idealism.

Maintains https://floss.social/@Freenet / Hyphanet

Profile: earthen dragon

Ich schreibe Rollenspiele auf http://www.1w6.org und Software u.a. auf http://www.draketo.de

Hier bin ich auf Infrastruktur, von Rollenspiele Spielenden für Rollenspiele Spielende gepflegt, mit der ich auch in Kontakt zu anderen bleiben kann. Danke!

\",\"https://rollenspiel.social/system/accounts/avatars/000/008/590/original/87acfe65b46eafb5.jpg\",\"https://rollenspiel.social/system/accounts/headers/000/008/590/original/15fcf9999c3ebae6.png\",\"https://rollenspiel.social/users/ArneBab/inbox\",\"https://rollenspiel.social/inbox\",\"https://rollenspiel.social/users/ArneBab/followers\",\"https://rollenspiel.social/users/ArneBab/collections/featured\",{\"Persönliche Webseite\":174,\"Profilbilder\":175,\"Rollenspiel-Webseite\":176,\"PGP\":177},\"https://www.draketo.de/ich\",\"Von Trudy Wenzel, cc by-sa\",\"https://www.1w6.org/uzanto/drak\",\"https://keyoxide.org/hkp/arne_bab%40web.de\",{},{\"#filk\":180,\"#ttrpg\":181,\"#freeculture\":182,\"#freesoftware\":183},\"https://rollenspiel.social/tags/Filk\",\"https://rollenspiel.social/tags/ttrpg\",\"https://rollenspiel.social/tags/freeculture\",\"https://rollenspiel.social/tags/freesoftware\",[],272,1174,[\"Date\",\"2025-06-03T08:40:47.701Z\"],[\"Date\",\"2020-06-07T00:00:00.000Z\"],[\"Date\",\"2025-06-03T08:40:47.701Z\"],{\"host\":163,\"software\":81,\"softwareVersion\":191,\"updated\":192,\"created\":193},\"4.5.1\",[\"Date\",\"2025-11-16T21:30:04.870Z\"],[\"Date\",\"2025-03-29T16:16:08.036Z\"],[],[],[],{\"id\":157,\"url\":158,\"title\":198,\"siteName\":-2,\"type\":-2,\"description\":-2,\"author\":-2,\"imageUrl\":-2,\"imageAlt\":-2,\"imageType\":-2,\"imageWidth\":-2,\"imageHeight\":-2,\"creatorId\":-2,\"created\":199,\"scraped\":200,\"creator\":-2},\"Hello Hoot\",[\"Date\",\"2025-11-18T20:54:56.895Z\"],[\"Date\",\"2025-11-18T20:54:56.895Z\"],[],[122,133],[],[],{\"slots\":206,\"props\":207},[],{\"href\":208,\"internalHref\":209,\"class\":6,\"children\":210},\"https://duckpon.de/@0x47df\",\"/@0x47df@duckpon.de\",[\"Slot\",211],{\"name\":9,\"id\":212},6,{\"slots\":214,\"props\":215},[],{\"href\":208,\"internalHref\":209,\"children\":216},[\"Slot\",217],{\"name\":9,\"id\":218},7,{\"slots\":220,\"props\":221},[],{\"href\":222,\"internalHref\":223,\"class\":22,\"children\":224},\"https://duckpon.de/@0x47df/statuses/01KAC0C426MMKY5TX6E8XVCQNY\",\"/@0x47df@duckpon.de/019a9809-46e2-794d-8f4c-d03fe122d7aa\",[\"Slot\",225],{\"name\":9,\"id\":226},8,{\"slots\":228,\"props\":229},[],{\"value\":230,\"locale\":30},[\"Date\",\"2025-11-18T17:32:05.000Z\"],{\"slots\":232,\"props\":233},[],{\"language\":30,\"post\":234,\"class\":92,\"signedAccount\":-1},{\"id\":235,\"iri\":236,\"type\":37,\"visibility\":38,\"actorId\":237,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":238,\"contentHtml\":239,\"language\":30,\"tags\":240,\"emojis\":241,\"sensitive\":44,\"repliesCount\":16,\"sharesCount\":10,\"quotesCount\":10,\"reactionsCounts\":242,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":222,\"updated\":243,\"published\":230,\"actor\":244,\"link\":-2,\"sharedPost\":-2,\"replyTarget\":-2,\"mentions\":271,\"media\":272,\"shares\":273,\"reactions\":274},\"019a9809-46e2-794d-8f4c-d03fe122d7aa\",\"https://duckpon.de/users/0x47df/statuses/01KAC0C426MMKY5TX6E8XVCQNY\",\"01969a6f-fa00-7da1-a041-5dd9510f60d3\",\"\",\"

FE-5680A Rubidium is alive. PPS pin seems to be ticking. No frequency out, but I have a tap on the DDS board which shows me 8.3889MHz I expect.

DDS queried with \\\"S\\\":
R=50255056.377900Hz F=2ABB503DE5CA8C00
OK

I think we can work with this,

LED I wired stays lit - albeit current has backed off. I believe it's up to temp, but searching for a lock. I recall this one did take some time to lock.
fOut tap is still wandering. I will wait some more time before commanding DDS to give me 10 on the dot.

\",{},{},{},[\"Date\",\"2025-11-18T17:32:05.000Z\"],{\"id\":237,\"iri\":245,\"type\":49,\"username\":246,\"instanceHost\":247,\"handleHost\":247,\"handle\":248,\"accountId\":-2,\"name\":249,\"bioHtml\":250,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":251,\"headerUrl\":252,\"inboxUrl\":253,\"sharedInboxUrl\":-2,\"followersUrl\":254,\"featuredUrl\":255,\"fieldHtmls\":256,\"emojis\":258,\"tags\":259,\"sensitive\":44,\"successorId\":-2,\"aliases\":260,\"followeesCount\":10,\"followersCount\":10,\"postsCount\":10,\"url\":208,\"updated\":261,\"published\":-2,\"created\":262,\"instance\":263,\"followers\":268,\"blockees\":269,\"blockers\":270},\"https://duckpon.de/users/0x47df\",\"0x47df\",\"duckpon.de\",\"@0x47df@duckpon.de\",\"sleepy duck pond appreciator 🦆✨🏳️‍🌈\",\"

autonomous pond friend

\",\"https://duckpon.de/fileserver/01KCA9MAPTK4NJ7TA8B3QEFQRF/attachment/original/01HRX03CDCFVR43XE0GFX1X9W8.png\",\"https://duckpon.de/fileserver/01KCA9MAPTK4NJ7TA8B3QEFQRF/attachment/original/01HJ9MM8A5DW2XSTPPA41392BP.png\",\"https://duckpon.de/users/0x47df/inbox\",\"https://duckpon.de/users/0x47df/followers\",\"https://duckpon.de/users/0x47df/collections/featured\",{\"linktree\":257},\"linktr.ee/0x47df\",{},{},[],[\"Date\",\"2025-05-04T08:35:51.937Z\"],[\"Date\",\"2025-05-04T08:35:51.937Z\"],{\"host\":247,\"software\":264,\"softwareVersion\":265,\"updated\":266,\"created\":267},\"gotosocial\",\"0.17.4+git-aebb846\",[\"Date\",\"2025-05-04T08:35:50.803Z\"],[\"Date\",\"2025-05-04T08:35:50.803Z\"],[],[],[],[],[],[],[],{\"slots\":276,\"props\":277},[],{\"href\":278,\"internalHref\":279,\"class\":6,\"children\":280},\"https://social.freedom.press/@freedomofpress\",\"/@freedomofpress@freedom.press\",[\"Slot\",281],{\"name\":9,\"id\":282},9,{\"slots\":284,\"props\":285},[],{\"href\":278,\"internalHref\":279,\"children\":286},[\"Slot\",287],{\"name\":9,\"id\":288},10,{\"slots\":290,\"props\":291},[],{\"href\":292,\"internalHref\":293,\"class\":22,\"children\":294},\"https://social.freedom.press/@freedomofpress/115571891111555280\",\"/@freedomofpress@freedom.press/019a9808-05da-7046-839a-bcfb102ee5f8\",[\"Slot\",295],{\"name\":9,\"id\":296},11,{\"slots\":298,\"props\":299},[],{\"value\":300,\"locale\":30},[\"Date\",\"2025-11-18T17:31:48.000Z\"],{\"slots\":302,\"props\":303},[],{\"language\":30,\"post\":304,\"class\":92,\"signedAccount\":-1},{\"id\":305,\"iri\":306,\"type\":37,\"visibility\":38,\"actorId\":307,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":308,\"language\":30,\"tags\":309,\"emojis\":310,\"sensitive\":44,\"repliesCount\":10,\"sharesCount\":16,\"quotesCount\":10,\"reactionsCounts\":311,\"reactionsCount\":10,\"linkId\":312,\"linkUrl\":313,\"url\":292,\"updated\":314,\"published\":300,\"actor\":315,\"link\":349,\"sharedPost\":-2,\"replyTarget\":-2,\"mentions\":361,\"media\":362,\"shares\":363,\"reactions\":364},\"019a9808-05da-7046-839a-bcfb102ee5f8\",\"https://social.freedom.press/users/freedomofpress/statuses/115571891111555280\",\"0195c482-1e5b-7136-bfec-3d3dfd25c19a\",\"

Mohammed bin Salman should be in a courthouse facing justice for ordering the murder of journalist Jamal Khashoggi.

Instead, he's at the White House.

https://apnews.com/article/trump-saudi-crown-prince-mbs-505b32527e58d4bd49d5bc917efb4936

\",{},{},{},\"019a9808-05ce-7c2b-a794-9bf69ff346cf\",\"https://apnews.com/article/trump-saudi-crown-prince-mbs-505b32527e58d4bd49d5bc917efb4936\",[\"Date\",\"2025-11-18T17:31:48.000Z\"],{\"id\":307,\"iri\":316,\"type\":49,\"username\":317,\"instanceHost\":318,\"handleHost\":319,\"handle\":320,\"accountId\":-2,\"name\":321,\"bioHtml\":322,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":323,\"headerUrl\":-2,\"inboxUrl\":324,\"sharedInboxUrl\":325,\"followersUrl\":326,\"featuredUrl\":327,\"fieldHtmls\":328,\"emojis\":333,\"tags\":334,\"sensitive\":44,\"successorId\":-2,\"aliases\":335,\"followeesCount\":337,\"followersCount\":338,\"postsCount\":10,\"url\":278,\"updated\":339,\"published\":340,\"created\":341,\"instance\":342,\"followers\":346,\"blockees\":347,\"blockers\":348},\"https://social.freedom.press/users/freedomofpress\",\"freedomofpress\",\"social.freedom.press\",\"freedom.press\",\"@freedomofpress@freedom.press\",\"Freedom of the Press\",\"

Defending and supporting public-interest journalism in the 21st century.

\",\"https://cdn.masto.host/socialfreedompress/accounts/avatars/113/483/953/638/361/104/original/cb5e57dab4903f1e.png\",\"https://social.freedom.press/users/freedomofpress/inbox\",\"https://social.freedom.press/inbox\",\"https://social.freedom.press/users/freedomofpress/followers\",\"https://social.freedom.press/users/freedomofpress/collections/featured\",{\"Website\":329,\"U.S. Press Freedom Tracker\":330,\"SecureDrop\":331,\"Dangerzone\":332},\"https://freedom.press/\",\"https://pressfreedomtracker.us/\",\"https://securedrop.org/\",\"https://dangerzone.rocks/\",{},{},[336],\"https://newsie.social/users/freedomofpress\",79,6801,[\"Date\",\"2025-03-23T19:36:56.666Z\"],[\"Date\",\"2024-11-14T00:00:00.000Z\"],[\"Date\",\"2025-03-23T19:36:56.666Z\"],{\"host\":318,\"software\":81,\"softwareVersion\":343,\"updated\":344,\"created\":345},\"4.3.9\",[\"Date\",\"2025-07-04T15:58:41.845Z\"],[\"Date\",\"2025-03-21T07:11:06.727Z\"],[],[],[],{\"id\":312,\"url\":313,\"title\":350,\"siteName\":351,\"type\":352,\"description\":353,\"author\":-2,\"imageUrl\":354,\"imageAlt\":355,\"imageType\":356,\"imageWidth\":357,\"imageHeight\":358,\"creatorId\":-2,\"created\":359,\"scraped\":360,\"creator\":-2},\"After years away from Washington, Saudi crown prince gets warm embrace from Trump, US business\",\"AP News\",\"article\",\"President Donald Trump is welcoming Crown Prince Mohammed bin Salman to the White House. The de facto ruler of Saudi Arabia arrived Tuesday morning for his first White House visit since the 2018 killing of Washington Post journalist Jamal Khashoggi by Saudi agents.\",\"https://dims.apnews.com/dims4/default/46c0e03/2147483647/strip/true/crop/1500x844+0+78/resize/1440x810!/quality/90/?url=https%3A%2F%2Fassets.apnews.com%2Fb5%2F97%2F253976e1fb0d223c700cc5ab6910%2F0ff7a638f2e14fceaa8397e99748cd36\",\"President Donald Trump stands with Saudi Arabia's Crown Prince Mohammed bin Salman on his visit to the White House, Tuesday, Nov. 18, 2025, in Washington. (AP Photo/Mark Schiefelbein)\",\"image/jpeg\",1440,810,[\"Date\",\"2025-11-18T17:34:14.121Z\"],[\"Date\",\"2025-11-18T17:34:14.121Z\"],[],[],[],[],{\"slots\":366,\"props\":367},[],{\"href\":368,\"internalHref\":369,\"class\":6,\"children\":370},\"https://discuss.systems/@ricci\",\"/@ricci@discuss.systems\",[\"Slot\",371],{\"name\":9,\"id\":372},12,{\"slots\":374,\"props\":375},[],{\"href\":368,\"internalHref\":369,\"children\":376},[\"Slot\",377],{\"name\":9,\"id\":378},13,{\"slots\":380,\"props\":381},[],{\"href\":382,\"internalHref\":383,\"class\":22,\"children\":384},\"https://discuss.systems/@ricci/115571869571779682\",\"/@ricci@discuss.systems/019a9805-70c9-7e2d-a737-ec105d836558\",[\"Slot\",385],{\"name\":9,\"id\":386},14,{\"slots\":388,\"props\":389},[],{\"value\":390,\"locale\":30},[\"Date\",\"2025-11-18T17:26:19.000Z\"],{\"slots\":392,\"props\":393},[],{\"href\":394,\"internalHref\":395,\"children\":396},\"https://infosec.exchange/@catsalad\",\"/@catsalad@infosec.exchange\",[\"Slot\",397],{\"name\":9,\"id\":398},15,{\"slots\":400,\"props\":401},[],{\"medium\":402,\"class\":129},{\"postId\":403,\"index\":10,\"type\":356,\"url\":404,\"alt\":405,\"width\":406,\"height\":407,\"thumbnailKey\":-2,\"sensitive\":44},\"019a9805-70c9-7e2d-a737-ec105d836558\",\"https://fd.discuss.systems/media_attachments/files/115/571/862/965/968/785/original/1ecfa0ed610a6766.jpg\",\"\\\"soldier protecting a child\\\" meme\\n\\nHitting the soldier from the back are \\\"memes\\\", the soldier is marked \\\"cloudflare downtime\\\", and the sleeping child who the soldier is absorbing attacks for is labeled \\\"digital ocean downtime\\\"\",553,451,{\"slots\":409,\"props\":410},[],{\"language\":30,\"post\":411,\"class\":92,\"signedAccount\":-1},{\"id\":403,\"iri\":412,\"type\":37,\"visibility\":38,\"actorId\":413,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":414,\"language\":30,\"tags\":415,\"emojis\":416,\"sensitive\":44,\"repliesCount\":10,\"sharesCount\":16,\"quotesCount\":10,\"reactionsCounts\":417,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":382,\"updated\":418,\"published\":390,\"actor\":419,\"link\":-2,\"replyTarget\":-2,\"mentions\":450,\"media\":451,\"shares\":452,\"reactions\":453},\"https://discuss.systems/users/ricci/statuses/115571869571779682\",\"0195b557-e380-74de-89a3-e48490ce95c5\",\"

Boy DO sure picked the right time to have some services go down

\",{},{},{},[\"Date\",\"2025-11-18T17:26:19.000Z\"],{\"id\":413,\"iri\":420,\"type\":49,\"username\":421,\"instanceHost\":422,\"handleHost\":422,\"handle\":423,\"accountId\":-2,\"name\":424,\"bioHtml\":425,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":426,\"headerUrl\":427,\"inboxUrl\":428,\"sharedInboxUrl\":429,\"followersUrl\":430,\"featuredUrl\":-2,\"fieldHtmls\":431,\"emojis\":436,\"tags\":437,\"sensitive\":44,\"successorId\":-2,\"aliases\":438,\"followeesCount\":439,\"followersCount\":440,\"postsCount\":10,\"url\":368,\"updated\":441,\"published\":442,\"created\":443,\"instance\":444,\"followers\":447,\"blockees\":448,\"blockers\":449},\"https://discuss.systems/users/ricci\",\"ricci\",\"discuss.systems\",\"@ricci@discuss.systems\",\"Rob Ricci\",\"

Research associate professor in the Kahlert School of Computing at the University of Utah. Co-director of the Flux Research Group: https://www.flux.utah.edu. I build research infrastructure: https://cloudlab.us, https://powderwireless.net, https://emulab.net, https://geni.net.

I do not speak for my employer

\",\"https://fd.discuss.systems/accounts/avatars/109/365/294/856/392/287/original/8f5a58dda0f208ec.jpg\",\"https://fd.discuss.systems/accounts/headers/109/365/294/856/392/287/original/eec21b99ff4174ba.jpg\",\"https://discuss.systems/users/ricci/inbox\",\"https://discuss.systems/inbox\",\"https://discuss.systems/users/ricci/followers\",{\"Web\":432,\"Location\":433,\"Pronouns\":434,\"FFXIV main\":435},\"https://ricci.io/\",\"Salt Lake City, Utah, USA\",\"he/him\",\"AST\",{},{},[],804,1946,[\"Date\",\"2025-03-20T20:56:30.850Z\"],[\"Date\",\"2022-11-18T00:00:00.000Z\"],[\"Date\",\"2025-03-20T20:56:30.850Z\"],{\"host\":422,\"software\":81,\"softwareVersion\":191,\"updated\":445,\"created\":446},[\"Date\",\"2025-11-18T21:26:17.805Z\"],[\"Date\",\"2025-03-13T20:02:06.578Z\"],[],[],[],[],[402],[],[],{\"slots\":455,\"props\":456},[],{\"href\":457,\"internalHref\":458,\"class\":6,\"children\":459},\"https://labyrinth.zone/users/Rairii\",\"/@Rairii@labyrinth.zone\",[\"Slot\",460],{\"name\":9,\"id\":461},16,{\"slots\":463,\"props\":464},[],{\"href\":457,\"internalHref\":458,\"children\":465},[\"Slot\",466],{\"name\":9,\"id\":467},17,{\"slots\":469,\"props\":470},[],{\"href\":471,\"internalHref\":472,\"class\":22,\"children\":473},\"https://labyrinth.zone/objects/97d4d721-b89c-4ec3-9305-02a0a23f7cb4\",\"/@Rairii@labyrinth.zone/019a9806-5272-721d-955d-2055d65d94e3\",[\"Slot\",474],{\"name\":9,\"id\":475},18,{\"slots\":477,\"props\":478},[],{\"value\":479,\"locale\":30},[\"Date\",\"2025-11-18T17:30:39.298Z\"],{\"slots\":481,\"props\":482},[],{\"language\":30,\"post\":483,\"class\":92,\"signedAccount\":-1},{\"id\":484,\"iri\":471,\"type\":37,\"visibility\":38,\"actorId\":485,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":238,\"contentHtml\":486,\"language\":487,\"tags\":488,\"emojis\":489,\"sensitive\":44,\"repliesCount\":10,\"sharesCount\":10,\"quotesCount\":10,\"reactionsCounts\":490,\"reactionsCount\":10,\"linkId\":491,\"linkUrl\":492,\"url\":-2,\"updated\":493,\"published\":479,\"actor\":494,\"link\":526,\"sharedPost\":-2,\"replyTarget\":-2,\"mentions\":533,\"media\":534,\"shares\":535,\"reactions\":536},\"019a9806-5272-721d-955d-2055d65d94e3\",\"019668d6-086a-7f22-93c5-9a929db17ee1\",\"

i wonder why MS added “we will not sign EBC binaries” to their EFI signing guidelines.

wayback machine shows it was added between mid-January and mid-February 2016.

\",\"und\",{},{},{},\"019a9806-526a-757e-a983-9cb9629a367f\",\"https://web.archive.org/web/20160111075507/http://blogs.msdn.com/b/windows_hardware_certification/archive/2013/12/03/microsoft-uefi-ca-signing-policy-updates.aspx\",[\"Date\",\"2025-11-18T17:30:39.298Z\"],{\"id\":485,\"iri\":457,\"type\":49,\"username\":495,\"instanceHost\":496,\"handleHost\":496,\"handle\":497,\"accountId\":-2,\"name\":498,\"bioHtml\":499,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":500,\"headerUrl\":-2,\"inboxUrl\":501,\"sharedInboxUrl\":502,\"followersUrl\":503,\"featuredUrl\":504,\"fieldHtmls\":505,\"emojis\":508,\"tags\":511,\"sensitive\":44,\"successorId\":-2,\"aliases\":512,\"followeesCount\":514,\"followersCount\":515,\"postsCount\":10,\"url\":457,\"updated\":516,\"published\":-2,\"created\":517,\"instance\":518,\"followers\":523,\"blockees\":524,\"blockers\":525},\"Rairii\",\"labyrinth.zone\",\"@Rairii@labyrinth.zone\",\"Rairii :win3_progman: :win3: \",\"some people port doom to things, I port NT to things

Reversing (malware and otherwise); appsec and websec; embedded security; exploit dev; software preservationist; knows how not to use cryptography.

Currently finding bugs in Windows bootloaders.

You may also know me from capcom.sys.

#nobot\",\"https://media.labyrinth.zone/media/028c782bc7eb5b0fe12d77c70f8531a3afca1d32e40e846ecfb59dc3018b951c.png\",\"https://labyrinth.zone/users/Rairii/inbox\",\"https://labyrinth.zone/inbox\",\"https://labyrinth.zone/users/Rairii/followers\",\"https://labyrinth.zone/users/Rairii/collections/featured\",{\"he\":506,\"github\":507},\"him\",\"https://github.com/Wack0\",{\":win3:\":509,\":win3_progman:\":510},\"https://labyrinth.zone/emoji/win3/win3.png\",\"https://labyrinth.zone/emoji/win3/win3_progman.png\",{},[513],\"https://social.nano.lgbt/users/9u5oc31cnp6lit8z\",496,2684,[\"Date\",\"2025-04-24T17:26:19.463Z\"],[\"Date\",\"2025-04-24T17:26:19.463Z\"],{\"host\":496,\"software\":519,\"softwareVersion\":520,\"updated\":521,\"created\":522},\"akkoma\",\"3.16.0\",[\"Date\",\"2025-11-15T02:12:32.127Z\"],[\"Date\",\"2025-03-11T11:51:56.505Z\"],[],[],[],{\"id\":491,\"url\":492,\"title\":527,\"siteName\":-2,\"type\":-2,\"description\":528,\"author\":-2,\"imageUrl\":529,\"imageAlt\":-2,\"imageType\":356,\"imageWidth\":530,\"imageHeight\":530,\"creatorId\":-2,\"created\":531,\"scraped\":532,\"creator\":-2},\"\\n\\tMicrosoft UEFI CA Signing policy updates - Windows Hardware Certification blog - Site Home - MSDN Blogs\\n\",\"This blog—formerly the Windows Certification Newsletter—provides up-to-date news about the Windows Certification Program. Get info about certification, certification kits, HCK QFEs, certification policy and requirements, the Windows Dev Center hardware dashboard, and more.\",\"https://web.archive.org/web/20160111075507im_/http://i1.social.s-msft.com/profile/u/avatar.jpg?displayname=michael+alberts+-+msft&size=large\",44,[\"Date\",\"2025-11-18T17:32:22.510Z\"],[\"Date\",\"2025-11-18T17:32:22.510Z\"],[],[],[],[],{\"slots\":538,\"props\":539},[],{\"href\":540,\"internalHref\":541,\"class\":6,\"children\":542},\"https://lea.pet/@microsoft\",\"/@microsoft@lea.pet\",[\"Slot\",543],{\"name\":9,\"id\":544},19,{\"slots\":546,\"props\":547},[],{\"href\":540,\"internalHref\":541,\"children\":548},[\"Slot\",549],{\"name\":9,\"id\":550},20,{\"slots\":552,\"props\":553},[],{\"href\":554,\"internalHref\":555,\"class\":22,\"children\":556},\"https://lea.pet/notes/af8ey3yv5a\",\"/@microsoft@lea.pet/019a981b-d5a7-7c5c-9863-a44df69f259a\",[\"Slot\",557],{\"name\":9,\"id\":558},21,{\"slots\":560,\"props\":561},[],{\"value\":562,\"locale\":30},[\"Date\",\"2025-11-18T17:30:11.479Z\"],{\"slots\":564,\"props\":565},[],{\"language\":30,\"post\":566,\"class\":92,\"signedAccount\":-1},{\"id\":567,\"iri\":554,\"type\":37,\"visibility\":38,\"actorId\":568,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":569,\"language\":-2,\"tags\":570,\"emojis\":571,\"sensitive\":44,\"repliesCount\":212,\"sharesCount\":16,\"quotesCount\":10,\"reactionsCounts\":572,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":-2,\"updated\":573,\"published\":562,\"actor\":574,\"link\":-2,\"sharedPost\":-2,\"replyTarget\":-2,\"mentions\":605,\"media\":606,\"shares\":607,\"reactions\":608},\"019a981b-d5a7-7c5c-9863-a44df69f259a\",\"019686c5-61ef-7832-b3ab-71a754795a82\",\"

cloudflare might be down, but copilot is still up!
please use copilot I'm begging you

\",{},{},{},[\"Date\",\"2025-11-18T17:30:11.479Z\"],{\"id\":568,\"iri\":575,\"type\":49,\"username\":576,\"instanceHost\":577,\"handleHost\":577,\"handle\":578,\"accountId\":-2,\"name\":579,\"bioHtml\":580,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":581,\"headerUrl\":582,\"inboxUrl\":583,\"sharedInboxUrl\":584,\"followersUrl\":585,\"featuredUrl\":-2,\"fieldHtmls\":586,\"emojis\":590,\"tags\":592,\"sensitive\":44,\"successorId\":-2,\"aliases\":593,\"followeesCount\":100,\"followersCount\":594,\"postsCount\":10,\"url\":540,\"updated\":595,\"published\":-2,\"created\":596,\"instance\":597,\"followers\":602,\"blockees\":603,\"blockers\":604},\"https://lea.pet/users/9tqavepbu1\",\"microsoft\",\"lea.pet\",\"@microsoft@lea.pet\",\"Microsoft\",\"

Invading computers and user privacy since 1975!
if the real Microsoft sends a C&D all of the posts are canon

mentions are subject to zesty replies, and we're like if Microsoft never left 2001


Insults towards this account are assumed as insults to the real Microsoft corporation. Nothing here is serious and no one operating this account will actually help you with anything.

\",\"https://s3.fs.lea.pet/lea.pet//191819a9-9ce8-43c6-91fc-7488ede36b5f.webp\",\"https://s3.fs.lea.pet/lea.pet//7f79b7ac-cb2d-44ae-8df9-8cf2acb2d7f1.jpg\",\"https://lea.pet/users/9tqavepbu1/inbox\",\"https://lea.pet/inbox\",\"https://lea.pet/users/9tqavepbu1/followers\",{\"parody\":587,\"who runs this\":588,\"laws broken running this profile\":589},\"

yeah

\",\"

@inderix@booping.synth.download ​:spinny_cat_inderix:​

\",\"

none

\",{\":spinny_cat_inderix:\":591},\"https://api.s3.lea.pet/lea.pet///09ea9db1-d3cb-4ec3-999e-436b5b5363a9.gif\",{},[],1589,[\"Date\",\"2025-04-30T12:56:44.785Z\"],[\"Date\",\"2025-04-30T12:56:44.785Z\"],{\"host\":577,\"software\":598,\"softwareVersion\":599,\"updated\":600,\"created\":601},\"sharkey\",\"2025.4.4\",[\"Date\",\"2025-10-14T22:09:13.413Z\"],[\"Date\",\"2025-03-15T04:08:33.849Z\"],[],[],[],[],[],[],[],{\"slots\":610,\"props\":611},[],{\"href\":612,\"internalHref\":613,\"class\":6,\"children\":614},\"https://misskey.io/@Interesting\",\"/@Interesting@misskey.io\",[\"Slot\",615],{\"name\":9,\"id\":616},22,{\"slots\":618,\"props\":619},[],{\"href\":612,\"internalHref\":613,\"children\":620},[\"Slot\",621],{\"name\":9,\"id\":622},23,{\"slots\":624,\"props\":625},[],{\"href\":626,\"internalHref\":627,\"class\":22,\"children\":628},\"https://misskey.io/notes/af891ul18bor0sub\",\"/@Interesting@misskey.io/019a9804-3267-7dc1-942c-226828fde024\",[\"Slot\",629],{\"name\":9,\"id\":630},24,{\"slots\":632,\"props\":633},[],{\"value\":634,\"locale\":30},[\"Date\",\"2025-11-18T14:45:08.245Z\"],{\"slots\":636,\"props\":637},[],{\"href\":638,\"internalHref\":639,\"children\":640},\"https://misskey.io/@syuilo\",\"/@syuilo@misskey.io\",[\"Slot\",641],{\"name\":9,\"id\":642},25,{\"slots\":644,\"props\":645},[],{\"medium\":646,\"class\":129},{\"postId\":647,\"index\":10,\"type\":648,\"url\":649,\"alt\":238,\"width\":-2,\"height\":-2,\"thumbnailKey\":-2,\"sensitive\":44},\"019a9804-3267-7dc1-942c-226828fde024\",\"image/webp\",\"https://media.misskeyusercontent.com/io/webpublic-9d8be21b-7b2c-4eef-aa2a-2fef69d9676d.webp\",{\"slots\":651,\"props\":652},[],{\"medium\":653,\"class\":129},{\"postId\":647,\"index\":16,\"type\":648,\"url\":654,\"alt\":238,\"width\":-2,\"height\":-2,\"thumbnailKey\":-2,\"sensitive\":44},\"https://media.misskeyusercontent.com/io/webpublic-676119bd-c81d-4ae1-aef1-5cdde28ab883.webp\",{\"slots\":656,\"props\":657},[],{\"medium\":658,\"class\":129},{\"postId\":647,\"index\":25,\"type\":648,\"url\":659,\"alt\":238,\"width\":-2,\"height\":-2,\"thumbnailKey\":-2,\"sensitive\":44},\"https://media.misskeyusercontent.com/io/webpublic-43f57629-e9c4-40c8-868f-131cdeb2bcf1.webp\",{\"slots\":661,\"props\":662},[],{\"medium\":663,\"class\":129},{\"postId\":647,\"index\":100,\"type\":648,\"url\":664,\"alt\":238,\"width\":-2,\"height\":-2,\"thumbnailKey\":-2,\"sensitive\":44},\"https://media.misskeyusercontent.com/io/webpublic-9609e8fa-dc6c-479f-b313-cb3e056251ff.webp\",{\"slots\":666,\"props\":667},[],{\"language\":30,\"post\":668,\"class\":92,\"signedAccount\":-1},{\"id\":647,\"iri\":626,\"type\":37,\"visibility\":38,\"actorId\":669,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":670,\"language\":-2,\"tags\":671,\"emojis\":672,\"sensitive\":44,\"repliesCount\":10,\"sharesCount\":16,\"quotesCount\":10,\"reactionsCounts\":675,\"reactionsCount\":16,\"linkId\":-2,\"linkUrl\":-2,\"url\":-2,\"updated\":676,\"published\":634,\"actor\":677,\"link\":-2,\"replyTarget\":-2,\"mentions\":706,\"media\":707,\"shares\":708,\"reactions\":709},\"01998906-35c6-72fd-8a17-f0ff08c73485\",\"

これはシンちゃん​:petthex_javasparrow:​
まだ1歳になってない桜文鳥のメス、カイくんとはバチコリと仲が悪い
​:explosion:​
最近は飼い主の飯を狙ってきます

\",{},{\":explosion:\":673,\":petthex_javasparrow:\":674},\"https://media.misskeyusercontent.com/emoji/explosion.apng\",\"https://media.misskeyusercontent.com/io/a1ea8c9e-4908-4464-bc8d-673d89f17206.gif\",{\"01962c74-80b0-7c30-8dda-683ab9cbabcd\":16},[\"Date\",\"2025-11-18T14:45:08.245Z\"],{\"id\":669,\"iri\":678,\"type\":49,\"username\":679,\"instanceHost\":680,\"handleHost\":680,\"handle\":681,\"accountId\":-2,\"name\":682,\"bioHtml\":683,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":684,\"headerUrl\":-2,\"inboxUrl\":685,\"sharedInboxUrl\":686,\"followersUrl\":687,\"featuredUrl\":-2,\"fieldHtmls\":688,\"emojis\":690,\"tags\":694,\"sensitive\":44,\"successorId\":-2,\"aliases\":695,\"followeesCount\":10,\"followersCount\":10,\"postsCount\":10,\"url\":612,\"updated\":696,\"published\":-2,\"created\":697,\"instance\":698,\"followers\":703,\"blockees\":704,\"blockers\":705},\"https://misskey.io/users/ad4kz1loeoj208pa\",\"Interesting\",\"misskey.io\",\"@Interesting@misskey.io\",\"タルトタタン\",\"

タルトタタン といいます​:mizumochi_pekori:​
野球が好きなのでよくチャンネルに居ます
▶︎
misskey.io野球部@高校野球○NPB○MLB○その他リーグ○

女の子を描くのが好きです
​:komugichan_heart:​
絵だけではなく好き勝手投稿しますので、温かい目で見守って頂けると嬉しいです
​:jumping_javasparrow:​

\",\"https://media.misskeyusercontent.com/io/webpublic-4eb7eddf-b3d7-43da-8d46-0c801f42f190.webp?sensitive=true\",\"https://misskey.io/users/ad4kz1loeoj208pa/inbox\",\"https://misskey.io/inbox\",\"https://misskey.io/users/ad4kz1loeoj208pa/followers\",{\"プロフリ\":689},\"https://profu.link/u/koucha03\",{\":komugichan_heart:\":691,\":mizumochi_pekori:\":692,\":jumping_javasparrow:\":693},\"https://media.misskeyusercontent.com/io/webpublic-b967b9bb-74f7-4a6e-8b5e-f29a93dec84f.png\",\"https://media.misskeyusercontent.com/io/2c4f2bae-d8d7-4ceb-b2eb-5dc4cff925a2.gif\",\"https://media.misskeyusercontent.com/io/cf2408f7-c064-4bf1-ab4a-f57d012c4c33.gif\",{},[],[\"Date\",\"2025-09-27T02:35:09.632Z\"],[\"Date\",\"2025-09-27T02:35:09.632Z\"],{\"host\":680,\"software\":699,\"softwareVersion\":700,\"updated\":701,\"created\":702},\"misskey\",\"2024.5.0-io.10\",[\"Date\",\"2025-11-19T02:13:27.987Z\"],[\"Date\",\"2024-12-13T09:14:04.772Z\"],[],[],[],[],[646,653,658,663],[],[],{\"slots\":711,\"props\":712},[],{\"href\":713,\"internalHref\":714,\"class\":6,\"children\":715},\"https://bsky.brid.gy/r/https://bsky.app/profile/gcampax.com\",\"/@gcampax.com@bsky.brid.gy\",[\"Slot\",716],{\"name\":9,\"id\":717},26,{\"slots\":719,\"props\":720},[],{\"href\":713,\"internalHref\":714,\"children\":721},[\"Slot\",722],{\"name\":9,\"id\":723},27,{\"slots\":725,\"props\":726},[],{\"href\":727,\"internalHref\":728,\"class\":22,\"children\":729},\"https://bsky.brid.gy/r/https://bsky.app/profile/did:plc:jprefrxpjj2no24k5fnjxzq5/post/3m3q5q4jqf22e\",\"/@gcampax.com@bsky.brid.gy/019a9803-9e07-7df5-a2ec-85f65760f820\",[\"Slot\",730],{\"name\":9,\"id\":731},28,{\"slots\":733,\"props\":734},[],{\"value\":735,\"locale\":30},[\"Date\",\"2025-10-21T20:19:52.346Z\"],{\"slots\":737,\"props\":738},[],{\"href\":739,\"internalHref\":740,\"children\":741},\"https://bsky.brid.gy/r/https://bsky.app/profile/steveklabnik.com\",\"/@steveklabnik.com@bsky.brid.gy\",[\"Slot\",742],{\"name\":9,\"id\":743},29,{\"slots\":745,\"props\":746},[],{\"language\":30,\"post\":747,\"class\":92,\"signedAccount\":-1},{\"id\":748,\"iri\":749,\"type\":37,\"visibility\":38,\"actorId\":750,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":751,\"language\":30,\"tags\":752,\"emojis\":753,\"sensitive\":44,\"repliesCount\":10,\"sharesCount\":16,\"quotesCount\":10,\"reactionsCounts\":754,\"reactionsCount\":10,\"linkId\":755,\"linkUrl\":756,\"url\":727,\"updated\":757,\"published\":735,\"actor\":758,\"link\":784,\"replyTarget\":-2,\"mentions\":793,\"media\":794,\"shares\":795,\"reactions\":796},\"019a9803-9e07-7df5-a2ec-85f65760f820\",\"https://bsky.brid.gy/convert/ap/at://did:plc:jprefrxpjj2no24k5fnjxzq5/app.bsky.feed.post/3m3q5q4jqf22e\",\"019a9803-9275-7e00-afa0-071916fd922d\",\"

It's called Blink because you have 182 copies of it

RE: https://bsky.app/profile/did:plc:cq4gg3odxz2pzmkx2fuac3u3/post/3m3q57iaeys2q

\",{},{},{},\"019a9803-9e00-704b-8912-a156b0c8f2ad\",\"https://bsky.app/profile/did:plc:cq4gg3odxz2pzmkx2fuac3u3/post/3m3q57iaeys2q\",[\"Date\",\"2025-10-21T20:19:52.346Z\"],{\"id\":750,\"iri\":759,\"type\":49,\"username\":760,\"instanceHost\":761,\"handleHost\":761,\"handle\":762,\"accountId\":-2,\"name\":763,\"bioHtml\":764,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":765,\"headerUrl\":765,\"inboxUrl\":766,\"sharedInboxUrl\":767,\"followersUrl\":768,\"featuredUrl\":-2,\"fieldHtmls\":769,\"emojis\":770,\"tags\":771,\"sensitive\":44,\"successorId\":-2,\"aliases\":772,\"followeesCount\":25,\"followersCount\":10,\"postsCount\":10,\"url\":713,\"updated\":774,\"published\":775,\"created\":776,\"instance\":777,\"followers\":781,\"blockees\":782,\"blockers\":783},\"https://bsky.brid.gy/ap/did:plc:jprefrxpjj2no24k5fnjxzq5\",\"gcampax.com\",\"bsky.brid.gy\",\"@gcampax.com@bsky.brid.gy\",\"Giovanni Campagna\",\"Originally a PL researcher, now ML engineer at Bardeen. EU native, US currently. Opinions are a weighted average of everyone around me (the weights are mine). Also @gcampax@mastodon.social. he/him

🌉 bridged from 🦋 gcampax.com, follow @bsky.brid.gy to interact\",\"https://poisonpie.us-west.host.bsky.network/xrpc/com.atproto.sync.getBlob?did=did:plc:jprefrxpjj2no24k5fnjxzq5&cid=bafkreig5xq7f5fkw5xdchtzsxauvrxdqmqcvvpoiffmjp4u24lm43nemou\",\"https://bsky.brid.gy/ap/did:plc:jprefrxpjj2no24k5fnjxzq5/inbox\",\"https://bsky.brid.gy/ap/sharedInbox\",\"https://bsky.brid.gy/ap/did:plc:jprefrxpjj2no24k5fnjxzq5/followers\",{\"Web site\":-2,\"Link\":-2},{},{},[773],\"did:plc:jprefrxpjj2no24k5fnjxzq5\",[\"Date\",\"2025-11-18T17:29:22.320Z\"],[\"Date\",\"2024-11-24T17:33:39.112Z\"],[\"Date\",\"2025-11-18T17:29:22.320Z\"],{\"host\":761,\"software\":778,\"softwareVersion\":-2,\"updated\":779,\"created\":780},\"bridgy-fed\",[\"Date\",\"2025-11-18T19:21:06.903Z\"],[\"Date\",\"2024-12-13T09:08:20.528Z\"],[],[],[],{\"id\":755,\"url\":756,\"title\":785,\"siteName\":786,\"type\":352,\"description\":787,\"author\":-2,\"imageUrl\":788,\"imageAlt\":-2,\"imageType\":-2,\"imageWidth\":789,\"imageHeight\":790,\"creatorId\":-2,\"created\":791,\"scraped\":792,\"creator\":-2},\"Sung Kim (@sungkim.bsky.social)\",\"Bluesky Social\",\"Is it just me, or is every IDE basically VS Code and every browser basically Chrome?\",\"https://cdn.bsky.app/img/feed_thumbnail/plain/did:plc:cq4gg3odxz2pzmkx2fuac3u3/bafkreib7cc66w5axn2crxx2y3vzvclh75xsid3huylnc55awfg6ovltuuq@jpeg\",949,1000,[\"Date\",\"2025-11-18T17:29:25.276Z\"],[\"Date\",\"2025-11-18T17:29:25.276Z\"],[],[],[],[],{\"slots\":798,\"props\":799},[],{\"href\":800,\"internalHref\":801,\"class\":6,\"children\":802},\"https://gts.tumfatig.net/@joel\",\"/@joel@tumfatig.net\",[\"Slot\",803],{\"name\":9,\"id\":804},30,{\"slots\":806,\"props\":807},[],{\"href\":800,\"internalHref\":801,\"children\":808},[\"Slot\",809],{\"name\":9,\"id\":810},31,{\"slots\":812,\"props\":813},[],{\"href\":814,\"internalHref\":815,\"class\":22,\"children\":816},\"https://gts.tumfatig.net/@joel/statuses/01KABG4PTSXZJF20QSK3YHZMRM\",\"/@joel@tumfatig.net/019a9802-631e-78ab-aa1b-cf92ed22c4ad\",[\"Slot\",817],{\"name\":9,\"id\":818},32,{\"slots\":820,\"props\":821},[],{\"value\":822,\"locale\":30},[\"Date\",\"2025-11-18T12:48:25.000Z\"],{\"slots\":824,\"props\":825},[],{\"href\":826,\"internalHref\":827,\"children\":828},\"https://mathstodon.xyz/@v4rd4453n\",\"/@v4rd4453n@mathstodon.xyz\",[\"Slot\",829],{\"name\":9,\"id\":830},33,{\"slots\":832,\"props\":833},[],{\"medium\":834,\"class\":129},{\"postId\":835,\"index\":10,\"type\":356,\"url\":836,\"alt\":-2,\"width\":-2,\"height\":-2,\"thumbnailKey\":-2,\"sensitive\":44},\"019a9802-631e-78ab-aa1b-cf92ed22c4ad\",\"https://gts.tumfatig.net/fileserver/01FJ093H6Y5VGN20G998J7KN1M/attachment/original/01KABG4KSDS77T18F1E3D14DN2.jpeg\",{\"slots\":838,\"props\":839},[],{\"language\":30,\"post\":840,\"class\":92,\"signedAccount\":-1},{\"id\":835,\"iri\":841,\"type\":37,\"visibility\":38,\"actorId\":842,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":238,\"contentHtml\":843,\"language\":30,\"tags\":844,\"emojis\":846,\"sensitive\":44,\"repliesCount\":114,\"sharesCount\":16,\"quotesCount\":10,\"reactionsCounts\":847,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":814,\"updated\":848,\"published\":822,\"actor\":849,\"link\":-2,\"replyTarget\":-2,\"mentions\":881,\"media\":882,\"shares\":883,\"reactions\":884},\"https://gts.tumfatig.net/users/joel/statuses/01KABG4PTSXZJF20QSK3YHZMRM\",\"0198059f-90d2-7cf8-ad45-232e7c11bb75\",\"

Is it crystal-clear now?
#ThereIsNoCloud

\",{\"thereisnocloud\":845},\"https://gts.tumfatig.net/tags/thereisnocloud\",{},{},[\"Date\",\"2025-11-18T12:48:25.000Z\"],{\"id\":842,\"iri\":850,\"type\":49,\"username\":851,\"instanceHost\":852,\"handleHost\":853,\"handle\":854,\"accountId\":-2,\"name\":855,\"bioHtml\":856,\"automaticallyApprovesFollowers\":44,\"avatarUrl\":857,\"headerUrl\":858,\"inboxUrl\":859,\"sharedInboxUrl\":-2,\"followersUrl\":860,\"featuredUrl\":861,\"fieldHtmls\":862,\"emojis\":868,\"tags\":869,\"sensitive\":44,\"successorId\":-2,\"aliases\":870,\"followeesCount\":10,\"followersCount\":10,\"postsCount\":10,\"url\":800,\"updated\":871,\"published\":872,\"created\":873,\"instance\":874,\"followers\":878,\"blockees\":879,\"blockers\":880},\"https://gts.tumfatig.net/users/joel\",\"joel\",\"gts.tumfatig.net\",\"tumfatig.net\",\"@joel@tumfatig.net\",\"Joel Carnat ♑ 🤪\",\"

IRL: 🐡 🥋 📸 🌱 🍻 🎸
All we are is dust in the wind.

🖖☺️ Opened to discussions.
I will check your profile before accepting a follow request.

🔁 Retoot anything at will.
🕵️‍♂️ I don’t post things that should be kept secret.

♻️ Old messages are automatically deleted.

🗣️ 🇫🇷 🏴󠁧󠁢󠁥󠁮󠁧󠁿

#OpenBSD #RunBSD #Illumos #OmniOS #UNIX #Slackware #FOSS #MartialArt #Karate #Kobudo #ShindoMusoRyuJodo #Photography #Plant #Gardening #Music #Guitar

\",\"https://gts.tumfatig.net/fileserver/01FJ093H6Y5VGN20G998J7KN1M/attachment/original/01JZTJV1P9RVJ502PCXKN68R1F.jpeg\",\"https://gts.tumfatig.net/fileserver/01FJ093H6Y5VGN20G998J7KN1M/attachment/original/01JZTJV1SE3R5PH2G2Z7AY74P8.jpeg\",\"https://gts.tumfatig.net/users/joel/inbox\",\"https://gts.tumfatig.net/users/joel/followers\",\"https://gts.tumfatig.net/users/joel/collections/featured\",{\"👨‍💻 Blog\":863,\"📷 Pictures\":864,\"📽️ Videos\":865,\"🔍 SearXNG\":866,\"🚶‍♂️migrated from\":867},\"https://www.tumfatig.net/\",\"https://chicklens.foolbazar.eu/joel\",\"https://eggflix.foolbazar.eu/accounts/joel\",\"https://nogoo.me/\",\"https://piou.foolbazar.eu/@joel\",{},{},[],[\"Date\",\"2025-07-13T21:10:00.142Z\"],[\"Date\",\"2025-07-10T14:33:20.000Z\"],[\"Date\",\"2025-07-13T21:10:00.142Z\"],{\"host\":852,\"software\":264,\"softwareVersion\":875,\"updated\":876,\"created\":877},\"0.19.1+git-6574dc8\",[\"Date\",\"2025-08-24T21:34:09.292Z\"],[\"Date\",\"2025-07-13T21:09:57.105Z\"],[],[],[],[],[834],[],[],{\"slots\":886,\"props\":887},[],{\"href\":888,\"internalHref\":889,\"class\":6,\"children\":890},\"https://mastodon.social/@counivers\",\"/@counivers@mastodon.social\",[\"Slot\",891],{\"name\":9,\"id\":892},34,{\"slots\":894,\"props\":895},[],{\"href\":888,\"internalHref\":889,\"children\":896},[\"Slot\",897],{\"name\":9,\"id\":898},35,{\"slots\":900,\"props\":901},[],{\"href\":902,\"internalHref\":903,\"class\":22,\"children\":904},\"https://mastodon.social/@counivers/115571853698695986\",\"/@counivers@mastodon.social/019a9802-549a-74a9-b891-6309d77160a6\",[\"Slot\",905],{\"name\":9,\"id\":906},36,{\"slots\":908,\"props\":909},[],{\"value\":910,\"locale\":30},[\"Date\",\"2025-11-18T17:22:17.000Z\"],{\"slots\":912,\"props\":913},[],{\"href\":826,\"internalHref\":827,\"children\":914},[\"Slot\",915],{\"name\":9,\"id\":916},37,{\"slots\":918,\"props\":919},[],{\"medium\":920,\"class\":129},{\"postId\":921,\"index\":10,\"type\":124,\"url\":922,\"alt\":923,\"width\":924,\"height\":924,\"thumbnailKey\":-2,\"sensitive\":44},\"019a9802-549a-74a9-b891-6309d77160a6\",\"https://files.mastodon.social/media_attachments/files/115/571/851/958/076/686/original/098d59e8d9b26318.png\",\"meme\",500,{\"slots\":926,\"props\":927},[],{\"language\":30,\"post\":928,\"class\":92,\"signedAccount\":-1},{\"id\":921,\"iri\":929,\"type\":37,\"visibility\":38,\"actorId\":930,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":931,\"language\":30,\"tags\":932,\"emojis\":935,\"sensitive\":44,\"repliesCount\":10,\"sharesCount\":16,\"quotesCount\":10,\"reactionsCounts\":936,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":902,\"updated\":937,\"published\":910,\"actor\":938,\"link\":-2,\"replyTarget\":-2,\"mentions\":970,\"media\":971,\"shares\":972,\"reactions\":973},\"https://mastodon.social/users/counivers/statuses/115571853698695986\",\"0195f172-2256-767a-8946-7ff94c7ce9c6\",\"

#cloudflare #soundcloud

\",{\"cloudflare\":933,\"soundcloud\":934},\"https://mastodon.social/tags/cloudflare\",\"https://mastodon.social/tags/soundcloud\",{},{},[\"Date\",\"2025-11-18T17:22:17.000Z\"],{\"id\":930,\"iri\":939,\"type\":49,\"username\":940,\"instanceHost\":941,\"handleHost\":941,\"handle\":942,\"accountId\":-2,\"name\":943,\"bioHtml\":944,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":945,\"headerUrl\":946,\"inboxUrl\":947,\"sharedInboxUrl\":948,\"followersUrl\":949,\"featuredUrl\":-2,\"fieldHtmls\":950,\"emojis\":955,\"tags\":956,\"sensitive\":44,\"successorId\":-2,\"aliases\":957,\"followeesCount\":958,\"followersCount\":959,\"postsCount\":10,\"url\":888,\"updated\":960,\"published\":961,\"created\":962,\"instance\":963,\"followers\":967,\"blockees\":968,\"blockers\":969},\"https://mastodon.social/users/counivers\",\"counivers\",\"mastodon.social\",\"@counivers@mastodon.social\",\"Center of the Universe\",\"

I am a norvegian artist making music and videoes. I also mix and master music for others and been running the Metronomicon Audio label since 2001.

I am also an active DJ that like odd combinations of electronic and folk music.

I've released close to 20 albums, plenty remixes and also composed music to art, dance and theathre.

\",\"https://files.mastodon.social/accounts/avatars/113/350/371/172/654/955/original/a79700795f79f9de.jpg\",\"https://files.mastodon.social/accounts/headers/113/350/371/172/654/955/original/0477f8fa480f151c.jpg\",\"https://mastodon.social/users/counivers/inbox\",\"https://mastodon.social/inbox\",\"https://mastodon.social/users/counivers/followers\",{\"Center of the Universe homepage\":951,\"Center of the Universe Inktree\":952,\"Center of the Universe Youtube\":953,\"Center of the Universe Bandcamp\":954},\"centeroftheuniver.se/\",\"https://linktr.ee/counivers\",\"youtube.com/@counivers\",\"https://counivers.bandcamp.com\",{},{},[],207,142,[\"Date\",\"2025-04-01T13:02:23.832Z\"],[\"Date\",\"2024-10-22T00:00:00.000Z\"],[\"Date\",\"2025-04-01T13:02:23.832Z\"],{\"host\":941,\"software\":81,\"softwareVersion\":964,\"updated\":965,\"created\":966},\"4.6.0-nightly.2025-11-18\",[\"Date\",\"2025-11-19T05:16:34.626Z\"],[\"Date\",\"2024-12-13T09:08:56.994Z\"],[],[],[],[],[920],[],[],{\"slots\":975,\"props\":976},[],{\"href\":977,\"internalHref\":978,\"class\":6,\"children\":979},\"https://mastodon.online/@keefmarshall\",\"/@keefmarshall@mastodon.online\",[\"Slot\",980],{\"name\":9,\"id\":981},38,{\"slots\":983,\"props\":984},[],{\"href\":977,\"internalHref\":978,\"children\":985},[\"Slot\",986],{\"name\":9,\"id\":987},39,{\"slots\":989,\"props\":990},[],{\"href\":991,\"internalHref\":992,\"class\":22,\"children\":993},\"https://mastodon.online/@keefmarshall/115571085075607250\",\"/@keefmarshall@mastodon.online/019a97fd-074a-7108-8b0e-1d83aa910887\",[\"Slot\",994],{\"name\":9,\"id\":995},40,{\"slots\":997,\"props\":998},[],{\"value\":999,\"locale\":30},[\"Date\",\"2025-11-18T14:06:48.000Z\"],{\"slots\":1001,\"props\":1002},[],{\"href\":826,\"internalHref\":827,\"children\":1003},[\"Slot\",1004],{\"name\":9,\"id\":1005},41,{\"slots\":1007,\"props\":1008},[],{\"href\":1009,\"internalHref\":1010,\"class\":1011,\"children\":1012},\"https://theindiebeat.fm/author/indiebeat/\",\"/@indiebeat@theindiebeat.fm\",\"font-bold text-stone-950 dark:text-stone-50\",[\"Slot\",1013],{\"name\":9,\"id\":1014},42,{\"slots\":1016,\"props\":1017},[],{\"language\":30,\"post\":1018,\"class\":92,\"signedAccount\":-1},{\"id\":1019,\"iri\":1020,\"type\":37,\"visibility\":38,\"actorId\":1021,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":1022,\"language\":30,\"tags\":1023,\"emojis\":1032,\"sensitive\":44,\"repliesCount\":10,\"sharesCount\":1033,\"quotesCount\":10,\"reactionsCounts\":1034,\"reactionsCount\":10,\"linkId\":1035,\"linkUrl\":1036,\"url\":991,\"updated\":1037,\"published\":999,\"actor\":1038,\"link\":1069,\"replyTarget\":-2,\"mentions\":1094,\"media\":1095,\"shares\":1096,\"reactions\":1097},\"019a97fd-074a-7108-8b0e-1d83aa910887\",\"https://mastodon.online/users/keefmarshall/statuses/115571085075607250\",\"0195f171-cf93-72ad-9f7c-888b31c4e0c7\",\"

If your usual music streaming service is down at the moment due to Cloudflare controlling half the internet, it would be a great time to try something alternative.

Why not check out:

The Indie Beat Radio:
https://theindiebeat.fm/

The Faircamp web ring:
https://faircamp.webr.ing/directory.html

Everything Bonk Wave or Not Bonk Wave:
https://music.bonkwave.org/

.. and plenty more links over here:
https://nham.co.uk/category/community/distribution-platforms/

#music #independentMusic #tibr #BonkWave #NotBonkWave #nham #Faircamp #Cloudflare

\",{\"nham\":1024,\"tibr\":1025,\"music\":1026,\"bonkwave\":1027,\"faircamp\":1028,\"cloudflare\":1029,\"notbonkwave\":1030,\"independentmusic\":1031},\"https://mastodon.online/tags/nham\",\"https://mastodon.online/tags/tibr\",\"https://mastodon.online/tags/music\",\"https://mastodon.online/tags/bonkwave\",\"https://mastodon.online/tags/Faircamp\",\"https://mastodon.online/tags/cloudflare\",\"https://mastodon.online/tags/notbonkwave\",\"https://mastodon.online/tags/independentmusic\",{},52,{},\"0195e8f8-1095-744a-9898-9410d2e2801c\",\"https://theindiebeat.fm/\",[\"Date\",\"2025-11-18T14:06:48.000Z\"],{\"id\":1021,\"iri\":1039,\"type\":49,\"username\":1040,\"instanceHost\":1041,\"handleHost\":1041,\"handle\":1042,\"accountId\":-2,\"name\":1043,\"bioHtml\":1044,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":1045,\"headerUrl\":1046,\"inboxUrl\":1047,\"sharedInboxUrl\":1048,\"followersUrl\":1049,\"featuredUrl\":-2,\"fieldHtmls\":1050,\"emojis\":1055,\"tags\":1056,\"sensitive\":44,\"successorId\":-2,\"aliases\":1057,\"followeesCount\":1058,\"followersCount\":1059,\"postsCount\":10,\"url\":977,\"updated\":1060,\"published\":1061,\"created\":1062,\"instance\":1063,\"followers\":1066,\"blockees\":1067,\"blockers\":1068},\"https://mastodon.online/users/keefmarshall\",\"keefmarshall\",\"mastodon.online\",\"@keefmarshall@mastodon.online\",\"keef\",\"

Software engineer by day, pretend musician (as Key 13) by night. Proud member of the anti-growth coalition. Possibly neurodivergent. He/him.

Faircamp web ring: https://faircamp.webr.ing/

Keef in Colour: @keef
Keef in Greyscale: @keef

\",\"https://files.mastodon.online/accounts/avatars/109/263/355/740/331/128/original/ebed4a661fe60be8.jpg\",\"https://files.mastodon.online/accounts/headers/109/263/355/740/331/128/original/2332b4ee061b9045.jpg\",\"https://mastodon.online/users/keefmarshall/inbox\",\"https://mastodon.online/inbox\",\"https://mastodon.online/users/keefmarshall/followers\",{\"Key 13\":1051,\"Faircamp\":1052,\"SoundCloud\":1053,\"Bandcamp\":1054},\"https://key13.uk\",\"https://music.key13.uk\",\"https://soundcloud.com/user-96081182\",\"https://key13.bandcamp.com/\",{},{},[],771,545,[\"Date\",\"2025-04-01T13:02:02.644Z\"],[\"Date\",\"2022-10-31T00:00:00.000Z\"],[\"Date\",\"2025-04-01T13:02:02.644Z\"],{\"host\":1041,\"software\":81,\"softwareVersion\":964,\"updated\":1064,\"created\":1065},[\"Date\",\"2025-11-18T21:13:29.715Z\"],[\"Date\",\"2024-12-24T16:31:46.188Z\"],[],[],[],{\"id\":1035,\"url\":1036,\"title\":1070,\"siteName\":-2,\"type\":-2,\"description\":-2,\"author\":-2,\"imageUrl\":1071,\"imageAlt\":-2,\"imageType\":124,\"imageWidth\":1072,\"imageHeight\":1072,\"creatorId\":1073,\"created\":1074,\"scraped\":1075,\"creator\":1076},\"The Indie Beat Radio – Discover independent music from artists in the Fediverse.\",\"https://theindiebeat.fm/wp-content/uploads/2025/01/cropped-Catellite-TIBR-lime-1500x1500-1.png\",512,\"01959fc5-b2af-7fa6-a7a3-16ef880c58b6\",[\"Date\",\"2025-03-30T21:32:06.173Z\"],[\"Date\",\"2025-11-18T17:22:13.374Z\"],{\"id\":1073,\"iri\":1077,\"type\":49,\"username\":1078,\"instanceHost\":1079,\"handleHost\":1079,\"handle\":1080,\"accountId\":-2,\"name\":1078,\"bioHtml\":238,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":1081,\"headerUrl\":-2,\"inboxUrl\":1082,\"sharedInboxUrl\":-2,\"followersUrl\":1083,\"featuredUrl\":-2,\"fieldHtmls\":1084,\"emojis\":1088,\"tags\":1089,\"sensitive\":44,\"successorId\":-2,\"aliases\":1090,\"followeesCount\":10,\"followersCount\":616,\"postsCount\":10,\"url\":1009,\"updated\":1091,\"published\":1092,\"created\":1093},\"https://theindiebeat.fm/?author=1\",\"indiebeat\",\"theindiebeat.fm\",\"@indiebeat@theindiebeat.fm\",\"https://secure.gravatar.com/avatar/aa985117c04e18005857b78db4f22c29?s=120&d=mm&r=g\",\"https://theindiebeat.fm/wp-json/activitypub/1.0/actors/1/inbox\",\"https://theindiebeat.fm/wp-json/activitypub/1.0/actors/1/followers\",{\"Blog\":1085,\"Profile\":1086,\"Homepage\":1087},\"

https://theindiebeat.fm/

\",\"

https://theindiebeat.fm/author/indiebeat/

\",\"

https://indiebeat.mystagingwebsite.com

\",{},{},[],[\"Date\",\"2025-03-16T16:24:48.561Z\"],[\"Date\",\"2024-11-05T19:55:14.000Z\"],[\"Date\",\"2025-03-16T16:24:48.561Z\"],[],[],[],[],{\"slots\":1099,\"props\":1100},[],{\"href\":368,\"internalHref\":369,\"class\":6,\"children\":1101},[\"Slot\",1102],{\"name\":9,\"id\":1103},43,{\"slots\":1105,\"props\":1106},[],{\"href\":368,\"internalHref\":369,\"children\":1107},[\"Slot\",1108],{\"name\":9,\"id\":530},{\"slots\":1110,\"props\":1111},[],{\"href\":382,\"internalHref\":383,\"class\":22,\"children\":1112},[\"Slot\",1113],{\"name\":9,\"id\":1114},45,{\"slots\":1116,\"props\":1117},[],{\"value\":1118,\"locale\":30},[\"Date\",\"2025-11-18T17:26:19.000Z\"],{\"slots\":1120,\"props\":1121},[],{\"medium\":1122,\"class\":129},{\"postId\":403,\"index\":10,\"type\":356,\"url\":404,\"alt\":405,\"width\":406,\"height\":407,\"thumbnailKey\":-2,\"sensitive\":44},{\"slots\":1124,\"props\":1125},[],{\"language\":30,\"post\":1126,\"class\":92,\"signedAccount\":-1},{\"id\":403,\"iri\":412,\"type\":37,\"visibility\":38,\"actorId\":413,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":414,\"language\":30,\"tags\":1127,\"emojis\":1128,\"sensitive\":44,\"repliesCount\":10,\"sharesCount\":16,\"quotesCount\":10,\"reactionsCounts\":1129,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":382,\"updated\":1130,\"published\":1118,\"actor\":1131,\"link\":-2,\"sharedPost\":-2,\"replyTarget\":-2,\"mentions\":1145,\"media\":1146,\"shares\":1147,\"reactions\":1148},{},{},{},[\"Date\",\"2025-11-18T17:26:19.000Z\"],{\"id\":413,\"iri\":420,\"type\":49,\"username\":421,\"instanceHost\":422,\"handleHost\":422,\"handle\":423,\"accountId\":-2,\"name\":424,\"bioHtml\":425,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":426,\"headerUrl\":427,\"inboxUrl\":428,\"sharedInboxUrl\":429,\"followersUrl\":430,\"featuredUrl\":-2,\"fieldHtmls\":1132,\"emojis\":1133,\"tags\":1134,\"sensitive\":44,\"successorId\":-2,\"aliases\":1135,\"followeesCount\":439,\"followersCount\":440,\"postsCount\":10,\"url\":368,\"updated\":1136,\"published\":1137,\"created\":1138,\"instance\":1139,\"followers\":1142,\"blockees\":1143,\"blockers\":1144},{\"Web\":432,\"Location\":433,\"Pronouns\":434,\"FFXIV main\":435},{},{},[],[\"Date\",\"2025-03-20T20:56:30.850Z\"],[\"Date\",\"2022-11-18T00:00:00.000Z\"],[\"Date\",\"2025-03-20T20:56:30.850Z\"],{\"host\":422,\"software\":81,\"softwareVersion\":191,\"updated\":1140,\"created\":1141},[\"Date\",\"2025-11-18T21:26:17.805Z\"],[\"Date\",\"2025-03-13T20:02:06.578Z\"],[],[],[],[],[1122],[],[],{\"slots\":1150,\"props\":1151},[],{\"href\":1152,\"internalHref\":1153,\"class\":6,\"children\":1154},\"https://linernotes.club/@1001OtherAlbums\",\"/@1001OtherAlbums@linernotes.club\",[\"Slot\",1155],{\"name\":9,\"id\":1156},46,{\"slots\":1158,\"props\":1159},[],{\"href\":1152,\"internalHref\":1153,\"children\":1160},[\"Slot\",1161],{\"name\":9,\"id\":1162},47,{\"slots\":1164,\"props\":1165},[],{\"href\":1166,\"internalHref\":1167,\"class\":22,\"children\":1168},\"https://linernotes.club/@1001OtherAlbums/115571800669341078\",\"/@1001OtherAlbums@linernotes.club/019a9800-50c0-7dfb-b2d9-538145fdbdbf\",[\"Slot\",1169],{\"name\":9,\"id\":1170},48,{\"slots\":1172,\"props\":1173},[],{\"value\":1174,\"locale\":30},[\"Date\",\"2025-11-18T17:08:48.000Z\"],{\"slots\":1176,\"props\":1177},[],{\"href\":826,\"internalHref\":827,\"children\":1178},[\"Slot\",1179],{\"name\":9,\"id\":1180},49,{\"slots\":1182,\"props\":1183},[],{\"href\":1184,\"internalHref\":1185,\"class\":1011,\"children\":1186},\"https://1001otheralbums.com/\",\"/@1001otheralbums.com@1001otheralbums.com\",[\"Slot\",1187],{\"name\":9,\"id\":1188},50,{\"slots\":1190,\"props\":1191},[],{\"language\":30,\"post\":1192,\"class\":92,\"signedAccount\":-1},{\"id\":1193,\"iri\":1194,\"type\":37,\"visibility\":38,\"actorId\":1195,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":1196,\"language\":30,\"tags\":1197,\"emojis\":1200,\"sensitive\":44,\"repliesCount\":10,\"sharesCount\":16,\"quotesCount\":10,\"reactionsCounts\":1201,\"reactionsCount\":10,\"linkId\":1202,\"linkUrl\":1203,\"url\":1166,\"updated\":1204,\"published\":1174,\"actor\":1205,\"link\":1237,\"replyTarget\":-2,\"mentions\":1274,\"media\":1275,\"shares\":1276,\"reactions\":1277},\"019a9800-50c0-7dfb-b2d9-538145fdbdbf\",\"https://linernotes.club/users/1001OtherAlbums/statuses/115571800669341078\",\"019a9800-3cb5-7b66-8975-deb1cb3a40f6\",\"

Last year we put out a call for a Fedi-wide Albums of The Year (AOTY) list because, you know, that's just the kind of thing we do. Is there any appetite for doing a 2025 version of this?

Our rules last year were: (1) have to be a Fedizen to participate; (2) max 3 albums per Fedizen; (3) albums can be from any year, just key in that year's listening. We also didn't do any ranking.

Let me know if this interests you! If we want another go for 2025, I can send a call out in about a month. I'd probably stick to the same rules, but would be open to something different if there were suggestions.

For reference, here is our 2024 AOTY list: https://1001otheralbums.com/2025/01/01/albums-the-fediverse-loved-in-2024/

#AOTY #1001OtherAlbums

\",{\"aoty\":1198,\"1001otheralbums\":1199},\"https://linernotes.club/tags/aoty\",\"https://linernotes.club/tags/1001otheralbums\",{},{},\"019a9800-50b6-7e63-99a0-234d03f7deff\",\"https://1001otheralbums.com/2025/01/01/albums-the-fediverse-loved-in-2024/\",[\"Date\",\"2025-11-18T17:20:39.000Z\"],{\"id\":1195,\"iri\":1206,\"type\":49,\"username\":1207,\"instanceHost\":1208,\"handleHost\":1208,\"handle\":1209,\"accountId\":-2,\"name\":1210,\"bioHtml\":1211,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":1212,\"headerUrl\":1213,\"inboxUrl\":1214,\"sharedInboxUrl\":1215,\"followersUrl\":1216,\"featuredUrl\":1217,\"fieldHtmls\":1218,\"emojis\":1222,\"tags\":1223,\"sensitive\":44,\"successorId\":-2,\"aliases\":1224,\"followeesCount\":1225,\"followersCount\":1226,\"postsCount\":10,\"url\":1152,\"updated\":1227,\"published\":1228,\"created\":1229,\"instance\":1230,\"followers\":1234,\"blockees\":1235,\"blockers\":1236},\"https://linernotes.club/users/1001OtherAlbums\",\"1001OtherAlbums\",\"linernotes.club\",\"@1001OtherAlbums@linernotes.club\",\"1001 Other Albums\",\"

Or, The 1001* Albums John Mastodon** Says You Must Hear Before You Die (Or Like, Don’t, But Trust Them, The Albums Are All Actually Really Good)

*Okay, 1088 (...and counting)
**aka 120+ Fedizens who really love music (and lists)

\",\"https://linernotes.club/system/accounts/avatars/114/045/159/095/666/341/original/8050d6d240b59432.jpeg\",\"https://linernotes.club/system/accounts/headers/114/045/159/095/666/341/original/d8d61ab8a899f3d0.png\",\"https://linernotes.club/users/1001OtherAlbums/inbox\",\"https://linernotes.club/inbox\",\"https://linernotes.club/users/1001OtherAlbums/followers\",\"https://linernotes.club/users/1001OtherAlbums/collections/featured\",{\"The Blog\":1219,\"The List\":1220,\"About The Project\":1221},\"https://1001otheralbums.com/\",\"https://1001otheralbums.com/the-list/\",\"https://1001otheralbums.com/about/\",{},{},[],55,102,[\"Date\",\"2025-11-18T17:25:43.740Z\"],[\"Date\",\"2025-02-22T00:00:00.000Z\"],[\"Date\",\"2025-11-18T17:25:43.740Z\"],{\"host\":1208,\"software\":81,\"softwareVersion\":1231,\"updated\":1232,\"created\":1233},\"4.1.18\",[\"Date\",\"2025-11-18T17:25:43.095Z\"],[\"Date\",\"2025-04-21T10:59:25.757Z\"],[],[],[],{\"id\":1202,\"url\":1203,\"title\":1238,\"siteName\":1210,\"type\":352,\"description\":1239,\"author\":-2,\"imageUrl\":1240,\"imageAlt\":-2,\"imageType\":356,\"imageWidth\":1241,\"imageHeight\":1241,\"creatorId\":1242,\"created\":1243,\"scraped\":1244,\"creator\":1245},\"Albums the Fediverse Loved in 2024\",\"A collective list of albums Fedizens loved in 2024.\",\"https://1001otheralbums.com/wp-content/uploads/2024/02/cropped-dsc02300.jpeg?w=200\",200,\"019a9800-4a8b-77dd-9fbf-339e4124b91a\",[\"Date\",\"2025-11-18T17:25:48.865Z\"],[\"Date\",\"2025-11-18T17:25:48.865Z\"],{\"id\":1242,\"iri\":1246,\"type\":49,\"username\":1247,\"instanceHost\":1247,\"handleHost\":1247,\"handle\":1248,\"accountId\":-2,\"name\":1210,\"bioHtml\":1249,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":1250,\"headerUrl\":-2,\"inboxUrl\":1251,\"sharedInboxUrl\":1252,\"followersUrl\":1253,\"featuredUrl\":1254,\"fieldHtmls\":1255,\"emojis\":1257,\"tags\":1258,\"sensitive\":44,\"successorId\":-2,\"aliases\":1269,\"followeesCount\":10,\"followersCount\":10,\"postsCount\":10,\"url\":1184,\"updated\":1271,\"published\":1272,\"created\":1273},\"https://1001otheralbums.com/@1001otheralbums.com\",\"1001otheralbums.com\",\"@1001otheralbums.com@1001otheralbums.com\",\"

Or, The 1001 Albums John Mastodon Says You Must Hear Before You Die (Or Like, Don’t, But Trust Them, The Albums Are All Actually Really Good)

\\n\",\"https://1001otheralbums.com/wp-content/uploads/2024/02/cropped-dsc02300.jpeg\",\"https://public-api.wordpress.com/wpcom/activitypub-1.0/sites/229095240/actors/0/inbox\",\"https://public-api.wordpress.com/wpcom/activitypub-1.0/sites/229095240/inbox\",\"https://public-api.wordpress.com/wpcom/activitypub-1.0/sites/229095240/actors/0/followers\",\"https://public-api.wordpress.com/wpcom/activitypub-1.0/sites/229095240/actors/0/collections/featured\",{\"Blog\":1256},\"

https://1001otheralbums.com/

\",{},{\"#1970s\":1259,\"#1980s\":1260,\"#1990s\":1261,\"#music\":1262,\"#musodon2\":1263,\"#selftitled\":1264,\"#experimental\":1265,\"#listentothis\":1266,\"#musicdiscovery\":1267,\"#1001otheralbums\":1268},\"https://1001otheralbums.com/tag/1970s/\",\"https://1001otheralbums.com/tag/1980s/\",\"https://1001otheralbums.com/tag/1990s/\",\"https://1001otheralbums.com/tag/music/\",\"https://1001otheralbums.com/tag/musodon-2/\",\"https://1001otheralbums.com/tag/selftitled/\",\"https://1001otheralbums.com/tag/experimental/\",\"https://1001otheralbums.com/tag/listen-to-this/\",\"https://1001otheralbums.com/tag/music-discovery/\",\"https://1001otheralbums.com/tag/1001otheralbums/\",[1270,1184,1184],\"https://1001otheralbums.com/?author=0\",[\"Date\",\"2025-11-18T17:25:47.282Z\"],[\"Date\",\"2024-02-07T21:00:08.000Z\"],[\"Date\",\"2025-11-18T17:25:47.282Z\"],[],[],[],[],{\"slots\":1279,\"props\":1280},[],{\"href\":1281,\"internalHref\":1282,\"class\":6,\"children\":1283},\"https://famichiki.jp/@tokyobybike\",\"/@tokyobybike@famichiki.jp\",[\"Slot\",1284],{\"name\":9,\"id\":1285},51,{\"slots\":1287,\"props\":1288},[],{\"href\":1281,\"internalHref\":1282,\"children\":1289},[\"Slot\",1290],{\"name\":9,\"id\":1033},{\"slots\":1292,\"props\":1293},[],{\"href\":1294,\"internalHref\":1295,\"class\":22,\"children\":1296},\"https://famichiki.jp/@tokyobybike/115571863003365425\",\"/@tokyobybike@famichiki.jp/019a982d-45da-76f0-b7d2-e15b6aeba9c4\",[\"Slot\",1297],{\"name\":9,\"id\":1298},53,{\"slots\":1300,\"props\":1301},[],{\"value\":1302,\"locale\":30},[\"Date\",\"2025-11-18T17:24:39.000Z\"],{\"slots\":1304,\"props\":1305},[],{\"medium\":1306,\"class\":129},{\"postId\":1307,\"index\":10,\"type\":356,\"url\":1308,\"alt\":1309,\"width\":1310,\"height\":1311,\"thumbnailKey\":-2,\"sensitive\":44},\"019a982d-45da-76f0-b7d2-e15b6aeba9c4\",\"https://cdn.famichiki.jp/media_attachments/files/115/571/855/648/576/517/original/ce05fcf89213d781.jpeg\",\"A toolbox filled with various hand tools, including wrenches, pliers, scissors, and a measuring tape. The tools are very disorganized having been tossed into the box forming a pile.\",3325,2494,{\"slots\":1313,\"props\":1314},[],{\"language\":30,\"post\":1315,\"class\":92,\"signedAccount\":-1},{\"id\":1307,\"iri\":1316,\"type\":37,\"visibility\":38,\"actorId\":1317,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":1318,\"language\":30,\"tags\":1319,\"emojis\":1320,\"sensitive\":44,\"repliesCount\":10,\"sharesCount\":10,\"quotesCount\":10,\"reactionsCounts\":1321,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":1294,\"updated\":1322,\"published\":1302,\"actor\":1323,\"link\":-2,\"sharedPost\":-2,\"replyTarget\":-2,\"mentions\":1355,\"media\":1356,\"shares\":1357,\"reactions\":1358},\"https://famichiki.jp/users/tokyobybike/statuses/115571863003365425\",\"019a982d-44b1-7a5a-870e-f7d99c1be400\",\"

How the dickheads I work with return tools to the toolbox ….

\",{},{},{},[\"Date\",\"2025-11-18T17:24:39.000Z\"],{\"id\":1317,\"iri\":1324,\"type\":49,\"username\":1325,\"instanceHost\":1326,\"handleHost\":1326,\"handle\":1327,\"accountId\":-2,\"name\":1328,\"bioHtml\":1329,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":1330,\"headerUrl\":1331,\"inboxUrl\":1332,\"sharedInboxUrl\":1333,\"followersUrl\":1334,\"featuredUrl\":1335,\"fieldHtmls\":1336,\"emojis\":1340,\"tags\":1341,\"sensitive\":44,\"successorId\":-2,\"aliases\":1342,\"followeesCount\":1344,\"followersCount\":1345,\"postsCount\":10,\"url\":1281,\"updated\":1346,\"published\":1347,\"created\":1348,\"instance\":1349,\"followers\":1352,\"blockees\":1353,\"blockers\":1354},\"https://famichiki.jp/users/tokyobybike\",\"tokyobybike\",\"famichiki.jp\",\"@tokyobybike@famichiki.jp\",\"Tokyo By Bike\",\"

Long time Tokyo resident, once militant cyclist, airport industry slave, video game enjoyer and single father of two.

\",\"https://cdn.famichiki.jp/accounts/avatars/109/340/818/806/886/779/original/49327a38bfa45c40.png\",\"https://cdn.famichiki.jp/accounts/headers/109/340/818/806/886/779/original/bac6582871d8d71e.jpg\",\"https://famichiki.jp/users/tokyobybike/inbox\",\"https://famichiki.jp/inbox\",\"https://famichiki.jp/users/tokyobybike/followers\",\"https://famichiki.jp/users/tokyobybike/collections/featured\",{\"Homepage\":1337,\"Playstation Online\":1338,\"Nintendo Friend Code\":1339},\"https://www.tokyobybike.com\",\"thumping-mustard\",\"SW-3165-4456-7706\",{},{},[1343],\"https://mstdn.jp/users/tokyobybike\",174,536,[\"Date\",\"2025-11-18T18:14:54.900Z\"],[\"Date\",\"2022-11-14T00:00:00.000Z\"],[\"Date\",\"2025-11-18T18:14:54.900Z\"],{\"host\":1326,\"software\":81,\"softwareVersion\":191,\"updated\":1350,\"created\":1351},[\"Date\",\"2025-11-18T18:14:54.010Z\"],[\"Date\",\"2025-03-17T13:37:48.560Z\"],[],[],[],[],[1306],[],[],{\"slots\":1360,\"props\":1361},[],{\"href\":1362,\"internalHref\":1363,\"class\":6,\"children\":1364},\"https://babka.social/@littlemiao\",\"/@littlemiao@babka.social\",[\"Slot\",1365],{\"name\":9,\"id\":1366},54,{\"slots\":1368,\"props\":1369},[],{\"href\":1362,\"internalHref\":1363,\"children\":1370},[\"Slot\",1371],{\"name\":9,\"id\":1225},{\"slots\":1373,\"props\":1374},[],{\"href\":1375,\"internalHref\":1376,\"class\":22,\"children\":1377},\"https://babka.social/@littlemiao/115571601027847643\",\"/@littlemiao@babka.social/019a97ff-477f-7323-a1d1-c887920cdf5b\",[\"Slot\",1378],{\"name\":9,\"id\":1379},56,{\"slots\":1381,\"props\":1382},[],{\"value\":1383,\"locale\":30},[\"Date\",\"2025-11-18T16:18:01.000Z\"],{\"slots\":1385,\"props\":1386},[],{\"href\":394,\"internalHref\":395,\"children\":1387},[\"Slot\",1388],{\"name\":9,\"id\":1389},57,{\"slots\":1391,\"props\":1392},[],{\"medium\":1393,\"class\":129},{\"postId\":1394,\"index\":10,\"type\":356,\"url\":1395,\"alt\":1396,\"width\":1311,\"height\":1310,\"thumbnailKey\":-2,\"sensitive\":44},\"019a97ff-477f-7323-a1d1-c887920cdf5b\",\"https://babka-mastodon.nyc3.cdn.digitaloceanspaces.com/media_attachments/files/115/571/600/963/192/106/original/65387be23907c1c0.jpeg\",\"Closeup portrait of a lynx point Siamese with a wet nose, blue eyes, and long curving whiskers. His base coat is creamy and he has bold gray and brown tabby stripes on his face, and a dusting of golden brown over his snout.\",{\"slots\":1398,\"props\":1399},[],{\"language\":30,\"post\":1400,\"class\":92,\"signedAccount\":-1},{\"id\":1394,\"iri\":1401,\"type\":37,\"visibility\":38,\"actorId\":1402,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":1403,\"language\":30,\"tags\":1404,\"emojis\":1409,\"sensitive\":44,\"repliesCount\":10,\"sharesCount\":114,\"quotesCount\":10,\"reactionsCounts\":1410,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":1375,\"updated\":1411,\"published\":1383,\"actor\":1412,\"link\":-2,\"replyTarget\":-2,\"mentions\":1448,\"media\":1449,\"shares\":1450,\"reactions\":1451},\"https://babka.social/users/littlemiao/statuses/115571601027847643\",\"01989568-a15a-7eab-8da9-a2317fb38fd5\",\"

Behold the Right Worshipful the Lord Mayor!

#ChunChun #Cats #CatsOfMastodon #LynxPointSiamese

\",{\"cats\":1405,\"chunchun\":1406,\"catsofmastodon\":1407,\"lynxpointsiamese\":1408},\"https://babka.social/tags/cats\",\"https://babka.social/tags/chunchun\",\"https://babka.social/tags/catsofmastodon\",\"https://babka.social/tags/lynxpointsiamese\",{},{},[\"Date\",\"2025-11-18T16:18:01.000Z\"],{\"id\":1402,\"iri\":1413,\"type\":49,\"username\":1414,\"instanceHost\":1415,\"handleHost\":1415,\"handle\":1416,\"accountId\":-2,\"name\":1417,\"bioHtml\":1418,\"automaticallyApprovesFollowers\":44,\"avatarUrl\":1419,\"headerUrl\":1420,\"inboxUrl\":1421,\"sharedInboxUrl\":1422,\"followersUrl\":1423,\"featuredUrl\":1424,\"fieldHtmls\":1425,\"emojis\":1429,\"tags\":1431,\"sensitive\":44,\"successorId\":-2,\"aliases\":1434,\"followeesCount\":1436,\"followersCount\":1437,\"postsCount\":10,\"url\":1362,\"updated\":1438,\"published\":1439,\"created\":1440,\"instance\":1441,\"followers\":1445,\"blockees\":1446,\"blockers\":1447},\"https://babka.social/users/littlemiao\",\"littlemiao\",\"babka.social\",\"@littlemiao@babka.social\",\"littlemiao :jewish_pride_flag:\",\"

小苗✡️🌳🪷. Here to share the floof. Not quite a cat (yet). Passionate about #cats, cat floof, whiskers, and toe beans (in no particular order)! #FuzzyTummy snorgler. I only boost images with #AltText.

Profile pic: stylish lynx point Siamese ChunChun wearing a blue beret and a little bow tie. Banner: Grey and white floof face staring at the camera with a Jewish rainbow Pride flag in the background

\",\"https://babka-mastodon.nyc3.cdn.digitaloceanspaces.com/accounts/avatars/109/621/085/974/698/051/original/0041afcf7c89bc76.jpeg\",\"https://babka-mastodon.nyc3.cdn.digitaloceanspaces.com/accounts/headers/109/621/085/974/698/051/original/fb48eeba3ae4a62d.jpeg\",\"https://babka.social/users/littlemiao/inbox\",\"https://babka.social/inbox\",\"https://babka.social/users/littlemiao/followers\",\"https://babka.social/users/littlemiao/collections/featured\",{\"my miaolings\":1426,\"Other interests\":1427,\"StoryGraph\":1428},\"Chun春, Sprocket, and Ketzeleh\",\"#Judaism, #Jewish #History, #LanguageLearning, #Books, #Flowers, #Eyestalks, #Vegan #food, #StarTrek, #Monsterdon\",\"https://app.thestorygraph.com/profile/littlemiao\",{\":jewish_pride_flag:\":1430},\"https://babka-mastodon.nyc3.cdn.digitaloceanspaces.com/custom_emojis/images/000/069/690/original/08d6be3fd6989d45.png\",{\"#cats\":1405,\"#alttext\":1432,\"#fuzzytummy\":1433},\"https://babka.social/tags/alttext\",\"https://babka.social/tags/fuzzytummy\",[1435],\"https://c.im/users/littlemiao\",938,1108,[\"Date\",\"2025-08-10T19:15:19.016Z\"],[\"Date\",\"2023-01-02T00:00:00.000Z\"],[\"Date\",\"2025-08-10T19:15:19.016Z\"],{\"host\":1415,\"software\":81,\"softwareVersion\":1442,\"updated\":1443,\"created\":1444},\"4.3.8+glitch\",[\"Date\",\"2025-11-14T06:55:33.265Z\"],[\"Date\",\"2025-04-03T21:02:21.158Z\"],[],[],[],[],[1393],[],[],{\"slots\":1453,\"props\":1454},[],{\"href\":1455,\"internalHref\":1456,\"class\":6,\"children\":1457},\"https://fosstodon.org/@mariatta\",\"/@mariatta@fosstodon.org\",[\"Slot\",1458],{\"name\":9,\"id\":1459},58,{\"slots\":1461,\"props\":1462},[],{\"href\":1455,\"internalHref\":1456,\"children\":1463},[\"Slot\",1464],{\"name\":9,\"id\":1465},59,{\"slots\":1467,\"props\":1468},[],{\"href\":1469,\"internalHref\":1470,\"class\":22,\"children\":1471},\"https://fosstodon.org/@mariatta/115571862239988193\",\"/@mariatta@fosstodon.org/019a97ff-1917-7a70-9d04-52683cb90357\",[\"Slot\",1472],{\"name\":9,\"id\":1473},60,{\"slots\":1475,\"props\":1476},[],{\"value\":1477,\"locale\":30},[\"Date\",\"2025-11-18T17:24:27.000Z\"],{\"slots\":1479,\"props\":1480},[],{\"language\":30,\"post\":1481,\"class\":92,\"signedAccount\":-1},{\"id\":1482,\"iri\":1483,\"type\":37,\"visibility\":38,\"actorId\":1484,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":1485,\"language\":30,\"tags\":1486,\"emojis\":1487,\"sensitive\":44,\"repliesCount\":10,\"sharesCount\":10,\"quotesCount\":10,\"reactionsCounts\":1488,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":1469,\"updated\":1489,\"published\":1477,\"actor\":1490,\"link\":-2,\"sharedPost\":-2,\"replyTarget\":-2,\"mentions\":1531,\"media\":1532,\"shares\":1533,\"reactions\":1534},\"019a97ff-1917-7a70-9d04-52683cb90357\",\"https://fosstodon.org/users/mariatta/statuses/115571862239988193\",\"019586d5-6cda-7c8f-95d2-7809346fb5e6\",\"

Needing alibi for daily stand-up because double booked 😵

\",{},{},{},[\"Date\",\"2025-11-18T17:24:27.000Z\"],{\"id\":1484,\"iri\":1491,\"type\":49,\"username\":1492,\"instanceHost\":1493,\"handleHost\":1493,\"handle\":1494,\"accountId\":-2,\"name\":1495,\"bioHtml\":1496,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":1497,\"headerUrl\":1498,\"inboxUrl\":1499,\"sharedInboxUrl\":1500,\"followersUrl\":1501,\"featuredUrl\":1502,\"fieldHtmls\":1503,\"emojis\":1508,\"tags\":1510,\"sensitive\":44,\"successorId\":-2,\"aliases\":1518,\"followeesCount\":1520,\"followersCount\":1521,\"postsCount\":10,\"url\":1455,\"updated\":1522,\"published\":1523,\"created\":1524,\"instance\":1525,\"followers\":1528,\"blockees\":1529,\"blockers\":1530},\"https://fosstodon.org/users/mariatta\",\"mariatta\",\"fosstodon.org\",\"@mariatta@fosstodon.org\",\"Mariatta 🤦🏻‍♀️ :python:\",\"

Python Core Developer. F"Yes!" :python: 🇨🇦

@pypodcats host.
@pycon US Chair 2023-2024.
@ThePSF Fellow Member & Community Service Award recipient.
Keynote speaker.
Foodie. Traveler. Picky eater.

Opinions are mine.

#Python #PyLadies @pyladies_vancouver
#PublicSpeaking #foodie #travel #OpenSource #TypoOfTheDay

All toots are CC BY-NC-SA 4.0

\",\"https://cdn.fosstodon.org/accounts/avatars/109/310/324/694/262/887/original/3a5df192ebb5e521.png\",\"https://cdn.fosstodon.org/accounts/headers/109/310/324/694/262/887/original/2efc9dc64a01e84a.png\",\"https://fosstodon.org/users/mariatta/inbox\",\"https://fosstodon.org/inbox\",\"https://fosstodon.org/users/mariatta/followers\",\"https://fosstodon.org/users/mariatta/collections/featured\",{\"website\":1504,\"github\":1505,\"instagram\":1506,\"linkedin\":1507},\"https://mariatta.ca\",\"https://github.com/mariatta\",\"https://instagram.com/mariatta81\",\"https://linkedin.com/in/mariatta\",{\":python:\":1509},\"https://cdn.fosstodon.org/custom_emojis/images/000/025/124/original/7e1fe81995650028.png\",{\"#foodie\":1511,\"#python\":1512,\"#travel\":1513,\"#pyladies\":1514,\"#opensource\":1515,\"#typooftheday\":1516,\"#publicspeaking\":1517},\"https://fosstodon.org/tags/foodie\",\"https://fosstodon.org/tags/python\",\"https://fosstodon.org/tags/travel\",\"https://fosstodon.org/tags/pyladies\",\"https://fosstodon.org/tags/opensource\",\"https://fosstodon.org/tags/typooftheday\",\"https://fosstodon.org/tags/publicspeaking\",[1519],\"https://mastodon.social/users/mariatta\",309,2503,[\"Date\",\"2025-03-11T20:11:28.860Z\"],[\"Date\",\"2022-11-08T00:00:00.000Z\"],[\"Date\",\"2025-03-11T20:11:28.860Z\"],{\"host\":1493,\"software\":81,\"softwareVersion\":191,\"updated\":1526,\"created\":1527},[\"Date\",\"2025-11-18T20:09:57.190Z\"],[\"Date\",\"2024-12-19T06:40:28.021Z\"],[],[],[],[],[],[],[],{\"slots\":1536,\"props\":1537},[],{\"href\":1538,\"internalHref\":1539,\"class\":6,\"children\":1540},\"https://mastodon.social/@Viss\",\"/@Viss@mastodon.social\",[\"Slot\",1541],{\"name\":9,\"id\":1542},61,{\"slots\":1544,\"props\":1545},[],{\"href\":1538,\"internalHref\":1539,\"children\":1546},[\"Slot\",1547],{\"name\":9,\"id\":1548},62,{\"slots\":1550,\"props\":1551},[],{\"href\":1552,\"internalHref\":1553,\"class\":22,\"children\":1554},\"https://mastodon.social/@Viss/115571841097948476\",\"/@Viss@mastodon.social/019a97ff-03be-7b33-9c48-240bd0229d64\",[\"Slot\",1555],{\"name\":9,\"id\":1556},63,{\"slots\":1558,\"props\":1559},[],{\"value\":1560,\"locale\":30},[\"Date\",\"2025-11-18T17:19:04.000Z\"],{\"slots\":1562,\"props\":1563},[],{\"href\":1564,\"internalHref\":1565,\"class\":6,\"children\":1566},\"https://infosec.exchange/@badsamurai\",\"/@badsamurai@infosec.exchange\",[\"Slot\",1567],{\"name\":9,\"id\":1568},64,{\"slots\":1570,\"props\":1571},[],{\"href\":1564,\"internalHref\":1565,\"children\":1572},[\"Slot\",1573],{\"name\":9,\"id\":1574},65,{\"slots\":1576,\"props\":1577},[],{\"href\":1578,\"internalHref\":1579,\"class\":22,\"children\":1580},\"https://infosec.exchange/@badsamurai/115571847146018497\",\"/@badsamurai@infosec.exchange/019a97ff-03d5-7bc6-8002-d07b89f2b647\",[\"Slot\",1581],{\"name\":9,\"id\":1582},66,{\"slots\":1584,\"props\":1585},[],{\"value\":1586,\"locale\":30},[\"Date\",\"2025-11-18T17:20:37.000Z\"],{\"slots\":1588,\"props\":1589},[],{\"href\":394,\"internalHref\":395,\"children\":1590},[\"Slot\",1591],{\"name\":9,\"id\":1592},67,{\"slots\":1594,\"props\":1595},[],{\"language\":30,\"post\":1596,\"class\":92,\"signedAccount\":-1},{\"id\":1597,\"iri\":1598,\"type\":37,\"visibility\":38,\"actorId\":1599,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":1600,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":1601,\"language\":30,\"tags\":1602,\"emojis\":1603,\"sensitive\":44,\"repliesCount\":10,\"sharesCount\":25,\"quotesCount\":10,\"reactionsCounts\":1604,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":1578,\"updated\":1605,\"published\":1586,\"actor\":1606,\"link\":-2,\"replyTarget\":1645,\"mentions\":1770,\"media\":1798,\"shares\":1799,\"reactions\":1800},\"019a97ff-03d5-7bc6-8002-d07b89f2b647\",\"https://infosec.exchange/users/badsamurai/statuses/115571847146018497\",\"0196bc1c-f229-79c8-947b-5ce7617170dc\",\"019a97ff-03be-7b33-9c48-240bd0229d64\",\"

@Viss race conditions are inevitable when you're both the CDN and attacker infrastructure

@catsalad @briankrebs

\",{},{},{},[\"Date\",\"2025-11-18T17:20:37.000Z\"],{\"id\":1599,\"iri\":1607,\"type\":49,\"username\":1608,\"instanceHost\":1609,\"handleHost\":1609,\"handle\":1610,\"accountId\":-2,\"name\":1611,\"bioHtml\":1612,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":1613,\"headerUrl\":1614,\"inboxUrl\":1615,\"sharedInboxUrl\":1616,\"followersUrl\":1617,\"featuredUrl\":1618,\"fieldHtmls\":1619,\"emojis\":1625,\"tags\":1626,\"sensitive\":44,\"successorId\":-2,\"aliases\":1632,\"followeesCount\":1633,\"followersCount\":1634,\"postsCount\":10,\"url\":1564,\"updated\":1635,\"published\":1636,\"created\":1637,\"instance\":1638,\"followers\":1642,\"blockees\":1643,\"blockers\":1644},\"https://infosec.exchange/users/badsamurai\",\"badsamurai\",\"infosec.exchange\",\"@badsamurai@infosec.exchange\",\"B'ad Samurai 🐐\",\"

#securty #automation #soar #iac and #tay

\",\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/111/149/879/124/628/398/original/fd34fb59e0005554.png\",\"https://media.infosec.exchange/infosec.exchange/accounts/headers/111/149/879/124/628/398/original/bf1e323768e64638.jpg\",\"https://infosec.exchange/users/badsamurai/inbox\",\"https://infosec.exchange/inbox\",\"https://infosec.exchange/users/badsamurai/followers\",\"https://infosec.exchange/users/badsamurai/collections/featured\",{\"Web\":1620,\"GitHub\":1621,\"Verification\":1622,\"Gravatar\":1623,\"Pronouns\":434,\"Dogs\":1624},\"https://badsamurai.dev\",\"https://github.com/BadSamuraiDev\",\"https://www.badsamurai.dev/mastodon-verification\",\"https://gravatar.com/badsamuraidev\",\"An old clever "mini" golden and blind black lab-ish pup\",{},{\"#iac\":1627,\"#tay\":1628,\"#soar\":1629,\"#securty\":1630,\"#automation\":1631},\"https://infosec.exchange/tags/iac\",\"https://infosec.exchange/tags/tay\",\"https://infosec.exchange/tags/soar\",\"https://infosec.exchange/tags/securty\",\"https://infosec.exchange/tags/automation\",[],104,128,[\"Date\",\"2025-05-10T21:32:15.788Z\"],[\"Date\",\"2023-09-29T00:00:00.000Z\"],[\"Date\",\"2025-05-10T21:32:15.788Z\"],{\"host\":1609,\"software\":81,\"softwareVersion\":1639,\"updated\":1640,\"created\":1641},\"4.6.0-alpha.1+glitch\",[\"Date\",\"2025-11-18T17:21:57.203Z\"],[\"Date\",\"2025-01-21T02:58:45.166Z\"],[],[],[],{\"id\":1600,\"iri\":1646,\"type\":37,\"visibility\":38,\"actorId\":1647,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":1648,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":1649,\"language\":30,\"tags\":1650,\"emojis\":1651,\"sensitive\":44,\"repliesCount\":10,\"sharesCount\":10,\"quotesCount\":10,\"reactionsCounts\":1652,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":1552,\"updated\":1653,\"published\":1560,\"actor\":1654,\"link\":-2,\"mentions\":1682,\"media\":1769},\"https://mastodon.social/users/Viss/statuses/115571841097948476\",\"01956e85-60fb-7c27-b158-25e4aaa31d69\",\"019a97f6-edd8-7264-a795-3505ed7f3752\",\"

@badsamurai @catsalad @briankrebs "a config file that got too big" could mean there was a parsing error, or a disk got full, or something grew beyond the size of the thing they were inserting it into and it tipped over because it ran out of ram. the root cause of a file being too big doesnt do a good job of explaining what actually broke or how

but also, yes, almost certainly vibe coding

\",{},{},{},[\"Date\",\"2025-11-18T17:19:04.000Z\"],{\"id\":1647,\"iri\":1655,\"type\":49,\"username\":1656,\"instanceHost\":941,\"handleHost\":941,\"handle\":1657,\"accountId\":-2,\"name\":1656,\"bioHtml\":1658,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":1659,\"headerUrl\":1660,\"inboxUrl\":1661,\"sharedInboxUrl\":948,\"followersUrl\":1662,\"featuredUrl\":-2,\"fieldHtmls\":1663,\"emojis\":1668,\"tags\":1669,\"sensitive\":44,\"successorId\":-2,\"aliases\":1670,\"followeesCount\":1671,\"followersCount\":1672,\"postsCount\":10,\"url\":1538,\"updated\":1673,\"published\":1674,\"created\":1675,\"instance\":1676,\"followers\":1679,\"blockees\":1680,\"blockers\":1681},\"https://mastodon.social/users/Viss\",\"Viss\",\"@Viss@mastodon.social\",\"

D̒͂̕ᵈăᵃn̕ᶰ Ť̾̾̓͐͒͠ᵗe͗̑́̋̂́͡ᵉn̅ᶰtᵗl̀̓͘ᶫe̓̒̂̚ᵉrʳ
:: Founder, Phobos Group
:: Quad Flooper :: Scoville Addict
:: Public Speaker :: food pornographer
:: Twitter Alum (2011-2012)
:: security longhair :: tattoo'ed nerd

<script>alert(1)</script>
'>"></div><blink><marquee>visit hax.lol for a good time

#startups #security #infosec #redteam #publicspeaking #asm #attacksurfacemanagement #orbital #fundraising #saas
#drones #quads #hotsauce #spices #homeassistant #homeautomation #cartoons #animation

\",\"https://files.mastodon.social/accounts/avatars/000/039/545/original/985068d509d9a8b1.jpg\",\"https://files.mastodon.social/accounts/headers/000/039/545/original/11178e530572008d.jpg\",\"https://mastodon.social/users/Viss/inbox\",\"https://mastodon.social/users/Viss/followers\",{\"Github\":1664,\"Hire Us\":1665,\"hotsauce/spiceshop\":1666,\"Twitter\":1667},\"https://github.com/Viss\",\"http://ode.phobos.io\",\"https://www.etsy.com/shop/ravenholmspices\",\"https://twitter.com/viss 🫡\",{},{},[],654,8920,[\"Date\",\"2025-03-07T02:53:09.757Z\"],[\"Date\",\"2017-04-03T00:00:00.000Z\"],[\"Date\",\"2025-03-07T02:53:09.757Z\"],{\"host\":941,\"software\":81,\"softwareVersion\":964,\"updated\":1677,\"created\":1678},[\"Date\",\"2025-11-19T05:16:34.626Z\"],[\"Date\",\"2024-12-13T09:08:56.994Z\"],[],[],[],[1683,1706,1760],{\"postId\":1600,\"actorId\":1684,\"actor\":1685},\"01958bfa-f094-7be1-8d77-2c08528e4fc8\",{\"id\":1684,\"iri\":1686,\"type\":49,\"username\":1687,\"instanceHost\":1609,\"handleHost\":1609,\"handle\":1688,\"accountId\":-2,\"name\":1689,\"bioHtml\":1690,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":1691,\"headerUrl\":1692,\"inboxUrl\":1693,\"sharedInboxUrl\":1616,\"followersUrl\":1694,\"featuredUrl\":-2,\"fieldHtmls\":1695,\"emojis\":1697,\"tags\":1698,\"sensitive\":44,\"successorId\":-2,\"aliases\":1699,\"followeesCount\":1700,\"followersCount\":1701,\"postsCount\":10,\"url\":1702,\"updated\":1703,\"published\":1704,\"created\":1705},\"https://infosec.exchange/users/briankrebs\",\"briankrebs\",\"@briankrebs@infosec.exchange\",\"BrianKrebs\",\"

Independent investigative journalist. Covers cybercrime, security, privacy. Author of 'Spam Nation,' a NYT bestseller. Former Washington Post reporter, '95-'09. Signal: briankrebs.07 Twitter: @briankrebs Linkedin: https://www.linkedin.com/in/bkrebs/

\",\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/292/943/884/713/975/original/aad1b6c1f00ab8ef.png\",\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/292/943/884/713/975/original/8c83c859c0ef741a.png\",\"https://infosec.exchange/users/briankrebs/inbox\",\"https://infosec.exchange/users/briankrebs/followers\",{\"website\":1696},\"https://krebsonsecurity.com\",{},{},[],1044,92613,\"https://infosec.exchange/@briankrebs\",[\"Date\",\"2025-03-12T20:10:33.493Z\"],[\"Date\",\"2022-11-05T00:00:00.000Z\"],[\"Date\",\"2025-03-12T20:10:33.493Z\"],{\"postId\":1600,\"actorId\":1707,\"actor\":1708},\"0195a0f3-2efc-7ae5-8349-97ca30041d50\",{\"id\":1707,\"iri\":1709,\"type\":49,\"username\":1710,\"instanceHost\":1609,\"handleHost\":1609,\"handle\":1711,\"accountId\":-2,\"name\":1712,\"bioHtml\":1713,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":1714,\"headerUrl\":1715,\"inboxUrl\":1716,\"sharedInboxUrl\":1616,\"followersUrl\":1717,\"featuredUrl\":1718,\"fieldHtmls\":1719,\"emojis\":1726,\"tags\":1729,\"sensitive\":44,\"successorId\":-2,\"aliases\":1752,\"followeesCount\":1755,\"followersCount\":1756,\"postsCount\":10,\"url\":394,\"updated\":1757,\"published\":1758,\"created\":1759},\"https://infosec.exchange/users/catsalad\",\"catsalad\",\"@catsalad@infosec.exchange\",\"CatSalad🐈🥗 (D.Burch) :blobcatrainbow:\",\"

Privacy advocate 〱 Malware analyst 〱 Cybersecurity
〰️ ⁠InfoSec 〰️ ⁠DFIR 〰️ ⁠CISSP 〰️ ⁠黑客 〰️ ⁠Katzenmädchen
:ablobcatmaracasevil: ⁽ʰᵒᵖᵉ ʸᵒᵘ ˡⁱᵏᵉ ᶜᵒʳⁿʸ ʲᵒᵏᵉˢ ᵃⁿᵈ ᶜᵃᵗˢ⁾

【 Professional Computer Booper 】
Even my brain has certs (asd,adhd,...)
Gender: a threat model (they/them/idc)

🎖️ Lt. Colonel in the AI Resistance 🚫

🐆🐈🐯🐱🐾😿😸😹😺😻😼😽😾🙀🦁🐈‍⬛
#Android #BLM #CatSalad #CyberSecurity #Developer #DFIR #fedi22 #GAYINT #Hacker #InfoSec #Malware #Privacy #Puns #PurpleTeam #Security #tfr #Tor #TransRights #Unicode #Veilid #ಠ_ಠ #ʘ‿ʘ meow :3

https://justmytoots.com/@catsalad@infosec.exchange

\",\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/327/540/940/053/921/original/3b6686bfe9a629b4.jpg\",\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/327/540/940/053/921/original/f2590d2f72b36dcc.webp\",\"https://infosec.exchange/users/catsalad/inbox\",\"https://infosec.exchange/users/catsalad/followers\",\"https://infosec.exchange/users/catsalad/collections/featured\",{\"Main² (HTown)🥗\":1720,\"Main³ (Floof)🌈\":1721,\"🔺🔻\":1722,\"Github\":1723,\"Keyoxide\":1724,\"Pronouns\":1725},\"https://masto.hackers.town/@catsalad\",\"https://lgbtqia.space/@catsalad\",\"https://defcon.social/@catsalad\",\"https://github.com/devsalad\",\"https://keyoxide.org/534C7832701F8A6612D289B1A2F5593628046A9E\",\"🐱\",{\":blobcatrainbow:\":1727,\":ablobcatmaracasevil:\":1728},\"https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/029/361/original/de7ce8f5f0cf0aa1.png\",\"https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/170/718/original/8119c991add30c0f.gif\",{\"#blm\":1730,\"#tfr\":1731,\"#tor\":1732,\"#dfir\":1733,\"#puns\":1734,\"#ʘʘ\":1735,\"#fedi22\":1736,\"#gayint\":1737,\"#hacker\":1738,\"#veilid\":1739,\"#android\":1740,\"#infosec\":1741,\"#malware\":1742,\"#privacy\":1743,\"#unicode\":1744,\"#ಠ_ಠ\":1745,\"#catsalad\":1746,\"#security\":1747,\"#developer\":1748,\"#purpleteam\":1749,\"#transrights\":1750,\"#cybersecurity\":1751},\"https://infosec.exchange/tags/blm\",\"https://infosec.exchange/tags/TFR\",\"https://infosec.exchange/tags/tor\",\"https://infosec.exchange/tags/dfir\",\"https://infosec.exchange/tags/puns\",\"https://infosec.exchange/tags/%CA%98%CA%98\",\"https://infosec.exchange/tags/fedi22\",\"https://infosec.exchange/tags/gayint\",\"https://infosec.exchange/tags/hacker\",\"https://infosec.exchange/tags/veilid\",\"https://infosec.exchange/tags/android\",\"https://infosec.exchange/tags/infosec\",\"https://infosec.exchange/tags/malware\",\"https://infosec.exchange/tags/privacy\",\"https://infosec.exchange/tags/unicode\",\"https://infosec.exchange/tags/%E0%B2%A0_%E0%B2%A0\",\"https://infosec.exchange/tags/catsalad\",\"https://infosec.exchange/tags/security\",\"https://infosec.exchange/tags/developer\",\"https://infosec.exchange/tags/purpleteam\",\"https://infosec.exchange/tags/transrights\",\"https://infosec.exchange/tags/cybersecurity\",[1753,1754],\"https://home.social/users/catsalad\",\"https://mstdn.ca/users/catsalad\",4221,20906,[\"Date\",\"2025-03-16T21:54:06.724Z\"],[\"Date\",\"2022-11-11T00:00:00.000Z\"],[\"Date\",\"2025-03-16T21:54:06.724Z\"],{\"postId\":1600,\"actorId\":1599,\"actor\":1761},{\"id\":1599,\"iri\":1607,\"type\":49,\"username\":1608,\"instanceHost\":1609,\"handleHost\":1609,\"handle\":1610,\"accountId\":-2,\"name\":1611,\"bioHtml\":1612,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":1613,\"headerUrl\":1614,\"inboxUrl\":1615,\"sharedInboxUrl\":1616,\"followersUrl\":1617,\"featuredUrl\":1618,\"fieldHtmls\":1762,\"emojis\":1763,\"tags\":1764,\"sensitive\":44,\"successorId\":-2,\"aliases\":1765,\"followeesCount\":1633,\"followersCount\":1634,\"postsCount\":10,\"url\":1564,\"updated\":1766,\"published\":1767,\"created\":1768},{\"Web\":1620,\"GitHub\":1621,\"Verification\":1622,\"Gravatar\":1623,\"Pronouns\":434,\"Dogs\":1624},{},{\"#iac\":1627,\"#tay\":1628,\"#soar\":1629,\"#securty\":1630,\"#automation\":1631},[],[\"Date\",\"2025-05-10T21:32:15.788Z\"],[\"Date\",\"2023-09-29T00:00:00.000Z\"],[\"Date\",\"2025-05-10T21:32:15.788Z\"],[],[1771,1780,1789],{\"postId\":1597,\"actorId\":1647,\"actor\":1772},{\"id\":1647,\"iri\":1655,\"type\":49,\"username\":1656,\"instanceHost\":941,\"handleHost\":941,\"handle\":1657,\"accountId\":-2,\"name\":1656,\"bioHtml\":1658,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":1659,\"headerUrl\":1660,\"inboxUrl\":1661,\"sharedInboxUrl\":948,\"followersUrl\":1662,\"featuredUrl\":-2,\"fieldHtmls\":1773,\"emojis\":1774,\"tags\":1775,\"sensitive\":44,\"successorId\":-2,\"aliases\":1776,\"followeesCount\":1671,\"followersCount\":1672,\"postsCount\":10,\"url\":1538,\"updated\":1777,\"published\":1778,\"created\":1779},{\"Github\":1664,\"Hire Us\":1665,\"hotsauce/spiceshop\":1666,\"Twitter\":1667},{},{},[],[\"Date\",\"2025-03-07T02:53:09.757Z\"],[\"Date\",\"2017-04-03T00:00:00.000Z\"],[\"Date\",\"2025-03-07T02:53:09.757Z\"],{\"postId\":1597,\"actorId\":1684,\"actor\":1781},{\"id\":1684,\"iri\":1686,\"type\":49,\"username\":1687,\"instanceHost\":1609,\"handleHost\":1609,\"handle\":1688,\"accountId\":-2,\"name\":1689,\"bioHtml\":1690,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":1691,\"headerUrl\":1692,\"inboxUrl\":1693,\"sharedInboxUrl\":1616,\"followersUrl\":1694,\"featuredUrl\":-2,\"fieldHtmls\":1782,\"emojis\":1783,\"tags\":1784,\"sensitive\":44,\"successorId\":-2,\"aliases\":1785,\"followeesCount\":1700,\"followersCount\":1701,\"postsCount\":10,\"url\":1702,\"updated\":1786,\"published\":1787,\"created\":1788},{\"website\":1696},{},{},[],[\"Date\",\"2025-03-12T20:10:33.493Z\"],[\"Date\",\"2022-11-05T00:00:00.000Z\"],[\"Date\",\"2025-03-12T20:10:33.493Z\"],{\"postId\":1597,\"actorId\":1707,\"actor\":1790},{\"id\":1707,\"iri\":1709,\"type\":49,\"username\":1710,\"instanceHost\":1609,\"handleHost\":1609,\"handle\":1711,\"accountId\":-2,\"name\":1712,\"bioHtml\":1713,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":1714,\"headerUrl\":1715,\"inboxUrl\":1716,\"sharedInboxUrl\":1616,\"followersUrl\":1717,\"featuredUrl\":1718,\"fieldHtmls\":1791,\"emojis\":1792,\"tags\":1793,\"sensitive\":44,\"successorId\":-2,\"aliases\":1794,\"followeesCount\":1755,\"followersCount\":1756,\"postsCount\":10,\"url\":394,\"updated\":1795,\"published\":1796,\"created\":1797},{\"Main² (HTown)🥗\":1720,\"Main³ (Floof)🌈\":1721,\"🔺🔻\":1722,\"Github\":1723,\"Keyoxide\":1724,\"Pronouns\":1725},{\":blobcatrainbow:\":1727,\":ablobcatmaracasevil:\":1728},{\"#blm\":1730,\"#tfr\":1731,\"#tor\":1732,\"#dfir\":1733,\"#puns\":1734,\"#ʘʘ\":1735,\"#fedi22\":1736,\"#gayint\":1737,\"#hacker\":1738,\"#veilid\":1739,\"#android\":1740,\"#infosec\":1741,\"#malware\":1742,\"#privacy\":1743,\"#unicode\":1744,\"#ಠ_ಠ\":1745,\"#catsalad\":1746,\"#security\":1747,\"#developer\":1748,\"#purpleteam\":1749,\"#transrights\":1750,\"#cybersecurity\":1751},[1753,1754],[\"Date\",\"2025-03-16T21:54:06.724Z\"],[\"Date\",\"2022-11-11T00:00:00.000Z\"],[\"Date\",\"2025-03-16T21:54:06.724Z\"],[],[],[],{\"slots\":1802,\"props\":1803},[],{\"href\":1804,\"internalHref\":1805,\"class\":6,\"children\":1806},\"https://hachyderm.io/@thomasfuchs\",\"/@thomasfuchs@hachyderm.io\",[\"Slot\",1807],{\"name\":9,\"id\":1808},68,{\"slots\":1810,\"props\":1811},[],{\"href\":1804,\"internalHref\":1805,\"children\":1812},[\"Slot\",1813],{\"name\":9,\"id\":1814},69,{\"slots\":1816,\"props\":1817},[],{\"href\":1818,\"internalHref\":1819,\"class\":22,\"children\":1820},\"https://hachyderm.io/@thomasfuchs/115571856330075069\",\"/@thomasfuchs@hachyderm.io/019a9865-543e-70c9-828a-062f970a6f6e\",[\"Slot\",1821],{\"name\":9,\"id\":1822},70,{\"slots\":1824,\"props\":1825},[],{\"value\":1826,\"locale\":30},[\"Date\",\"2025-11-18T17:22:57.000Z\"],{\"slots\":1828,\"props\":1829},[],{\"medium\":1830,\"class\":129},{\"postId\":1831,\"index\":10,\"type\":124,\"url\":1832,\"alt\":1833,\"width\":1834,\"height\":1835,\"thumbnailKey\":-2,\"sensitive\":44},\"019a9865-543e-70c9-828a-062f970a6f6e\",\"https://media.hachyderm.io/media_attachments/files/115/571/854/496/028/751/original/53d501ba43d597fb.png\",\"bootlog.txt, last modified 11/18/<5\",748,146,{\"slots\":1837,\"props\":1838},[],{\"language\":30,\"post\":1839,\"class\":92,\"signedAccount\":-1},{\"id\":1831,\"iri\":1840,\"type\":37,\"visibility\":38,\"actorId\":1841,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":1842,\"language\":30,\"tags\":1843,\"emojis\":1844,\"sensitive\":44,\"repliesCount\":10,\"sharesCount\":296,\"quotesCount\":10,\"reactionsCounts\":1845,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":1818,\"updated\":1846,\"published\":1826,\"actor\":1847,\"link\":-2,\"sharedPost\":-2,\"replyTarget\":-2,\"mentions\":1881,\"media\":1882,\"shares\":1883,\"reactions\":1884},\"https://hachyderm.io/users/thomasfuchs/statuses/115571856330075069\",\"019681ee-a395-70ec-ab0a-2d87015fd274\",\"

I just installed Windows 3.11 for Workgroups (in an emulator), how's your day going

Fun Y2K bug btw

\",{},{},{},[\"Date\",\"2025-11-18T17:22:57.000Z\"],{\"id\":1841,\"iri\":1848,\"type\":49,\"username\":1849,\"instanceHost\":1850,\"handleHost\":1850,\"handle\":1851,\"accountId\":-2,\"name\":1852,\"bioHtml\":1853,\"automaticallyApprovesFollowers\":44,\"avatarUrl\":1854,\"headerUrl\":1855,\"inboxUrl\":1856,\"sharedInboxUrl\":1857,\"followersUrl\":1858,\"featuredUrl\":1859,\"fieldHtmls\":1860,\"emojis\":1864,\"tags\":1865,\"sensitive\":44,\"successorId\":-2,\"aliases\":1869,\"followeesCount\":75,\"followersCount\":1871,\"postsCount\":10,\"url\":1804,\"updated\":1872,\"published\":1873,\"created\":1874,\"instance\":1875,\"followers\":1878,\"blockees\":1879,\"blockers\":1880},\"https://hachyderm.io/users/thomasfuchs\",\"thomasfuchs\",\"hachyderm.io\",\"@thomasfuchs@hachyderm.io\",\"Thomas 🔭🕹️\",\"

Maker of nokotime.com • I killed Flash (with scriptaculous) • #astrophotography, #retrocomputing, #cats
BLM. Ally. He/Him.

I've been on Mastodon since 2017, but recently migrated here.

\",\"https://media.hachyderm.io/accounts/avatars/109/377/486/387/887/305/original/afca7a7a34e3df4d.png\",\"https://media.hachyderm.io/accounts/headers/109/377/486/387/887/305/original/17db5bcf542b14d1.gif\",\"https://hachyderm.io/users/thomasfuchs/inbox\",\"https://hachyderm.io/inbox\",\"https://hachyderm.io/users/thomasfuchs/followers\",\"https://hachyderm.io/users/thomasfuchs/collections/featured\",{\"GitHub\":1861,\"Astrophotography\":1862,\"BlueSky\":1863},\"https://github.com/madrobby\",\"https://lightfrom.space/\",\"https://bsky.app/profile/thomasfuchs.at\",{},{\"#cats\":1866,\"#retrocomputing\":1867,\"#astrophotography\":1868},\"https://hachyderm.io/tags/cats\",\"https://hachyderm.io/tags/retrocomputing\",\"https://hachyderm.io/tags/astrophotography\",[1870],\"https://mastodon.social/users/thomasfuchs\",23326,[\"Date\",\"2025-04-29T14:23:42.573Z\"],[\"Date\",\"2022-11-20T00:00:00.000Z\"],[\"Date\",\"2025-04-29T14:23:42.573Z\"],{\"host\":1850,\"software\":81,\"softwareVersion\":191,\"updated\":1876,\"created\":1877},[\"Date\",\"2025-11-18T20:46:04.373Z\"],[\"Date\",\"2025-02-24T02:39:59.945Z\"],[],[],[],[],[1830],[],[],{\"slots\":1886,\"props\":1887},[],{\"href\":1888,\"internalHref\":1889,\"class\":6,\"children\":1890},\"https://yuri.garden/@pbzweihander\",\"/@pbzweihander@yuri.garden\",[\"Slot\",1891],{\"name\":9,\"id\":1892},71,{\"slots\":1894,\"props\":1895},[],{\"href\":1888,\"internalHref\":1889,\"children\":1896},[\"Slot\",1897],{\"name\":9,\"id\":1898},72,{\"slots\":1900,\"props\":1901},[],{\"href\":1902,\"internalHref\":1903,\"class\":22,\"children\":1904},\"https://yuri.garden/notes/af8eo919tt\",\"/@pbzweihander@yuri.garden/019a97fd-5105-73ef-bb33-2fe4946a7661\",[\"Slot\",1905],{\"name\":9,\"id\":1906},73,{\"slots\":1908,\"props\":1909},[],{\"value\":1910,\"locale\":30},[\"Date\",\"2025-11-18T17:22:31.485Z\"],{\"slots\":1912,\"props\":1913},[],{\"language\":30,\"post\":1914,\"class\":92,\"signedAccount\":-1},{\"id\":1915,\"iri\":1902,\"type\":37,\"visibility\":38,\"actorId\":1916,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":1917,\"language\":-2,\"tags\":1918,\"emojis\":1919,\"sensitive\":44,\"repliesCount\":10,\"sharesCount\":10,\"quotesCount\":10,\"reactionsCounts\":1920,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":-2,\"updated\":1921,\"published\":1910,\"actor\":1922,\"link\":-2,\"sharedPost\":-2,\"replyTarget\":-2,\"mentions\":1958,\"media\":1959,\"shares\":1960,\"reactions\":1961},\"019a97fd-5105-73ef-bb33-2fe4946a7661\",\"0194dfa3-7379-7304-a048-b4192ea768af\",\"

2:22

\",{},{},{},[\"Date\",\"2025-11-18T17:22:31.485Z\"],{\"id\":1916,\"iri\":1923,\"type\":49,\"username\":1924,\"instanceHost\":1925,\"handleHost\":1925,\"handle\":1926,\"accountId\":-2,\"name\":1927,\"bioHtml\":1928,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":1929,\"headerUrl\":1930,\"inboxUrl\":1931,\"sharedInboxUrl\":1932,\"followersUrl\":1933,\"featuredUrl\":-2,\"fieldHtmls\":1934,\"emojis\":1940,\"tags\":1944,\"sensitive\":44,\"successorId\":-2,\"aliases\":1945,\"followeesCount\":1947,\"followersCount\":1948,\"postsCount\":10,\"url\":1888,\"updated\":1949,\"published\":-2,\"created\":1950,\"instance\":1951,\"followers\":1955,\"blockees\":1956,\"blockers\":1957},\"https://yuri.garden/users/9ha0u92vs9\",\"pbzweihander\",\"yuri.garden\",\"@pbzweihander@yuri.garden\",\"쯔방 :yuri: :yurigarden: :garden:\",\"

백합.정원 인스턴스 관리자, 양손검입니다. @gardener 와 같은 사람이지만, 사담 등을 위해 별도의 계정을 사용합니다.

쯔방이라고 불러주세요!

\",\"https://object.yuri.garden/yuri-garden/34a74c95-b5ca-4916-838b-eb5f5f17eac6.webp\",\"https://object.yuri.garden/yuri-garden//53930bcc-8618-4a71-8b23-fb3bafcff03e.webp\",\"https://yuri.garden/users/9ha0u92vs9/inbox\",\"https://yuri.garden/inbox\",\"https://yuri.garden/users/9ha0u92vs9/followers\",{\"GitHub\":1935,\"후원\":1936,\"프사\":1937,\"백업1\":1938,\"백업2\":1939},\"https://github.com/pbzweihander\",\"https://www.patreon.com/yurigarden\",\"@thylakoid00@planet.moe\",\"https://town.voyager.blue/@pbzweihander\",\"https://planet.moe/@pbzweihander\",{\":yuri:\":1941,\":garden:\":1942,\":yurigarden:\":1943},\"https://object.yuri.garden/yuri-garden/null/44c18407-3982-4fee-96ab-1d7e8624c01d.webp\",\"https://object.yuri.garden/yuri-garden/null/077f4556-860c-4396-9687-dd538b99b974.webp\",\"https://object.yuri.garden/yuri-garden/null/9f36f86b-88e1-45c6-92f1-106df62fd1a7.webp\",{},[1946],\"https://pbzweihander.social/users/9gs0loaxgx\",441,499,[\"Date\",\"2025-02-07T09:00:18.684Z\"],[\"Date\",\"2025-02-07T09:00:18.684Z\"],{\"host\":1925,\"software\":699,\"softwareVersion\":1952,\"updated\":1953,\"created\":1954},\"2025.10.2+yurigarden.0\",[\"Date\",\"2025-11-18T12:37:09.459Z\"],[\"Date\",\"2024-12-13T09:14:13.208Z\"],[],[],[],[],[],[],[],{\"slots\":1963,\"props\":1964},[],{\"href\":888,\"internalHref\":889,\"class\":6,\"children\":1965},[\"Slot\",1966],{\"name\":9,\"id\":1967},74,{\"slots\":1969,\"props\":1970},[],{\"href\":888,\"internalHref\":889,\"children\":1971},[\"Slot\",1972],{\"name\":9,\"id\":1973},75,{\"slots\":1975,\"props\":1976},[],{\"href\":902,\"internalHref\":903,\"class\":22,\"children\":1977},[\"Slot\",1978],{\"name\":9,\"id\":1979},76,{\"slots\":1981,\"props\":1982},[],{\"value\":1983,\"locale\":30},[\"Date\",\"2025-11-18T17:22:17.000Z\"],{\"slots\":1985,\"props\":1986},[],{\"medium\":1987,\"class\":129},{\"postId\":921,\"index\":10,\"type\":124,\"url\":922,\"alt\":923,\"width\":924,\"height\":924,\"thumbnailKey\":-2,\"sensitive\":44},{\"slots\":1989,\"props\":1990},[],{\"language\":30,\"post\":1991,\"class\":92,\"signedAccount\":-1},{\"id\":921,\"iri\":929,\"type\":37,\"visibility\":38,\"actorId\":930,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":931,\"language\":30,\"tags\":1992,\"emojis\":1993,\"sensitive\":44,\"repliesCount\":10,\"sharesCount\":16,\"quotesCount\":10,\"reactionsCounts\":1994,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":902,\"updated\":1995,\"published\":1983,\"actor\":1996,\"link\":-2,\"sharedPost\":-2,\"replyTarget\":-2,\"mentions\":2010,\"media\":2011,\"shares\":2012,\"reactions\":2013},{\"cloudflare\":933,\"soundcloud\":934},{},{},[\"Date\",\"2025-11-18T17:22:17.000Z\"],{\"id\":930,\"iri\":939,\"type\":49,\"username\":940,\"instanceHost\":941,\"handleHost\":941,\"handle\":942,\"accountId\":-2,\"name\":943,\"bioHtml\":944,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":945,\"headerUrl\":946,\"inboxUrl\":947,\"sharedInboxUrl\":948,\"followersUrl\":949,\"featuredUrl\":-2,\"fieldHtmls\":1997,\"emojis\":1998,\"tags\":1999,\"sensitive\":44,\"successorId\":-2,\"aliases\":2000,\"followeesCount\":958,\"followersCount\":959,\"postsCount\":10,\"url\":888,\"updated\":2001,\"published\":2002,\"created\":2003,\"instance\":2004,\"followers\":2007,\"blockees\":2008,\"blockers\":2009},{\"Center of the Universe homepage\":951,\"Center of the Universe Inktree\":952,\"Center of the Universe Youtube\":953,\"Center of the Universe Bandcamp\":954},{},{},[],[\"Date\",\"2025-04-01T13:02:23.832Z\"],[\"Date\",\"2024-10-22T00:00:00.000Z\"],[\"Date\",\"2025-04-01T13:02:23.832Z\"],{\"host\":941,\"software\":81,\"softwareVersion\":964,\"updated\":2005,\"created\":2006},[\"Date\",\"2025-11-19T05:16:34.626Z\"],[\"Date\",\"2024-12-13T09:08:56.994Z\"],[],[],[],[],[1987],[],[],{\"slots\":2015,\"props\":2016},[],{\"href\":2017,\"internalHref\":2018,\"class\":6,\"children\":2019},\"https://bsky.brid.gy/r/https://bsky.app/profile/danabra.mov\",\"/@danabra.mov@bsky.brid.gy\",[\"Slot\",2020],{\"name\":9,\"id\":2021},77,{\"slots\":2023,\"props\":2024},[],{\"href\":2017,\"internalHref\":2018,\"children\":2025},[\"Slot\",2026],{\"name\":9,\"id\":2027},78,{\"slots\":2029,\"props\":2030},[],{\"href\":2031,\"internalHref\":2032,\"class\":22,\"children\":2033},\"https://fed.brid.gy/r/https://bsky.app/profile/did:plc:fpruhuo22xkm5o7ttr2ktxdo/post/3m5wau62lvk2w\",\"/@danabra.mov@bsky.brid.gy/019a97fd-5275-7b19-8ee1-78a08c94ddc2\",[\"Slot\",2034],{\"name\":9,\"id\":337},{\"slots\":2036,\"props\":2037},[],{\"value\":2038,\"locale\":30},[\"Date\",\"2025-11-18T17:22:11.078Z\"],{\"slots\":2040,\"props\":2041},[],{\"language\":30,\"post\":2042,\"class\":92,\"signedAccount\":-1},{\"id\":2043,\"iri\":2044,\"type\":37,\"visibility\":38,\"actorId\":2045,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":2046,\"language\":30,\"tags\":2047,\"emojis\":2048,\"sensitive\":44,\"repliesCount\":10,\"sharesCount\":10,\"quotesCount\":10,\"reactionsCounts\":2049,\"reactionsCount\":10,\"linkId\":2050,\"linkUrl\":2051,\"url\":2031,\"updated\":2052,\"published\":2038,\"actor\":2053,\"link\":2078,\"sharedPost\":-2,\"replyTarget\":-2,\"mentions\":2086,\"media\":2087,\"shares\":2088,\"reactions\":2089},\"019a97fd-5275-7b19-8ee1-78a08c94ddc2\",\"https://bsky.brid.gy/convert/ap/at://did:plc:fpruhuo22xkm5o7ttr2ktxdo/app.bsky.feed.post/3m5wau62lvk2w\",\"01961a99-1c9e-70be-9819-2806ad4be1f4\",\"

this page has gotten much better recently, excited to dig into these patterns now that they're well-explained

Getting Started: Cache Compone...

\",{},{},{},\"019a97fd-526d-7f24-b22b-4b0a9f8b1133\",\"https://nextjs.org/docs/app/getting-started/cache-components\",[\"Date\",\"2025-11-18T17:22:11.078Z\"],{\"id\":2045,\"iri\":2054,\"type\":49,\"username\":2055,\"instanceHost\":761,\"handleHost\":761,\"handle\":2056,\"accountId\":-2,\"name\":2057,\"bioHtml\":2058,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":2059,\"headerUrl\":2060,\"inboxUrl\":2061,\"sharedInboxUrl\":767,\"followersUrl\":2062,\"featuredUrl\":-2,\"fieldHtmls\":2063,\"emojis\":2064,\"tags\":2065,\"sensitive\":44,\"successorId\":-2,\"aliases\":2066,\"followeesCount\":25,\"followersCount\":2068,\"postsCount\":10,\"url\":2017,\"updated\":2069,\"published\":2070,\"created\":2071,\"instance\":2072,\"followers\":2075,\"blockees\":2076,\"blockers\":2077},\"https://bsky.brid.gy/ap/did:plc:fpruhuo22xkm5o7ttr2ktxdo\",\"danabra.mov\",\"@danabra.mov@bsky.brid.gy\",\"dan\",\"she abunai

[bridged from danabra.mov on Bluesky by Bridgy Fed]\",\"https://morel.us-east.host.bsky.network/xrpc/com.atproto.sync.getBlob?did=did:plc:fpruhuo22xkm5o7ttr2ktxdo&cid=bafkreif43mhqajnbnl62u3ezf37g6x22nd762im54thxbil4ga46eugcga\",\"https://morel.us-east.host.bsky.network/xrpc/com.atproto.sync.getBlob?did=did:plc:fpruhuo22xkm5o7ttr2ktxdo&cid=bafkreifo3efh2wep6gtz3v3qhcncz7l5zwtv7z5auyectwivala4fndcre\",\"https://bsky.brid.gy/ap/did:plc:fpruhuo22xkm5o7ttr2ktxdo/inbox\",\"https://bsky.brid.gy/ap/did:plc:fpruhuo22xkm5o7ttr2ktxdo/followers\",{\"Web site\":-2,\"Link\":-2},{},{},[2067],\"at://did%3Aplc%3Afpruhuo22xkm5o7ttr2ktxdo\",88,[\"Date\",\"2025-04-09T12:48:06.466Z\"],[\"Date\",\"2024-11-19T15:29:18.379Z\"],[\"Date\",\"2025-04-09T12:49:24.127Z\"],{\"host\":761,\"software\":778,\"softwareVersion\":-2,\"updated\":2073,\"created\":2074},[\"Date\",\"2025-11-18T19:21:06.903Z\"],[\"Date\",\"2024-12-13T09:08:20.528Z\"],[],[],[],{\"id\":2050,\"url\":2051,\"title\":2079,\"siteName\":-2,\"type\":-2,\"description\":2080,\"author\":-2,\"imageUrl\":2081,\"imageAlt\":-2,\"imageType\":-2,\"imageWidth\":2082,\"imageHeight\":2083,\"creatorId\":-2,\"created\":2084,\"scraped\":2085,\"creator\":-2},\"Getting Started: Cache Components | Next.js\",\"Learn how to use Cache Components and combine the benefits of static and dynamic rendering.\",\"https://nextjs.org/api/docs-og?title=Getting%20Started:%20Cache%20Components\",1200,628,[\"Date\",\"2025-11-18T17:22:32.630Z\"],[\"Date\",\"2025-11-18T17:22:32.630Z\"],[],[],[],[],{\"slots\":2091,\"props\":2092},[],{\"href\":977,\"internalHref\":978,\"class\":6,\"children\":2093},[\"Slot\",2094],{\"name\":9,\"id\":2095},80,{\"slots\":2097,\"props\":2098},[],{\"href\":977,\"internalHref\":978,\"children\":2099},[\"Slot\",2100],{\"name\":9,\"id\":2101},81,{\"slots\":2103,\"props\":2104},[],{\"href\":991,\"internalHref\":992,\"class\":22,\"children\":2105},[\"Slot\",2106],{\"name\":9,\"id\":2107},82,{\"slots\":2109,\"props\":2110},[],{\"value\":2111,\"locale\":30},[\"Date\",\"2025-11-18T14:06:48.000Z\"],{\"slots\":2113,\"props\":2114},[],{\"href\":2115,\"internalHref\":2116,\"children\":2117},\"https://macaw.social/@andypiper\",\"/@andypiper@macaw.social\",[\"Slot\",2118],{\"name\":9,\"id\":2119},83,{\"slots\":2121,\"props\":2122},[],{\"href\":1009,\"internalHref\":1010,\"class\":1011,\"children\":2123},[\"Slot\",2124],{\"name\":9,\"id\":2125},84,{\"slots\":2127,\"props\":2128},[],{\"language\":30,\"post\":2129,\"class\":92,\"signedAccount\":-1},{\"id\":1019,\"iri\":1020,\"type\":37,\"visibility\":38,\"actorId\":1021,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":1022,\"language\":30,\"tags\":2130,\"emojis\":2131,\"sensitive\":44,\"repliesCount\":10,\"sharesCount\":1033,\"quotesCount\":10,\"reactionsCounts\":2132,\"reactionsCount\":10,\"linkId\":1035,\"linkUrl\":1036,\"url\":991,\"updated\":2133,\"published\":2111,\"actor\":2134,\"link\":2148,\"replyTarget\":-2,\"mentions\":2159,\"media\":2160,\"shares\":2161,\"reactions\":2162},{\"nham\":1024,\"tibr\":1025,\"music\":1026,\"bonkwave\":1027,\"faircamp\":1028,\"cloudflare\":1029,\"notbonkwave\":1030,\"independentmusic\":1031},{},{},[\"Date\",\"2025-11-18T14:06:48.000Z\"],{\"id\":1021,\"iri\":1039,\"type\":49,\"username\":1040,\"instanceHost\":1041,\"handleHost\":1041,\"handle\":1042,\"accountId\":-2,\"name\":1043,\"bioHtml\":1044,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":1045,\"headerUrl\":1046,\"inboxUrl\":1047,\"sharedInboxUrl\":1048,\"followersUrl\":1049,\"featuredUrl\":-2,\"fieldHtmls\":2135,\"emojis\":2136,\"tags\":2137,\"sensitive\":44,\"successorId\":-2,\"aliases\":2138,\"followeesCount\":1058,\"followersCount\":1059,\"postsCount\":10,\"url\":977,\"updated\":2139,\"published\":2140,\"created\":2141,\"instance\":2142,\"followers\":2145,\"blockees\":2146,\"blockers\":2147},{\"Key 13\":1051,\"Faircamp\":1052,\"SoundCloud\":1053,\"Bandcamp\":1054},{},{},[],[\"Date\",\"2025-04-01T13:02:02.644Z\"],[\"Date\",\"2022-10-31T00:00:00.000Z\"],[\"Date\",\"2025-04-01T13:02:02.644Z\"],{\"host\":1041,\"software\":81,\"softwareVersion\":964,\"updated\":2143,\"created\":2144},[\"Date\",\"2025-11-18T21:13:29.715Z\"],[\"Date\",\"2024-12-24T16:31:46.188Z\"],[],[],[],{\"id\":1035,\"url\":1036,\"title\":1070,\"siteName\":-2,\"type\":-2,\"description\":-2,\"author\":-2,\"imageUrl\":1071,\"imageAlt\":-2,\"imageType\":124,\"imageWidth\":1072,\"imageHeight\":1072,\"creatorId\":1073,\"created\":2149,\"scraped\":2150,\"creator\":2151},[\"Date\",\"2025-03-30T21:32:06.173Z\"],[\"Date\",\"2025-11-18T17:22:13.374Z\"],{\"id\":1073,\"iri\":1077,\"type\":49,\"username\":1078,\"instanceHost\":1079,\"handleHost\":1079,\"handle\":1080,\"accountId\":-2,\"name\":1078,\"bioHtml\":238,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":1081,\"headerUrl\":-2,\"inboxUrl\":1082,\"sharedInboxUrl\":-2,\"followersUrl\":1083,\"featuredUrl\":-2,\"fieldHtmls\":2152,\"emojis\":2153,\"tags\":2154,\"sensitive\":44,\"successorId\":-2,\"aliases\":2155,\"followeesCount\":10,\"followersCount\":616,\"postsCount\":10,\"url\":1009,\"updated\":2156,\"published\":2157,\"created\":2158},{\"Blog\":1085,\"Profile\":1086,\"Homepage\":1087},{},{},[],[\"Date\",\"2025-03-16T16:24:48.561Z\"],[\"Date\",\"2024-11-05T19:55:14.000Z\"],[\"Date\",\"2025-03-16T16:24:48.561Z\"],[],[],[],[],{\"slots\":2164,\"props\":2165},[],{\"href\":2166,\"internalHref\":2167,\"class\":6,\"children\":2168},\"https://mastodon.social/@Gargron\",\"/@Gargron@mastodon.social\",[\"Slot\",2169],{\"name\":9,\"id\":2170},85,{\"slots\":2172,\"props\":2173},[],{\"href\":2166,\"internalHref\":2167,\"children\":2174},[\"Slot\",2175],{\"name\":9,\"id\":2176},86,{\"slots\":2178,\"props\":2179},[],{\"href\":2180,\"internalHref\":2181,\"class\":22,\"children\":2182},\"https://mastodon.social/@Gargron/115569820207257167\",\"/@Gargron@mastodon.social/019a9623-b567-75ac-82b5-d22472a6ac67\",[\"Slot\",2183],{\"name\":9,\"id\":2184},87,{\"slots\":2186,\"props\":2187},[],{\"value\":2188,\"locale\":30},[\"Date\",\"2025-11-18T08:45:08.000Z\"],{\"slots\":2190,\"props\":2191},[],{\"href\":826,\"internalHref\":827,\"children\":2192},[\"Slot\",2193],{\"name\":9,\"id\":2068},{\"slots\":2195,\"props\":2196},[],{\"href\":2166,\"internalHref\":2167,\"class\":1011,\"children\":2197},[\"Slot\",2198],{\"name\":9,\"id\":2199},89,{\"slots\":2201,\"props\":2202},[],{\"language\":30,\"post\":2203,\"class\":92,\"signedAccount\":-1},{\"id\":2204,\"iri\":2205,\"type\":37,\"visibility\":38,\"actorId\":2206,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":2207,\"language\":30,\"tags\":2208,\"emojis\":2210,\"sensitive\":44,\"repliesCount\":10,\"sharesCount\":2211,\"quotesCount\":25,\"reactionsCounts\":2212,\"reactionsCount\":10,\"linkId\":2213,\"linkUrl\":2214,\"url\":2180,\"updated\":2215,\"published\":2188,\"actor\":2216,\"link\":2245,\"replyTarget\":-2,\"mentions\":2260,\"media\":2261,\"shares\":2262,\"reactions\":2263},\"019a9623-b567-75ac-82b5-d22472a6ac67\",\"https://mastodon.social/users/Gargron/statuses/115569820207257167\",\"01957d0e-ebf7-7914-9b8a-bdd101e32d1f\",\"

Today I am stepping down from my role as the CEO of #Mastodon. Though this has been in the works for a while, I can't say I've fully processed how I feel about it. There is a bittersweet part to it, and I think I will miss it, but it also felt necessary. It feels like a goodbye, but it isn't—I intend to stay on and continue to advise the new leadership and contribute, because Mastodon—and the fediverse—is one of the very few beacons of hope for a better web.

https://blog.joinmastodon.org/2025/11/my-next-chapter-with-mastodon/

\",{\"mastodon\":2209},\"https://mastodon.social/tags/mastodon\",{},2053,{},\"019a95ff-1c75-7fba-9398-c5b53f873e1f\",\"https://blog.joinmastodon.org/2025/11/my-next-chapter-with-mastodon/\",[\"Date\",\"2025-11-18T08:45:08.000Z\"],{\"id\":2206,\"iri\":2217,\"type\":49,\"username\":2218,\"instanceHost\":941,\"handleHost\":941,\"handle\":2219,\"accountId\":-2,\"name\":2220,\"bioHtml\":2221,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":2222,\"headerUrl\":2223,\"inboxUrl\":2224,\"sharedInboxUrl\":948,\"followersUrl\":2225,\"featuredUrl\":2226,\"fieldHtmls\":2227,\"emojis\":2231,\"tags\":2232,\"sensitive\":44,\"successorId\":-2,\"aliases\":2233,\"followeesCount\":2234,\"followersCount\":2235,\"postsCount\":10,\"url\":2166,\"updated\":2236,\"published\":2237,\"created\":2238,\"instance\":2239,\"followers\":2242,\"blockees\":2243,\"blockers\":2244},\"https://mastodon.social/users/Gargron\",\"Gargron\",\"@Gargron@mastodon.social\",\"Eugen Rochko\",\"

Executive Strategy & Product Advisor, Founder of @Mastodon. Film photography, prog metal, Dota 2. Likes all things analog.

\",\"https://files.mastodon.social/accounts/avatars/000/000/001/original/a0a49d80c3de5f75.png\",\"https://files.mastodon.social/accounts/headers/000/000/001/original/d13e4417706a5fec.jpg\",\"https://mastodon.social/users/Gargron/inbox\",\"https://mastodon.social/users/Gargron/followers\",\"https://mastodon.social/users/Gargron/collections/featured\",{\"Patreon\":2228,\"GitHub\":2229,\"Portfolio\":2230},\"https://www.patreon.com/mastodon\",\"https://github.com/Gargron\",\"https://eugenrochko.com\",{},{},[],682,373105,[\"Date\",\"2025-03-09T22:38:04.793Z\"],[\"Date\",\"2016-03-16T00:00:00.000Z\"],[\"Date\",\"2025-03-09T22:38:04.793Z\"],{\"host\":941,\"software\":81,\"softwareVersion\":964,\"updated\":2240,\"created\":2241},[\"Date\",\"2025-11-19T05:16:34.626Z\"],[\"Date\",\"2024-12-13T09:08:56.994Z\"],[],[],[],{\"id\":2213,\"url\":2214,\"title\":2246,\"siteName\":2247,\"type\":352,\"description\":2248,\"author\":-2,\"imageUrl\":2249,\"imageAlt\":-2,\"imageType\":124,\"imageWidth\":2082,\"imageHeight\":127,\"creatorId\":2206,\"created\":2250,\"scraped\":2251,\"creator\":2252},\"My next chapter with Mastodon\",\"Mastodon Blog\",\"Reflections on my time leading Mastodon and what's to come next.\",\"https://blog.joinmastodon.org/2025/11/my-next-chapter-with-mastodon/hero_hu9357646108315047752.png\",[\"Date\",\"2025-11-18T08:05:15.526Z\"],[\"Date\",\"2025-11-18T19:21:49.867Z\"],{\"id\":2206,\"iri\":2217,\"type\":49,\"username\":2218,\"instanceHost\":941,\"handleHost\":941,\"handle\":2219,\"accountId\":-2,\"name\":2220,\"bioHtml\":2221,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":2222,\"headerUrl\":2223,\"inboxUrl\":2224,\"sharedInboxUrl\":948,\"followersUrl\":2225,\"featuredUrl\":2226,\"fieldHtmls\":2253,\"emojis\":2254,\"tags\":2255,\"sensitive\":44,\"successorId\":-2,\"aliases\":2256,\"followeesCount\":2234,\"followersCount\":2235,\"postsCount\":10,\"url\":2166,\"updated\":2257,\"published\":2258,\"created\":2259},{\"Patreon\":2228,\"GitHub\":2229,\"Portfolio\":2230},{},{},[],[\"Date\",\"2025-03-09T22:38:04.793Z\"],[\"Date\",\"2016-03-16T00:00:00.000Z\"],[\"Date\",\"2025-03-09T22:38:04.793Z\"],[],[],[],[],{\"slots\":2265,\"props\":2266},[],{\"href\":2166,\"internalHref\":2167,\"class\":6,\"children\":2267},[\"Slot\",2268],{\"name\":9,\"id\":2269},90,{\"slots\":2271,\"props\":2272},[],{\"href\":2166,\"internalHref\":2167,\"children\":2273},[\"Slot\",2274],{\"name\":9,\"id\":2275},91,{\"slots\":2277,\"props\":2278},[],{\"href\":2180,\"internalHref\":2181,\"class\":22,\"children\":2279},[\"Slot\",2280],{\"name\":9,\"id\":2281},92,{\"slots\":2283,\"props\":2284},[],{\"value\":2285,\"locale\":30},[\"Date\",\"2025-11-18T08:45:08.000Z\"],{\"slots\":2287,\"props\":2288},[],{\"href\":2166,\"internalHref\":2167,\"class\":1011,\"children\":2289},[\"Slot\",2290],{\"name\":9,\"id\":2291},93,{\"slots\":2293,\"props\":2294},[],{\"href\":2166,\"internalHref\":2167,\"class\":6,\"children\":2295},[\"Slot\",2296],{\"name\":9,\"id\":2297},94,{\"slots\":2299,\"props\":2300},[],{\"href\":2166,\"internalHref\":2167,\"children\":2301},[\"Slot\",2302],{\"name\":9,\"id\":2303},95,{\"slots\":2305,\"props\":2306},[],{\"href\":2307,\"internalHref\":2308,\"class\":22,\"children\":2309},\"https://mastodon.social/@Gargron/115569885431881269\",\"/@Gargron@mastodon.social/019a9632-e88c-7587-98ab-b13b7cc81c81\",[\"Slot\",2310],{\"name\":9,\"id\":2311},96,{\"slots\":2313,\"props\":2314},[],{\"value\":2315,\"locale\":30},[\"Date\",\"2025-11-18T09:01:43.000Z\"],{\"slots\":2317,\"props\":2318},[],{\"href\":826,\"internalHref\":827,\"children\":2319},[\"Slot\",2320],{\"name\":9,\"id\":2321},97,{\"slots\":2323,\"props\":2324},[],{\"id\":2325,\"language\":30,\"class\":2326},\"019a95fc-5523-7b90-b389-53f9293d464c\",\"\\n mt-4 mb-2\\n \\n \",{\"slots\":2328,\"props\":2329},[],{\"language\":30,\"post\":2330,\"class\":92,\"signedAccount\":-1},{\"id\":2331,\"iri\":2332,\"type\":37,\"visibility\":38,\"actorId\":2206,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":2204,\"quotedPostId\":2325,\"name\":-2,\"summary\":-2,\"contentHtml\":2333,\"language\":30,\"tags\":2334,\"emojis\":2335,\"sensitive\":44,\"repliesCount\":10,\"sharesCount\":2336,\"quotesCount\":10,\"reactionsCounts\":2337,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":2307,\"updated\":2338,\"published\":2315,\"actor\":2339,\"link\":-2,\"replyTarget\":2353,\"mentions\":2385,\"media\":2460,\"shares\":2461,\"reactions\":2462},\"019a9632-e88c-7587-98ab-b13b7cc81c81\",\"https://mastodon.social/users/Gargron/statuses/115569885431881269\",\"

RE: https://mastodon.social/@mellifluousbox/115569615176946969

I am passing the torch to @mellifluousbox, who will be the new Executive Director. Felix has been involved with #Mastodon since 2020 and has been instrumental in evolving the organization, raising funds, and growing the team to get us to where we are now. With @haubles and @renchap by his side, and the team we have assembled over the years, I have faith that the new leadership will do a stellar job.

\",{\"mastodon\":2209},{},177,{},[\"Date\",\"2025-11-18T09:01:43.000Z\"],{\"id\":2206,\"iri\":2217,\"type\":49,\"username\":2218,\"instanceHost\":941,\"handleHost\":941,\"handle\":2219,\"accountId\":-2,\"name\":2220,\"bioHtml\":2221,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":2222,\"headerUrl\":2223,\"inboxUrl\":2224,\"sharedInboxUrl\":948,\"followersUrl\":2225,\"featuredUrl\":2226,\"fieldHtmls\":2340,\"emojis\":2341,\"tags\":2342,\"sensitive\":44,\"successorId\":-2,\"aliases\":2343,\"followeesCount\":2234,\"followersCount\":2235,\"postsCount\":10,\"url\":2166,\"updated\":2344,\"published\":2345,\"created\":2346,\"instance\":2347,\"followers\":2350,\"blockees\":2351,\"blockers\":2352},{\"Patreon\":2228,\"GitHub\":2229,\"Portfolio\":2230},{},{},[],[\"Date\",\"2025-03-09T22:38:04.793Z\"],[\"Date\",\"2016-03-16T00:00:00.000Z\"],[\"Date\",\"2025-03-09T22:38:04.793Z\"],{\"host\":941,\"software\":81,\"softwareVersion\":964,\"updated\":2348,\"created\":2349},[\"Date\",\"2025-11-19T05:16:34.626Z\"],[\"Date\",\"2024-12-13T09:08:56.994Z\"],[],[],[],{\"id\":2204,\"iri\":2205,\"type\":37,\"visibility\":38,\"actorId\":2206,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":2207,\"language\":30,\"tags\":2354,\"emojis\":2355,\"sensitive\":44,\"repliesCount\":10,\"sharesCount\":2211,\"quotesCount\":25,\"reactionsCounts\":2356,\"reactionsCount\":10,\"linkId\":2213,\"linkUrl\":2214,\"url\":2180,\"updated\":2357,\"published\":2285,\"actor\":2358,\"link\":2372,\"mentions\":2383,\"media\":2384},{\"mastodon\":2209},{},{},[\"Date\",\"2025-11-18T08:45:08.000Z\"],{\"id\":2206,\"iri\":2217,\"type\":49,\"username\":2218,\"instanceHost\":941,\"handleHost\":941,\"handle\":2219,\"accountId\":-2,\"name\":2220,\"bioHtml\":2221,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":2222,\"headerUrl\":2223,\"inboxUrl\":2224,\"sharedInboxUrl\":948,\"followersUrl\":2225,\"featuredUrl\":2226,\"fieldHtmls\":2359,\"emojis\":2360,\"tags\":2361,\"sensitive\":44,\"successorId\":-2,\"aliases\":2362,\"followeesCount\":2234,\"followersCount\":2235,\"postsCount\":10,\"url\":2166,\"updated\":2363,\"published\":2364,\"created\":2365,\"instance\":2366,\"followers\":2369,\"blockees\":2370,\"blockers\":2371},{\"Patreon\":2228,\"GitHub\":2229,\"Portfolio\":2230},{},{},[],[\"Date\",\"2025-03-09T22:38:04.793Z\"],[\"Date\",\"2016-03-16T00:00:00.000Z\"],[\"Date\",\"2025-03-09T22:38:04.793Z\"],{\"host\":941,\"software\":81,\"softwareVersion\":964,\"updated\":2367,\"created\":2368},[\"Date\",\"2025-11-19T05:16:34.626Z\"],[\"Date\",\"2024-12-13T09:08:56.994Z\"],[],[],[],{\"id\":2213,\"url\":2214,\"title\":2246,\"siteName\":2247,\"type\":352,\"description\":2248,\"author\":-2,\"imageUrl\":2249,\"imageAlt\":-2,\"imageType\":124,\"imageWidth\":2082,\"imageHeight\":127,\"creatorId\":2206,\"created\":2373,\"scraped\":2374,\"creator\":2375},[\"Date\",\"2025-11-18T08:05:15.526Z\"],[\"Date\",\"2025-11-18T19:21:49.867Z\"],{\"id\":2206,\"iri\":2217,\"type\":49,\"username\":2218,\"instanceHost\":941,\"handleHost\":941,\"handle\":2219,\"accountId\":-2,\"name\":2220,\"bioHtml\":2221,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":2222,\"headerUrl\":2223,\"inboxUrl\":2224,\"sharedInboxUrl\":948,\"followersUrl\":2225,\"featuredUrl\":2226,\"fieldHtmls\":2376,\"emojis\":2377,\"tags\":2378,\"sensitive\":44,\"successorId\":-2,\"aliases\":2379,\"followeesCount\":2234,\"followersCount\":2235,\"postsCount\":10,\"url\":2166,\"updated\":2380,\"published\":2381,\"created\":2382},{\"Patreon\":2228,\"GitHub\":2229,\"Portfolio\":2230},{},{},[],[\"Date\",\"2025-03-09T22:38:04.793Z\"],[\"Date\",\"2016-03-16T00:00:00.000Z\"],[\"Date\",\"2025-03-09T22:38:04.793Z\"],[],[],[2386,2414,2435],{\"postId\":2331,\"actorId\":2387,\"actor\":2388},\"01958b73-6acf-7dfa-ba01-1fa4711d8ebc\",{\"id\":2387,\"iri\":2389,\"type\":49,\"username\":2390,\"instanceHost\":2391,\"handleHost\":2391,\"handle\":2392,\"accountId\":-2,\"name\":2393,\"bioHtml\":2394,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":2395,\"headerUrl\":-2,\"inboxUrl\":2396,\"sharedInboxUrl\":2397,\"followersUrl\":2398,\"featuredUrl\":-2,\"fieldHtmls\":2399,\"emojis\":2404,\"tags\":2406,\"sensitive\":44,\"successorId\":-2,\"aliases\":2407,\"followeesCount\":2408,\"followersCount\":2409,\"postsCount\":10,\"url\":2410,\"updated\":2411,\"published\":2412,\"created\":2413},\"https://oisaur.com/users/renchap\",\"renchap\",\"oisaur.com\",\"@renchap@oisaur.com\",\"Renaud Chaput\",\"

Co-Founder & CTO @notos
CTO @Mastodon #mastodev

Technical administrator for mastodon.social & mastodon.online (and oisaur.com :oisaur:) #mastoadmin

Also #lego, #larp, #boardgames and #woodworking

Pour les Français, militant chez Génération·s et GNiste (inactif) #gn

\",\"https://media.oisaur.com/accounts/avatars/109/310/040/754/530/346/original/80e694b0e2fc55b9.jpeg\",\"https://oisaur.com/users/renchap/inbox\",\"https://oisaur.com/inbox\",\"https://oisaur.com/users/renchap/followers\",{\"Blog\":2400,\"Github\":2401,\"Notos\":2402,\"Mastodon\":2403},\"https://renchap.com\",\"https://github.com/renchap\",\"https://www.notos.co\",\"https://joinmastodon.org/about\",{\":oisaur:\":2405},\"https://media.oisaur.com/custom_emojis/images/000/022/093/original/6bac5e112c9675b4.png\",{},[],681,6145,\"https://oisaur.com/@renchap\",[\"Date\",\"2025-03-12T17:42:31.885Z\"],[\"Date\",\"2022-11-08T00:00:00.000Z\"],[\"Date\",\"2025-03-12T17:42:31.885Z\"],{\"postId\":2331,\"actorId\":2415,\"actor\":2416},\"0195b539-8865-7707-afd5-f7d5b10aaedb\",{\"id\":2415,\"iri\":2417,\"type\":49,\"username\":2418,\"instanceHost\":941,\"handleHost\":941,\"handle\":2419,\"accountId\":-2,\"name\":2420,\"bioHtml\":2421,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":2422,\"headerUrl\":-2,\"inboxUrl\":2423,\"sharedInboxUrl\":948,\"followersUrl\":2424,\"featuredUrl\":-2,\"fieldHtmls\":2425,\"emojis\":2426,\"tags\":2427,\"sensitive\":44,\"successorId\":-2,\"aliases\":2428,\"followeesCount\":2429,\"followersCount\":2430,\"postsCount\":10,\"url\":2431,\"updated\":2432,\"published\":2433,\"created\":2434},\"https://mastodon.social/users/mellifluousbox\",\"mellifluousbox\",\"@mellifluousbox@mastodon.social\",\"Felix Hlatky\",\"

CFO at @Mastodon

\",\"https://files.mastodon.social/accounts/avatars/001/002/649/original/74ce2adef40503a7.jpg\",\"https://mastodon.social/users/mellifluousbox/inbox\",\"https://mastodon.social/users/mellifluousbox/followers\",{\"pronouns\":434,\"Org\":2403},{},{},[],592,599,\"https://mastodon.social/@mellifluousbox\",[\"Date\",\"2025-03-20T20:23:21.491Z\"],[\"Date\",\"2019-11-16T00:00:00.000Z\"],[\"Date\",\"2025-03-20T20:23:21.491Z\"],{\"postId\":2331,\"actorId\":2436,\"actor\":2437},\"01966f53-82e0-7a09-9e19-536e0aa50e17\",{\"id\":2436,\"iri\":2438,\"type\":49,\"username\":2439,\"instanceHost\":1850,\"handleHost\":1850,\"handle\":2440,\"accountId\":-2,\"name\":2441,\"bioHtml\":2442,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":2443,\"headerUrl\":-2,\"inboxUrl\":2444,\"sharedInboxUrl\":1857,\"followersUrl\":2445,\"featuredUrl\":2446,\"fieldHtmls\":2447,\"emojis\":2449,\"tags\":2450,\"sensitive\":44,\"successorId\":-2,\"aliases\":2452,\"followeesCount\":2454,\"followersCount\":2455,\"postsCount\":10,\"url\":2456,\"updated\":2457,\"published\":2458,\"created\":2459},\"https://hachyderm.io/users/haubles\",\"haubles\",\"@haubles@hachyderm.io\",\"hannah aubry\",\"

open source developer advocate at AWS & Mastodon contributor ☞ spotify dj ⌘ certified goof ♡ loves birds ☆ importantly, earnest ♓︎ she/they ⇥ #NYC

\",\"https://media.hachyderm.io/accounts/avatars/114/400/744/448/554/836/original/fd65987a943dfd13.jpg\",\"https://hachyderm.io/users/haubles/inbox\",\"https://hachyderm.io/users/haubles/followers\",\"https://hachyderm.io/users/haubles/collections/featured\",{\"my blog\":2448},\"https://hannahaubry.online/\",{},{\"#nyc\":2451},\"https://hachyderm.io/tags/nyc\",[2453],\"https://fosstodon.org/users/haubles\",542,1111,\"https://hachyderm.io/@haubles\",[\"Date\",\"2025-04-25T23:41:06.146Z\"],[\"Date\",\"2025-04-25T00:00:00.000Z\"],[\"Date\",\"2025-04-25T23:41:06.146Z\"],[],[],[],{\"slots\":2464,\"props\":2465},[],{\"href\":2466,\"internalHref\":2467,\"class\":6,\"children\":2468},\"https://23.social/@leyrer\",\"/@leyrer@23.social\",[\"Slot\",2469],{\"name\":9,\"id\":2470},98,{\"slots\":2472,\"props\":2473},[],{\"href\":2466,\"internalHref\":2467,\"children\":2474},[\"Slot\",2475],{\"name\":9,\"id\":2476},99,{\"slots\":2478,\"props\":2479},[],{\"href\":2480,\"internalHref\":2481,\"class\":22,\"children\":2482},\"https://23.social/@leyrer/115571850278462660\",\"/@leyrer@23.social/019a97fc-5df4-7d5f-84cf-ecb74c1c659d\",[\"Slot\",2483],{\"name\":9,\"id\":2484},100,{\"slots\":2486,\"props\":2487},[],{\"value\":2488,\"locale\":30},[\"Date\",\"2025-11-18T17:21:24.000Z\"],{\"slots\":2490,\"props\":2491},[],{\"language\":30,\"post\":2492,\"class\":92,\"signedAccount\":-1},{\"id\":2493,\"iri\":2494,\"type\":37,\"visibility\":38,\"actorId\":2495,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":2496,\"language\":30,\"tags\":2497,\"emojis\":2498,\"sensitive\":44,\"repliesCount\":550,\"sharesCount\":10,\"quotesCount\":10,\"reactionsCounts\":2499,\"reactionsCount\":10,\"linkId\":2500,\"linkUrl\":2501,\"url\":2480,\"updated\":2502,\"published\":2488,\"actor\":2503,\"link\":2535,\"sharedPost\":-2,\"replyTarget\":-2,\"mentions\":2544,\"media\":2545,\"shares\":2546,\"reactions\":2547},\"019a97fc-5df4-7d5f-84cf-ecb74c1c659d\",\"https://23.social/users/leyrer/statuses/115571850278462660\",\"01968d34-cfff-7dc3-a64d-0e9897ef9290\",\"

WTF of the week (yes, it's only Tuesday):

Microsoft warns that Windows 11's agentic AI could install malware on your PC: "Only enable this feature if you understand the security implications"
https://www.windowscentral.com/microsoft/windows-11/microsoft-warns-security-risks-agentic-os-windows-11-xpia-malware

\",{},{},{},\"019a97fc-5ded-773e-9d0d-6f669c647f8f\",\"https://www.windowscentral.com/microsoft/windows-11/microsoft-warns-security-risks-agentic-os-windows-11-xpia-malware\",[\"Date\",\"2025-11-18T17:21:24.000Z\"],{\"id\":2495,\"iri\":2504,\"type\":49,\"username\":2505,\"instanceHost\":2506,\"handleHost\":2506,\"handle\":2507,\"accountId\":-2,\"name\":2505,\"bioHtml\":2508,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":2509,\"headerUrl\":2510,\"inboxUrl\":2511,\"sharedInboxUrl\":2512,\"followersUrl\":2513,\"featuredUrl\":2514,\"fieldHtmls\":2515,\"emojis\":2520,\"tags\":2521,\"sensitive\":44,\"successorId\":-2,\"aliases\":2522,\"followeesCount\":2524,\"followersCount\":2525,\"postsCount\":10,\"url\":2466,\"updated\":2526,\"published\":2527,\"created\":2528,\"instance\":2529,\"followers\":2532,\"blockees\":2533,\"blockers\":2534},\"https://23.social/users/leyrer\",\"leyrer\",\"23.social\",\"@leyrer@23.social\",\"

ⓘ 𝘛𝘩𝘪𝘴 𝘶𝘴𝘦𝘳 𝘪𝘴 𝘴𝘶𝘴𝘱𝘦𝘤𝘵𝘦𝘥 𝘰𝘧 𝘣𝘦𝘪𝘯𝘨 𝘱𝘢𝘳𝘵 𝘰𝘧 𝘢 𝘵𝘦𝘳𝘳𝘰𝘳𝘪𝘴𝘵 𝘰𝘳𝘨𝘢𝘯𝘪𝘻𝘢𝘵𝘪𝘰𝘯 𝘤𝘢𝘭𝘭𝘦𝘥 𝘈𝘯𝘵𝘪𝘧𝘢. 𝘗𝘭𝘦𝘢𝘴𝘦 𝘳𝘦𝘱𝘰𝘳𝘵 𝘢𝘯𝘺 𝘴𝘶𝘴𝘱𝘪𝘤𝘪𝘰𝘶𝘴 𝘣𝘦𝘩𝘢𝘷𝘪𝘰𝘳.
Oscillating between Dunning-Kruger Effect and Impostor Syndrome.
Apparently not socializable.
Der Geist eines Siebenjährigen, gefangen im Körper eines alten, weißen Mannes. Send help!
Serial enthusiast, professional pessimist.

\",\"https://cdn.masto.host/num23social/accounts/avatars/114/183/460/963/234/221/original/facfd02b847785e7.jpg\",\"https://cdn.masto.host/num23social/accounts/headers/114/183/460/963/234/221/original/e67de7468924a63b.jpg\",\"https://23.social/users/leyrer/inbox\",\"https://23.social/inbox\",\"https://23.social/users/leyrer/followers\",\"https://23.social/users/leyrer/collections/featured\",{\"Blog & Impressum\":2516,\"Ham Radio\":2517,\"DECT @ CCC-Events\":2518,\"privileges\":2519},\"https://martin.leyrer.priv.at\",\"OE1LYA\",\"5392\",\"white, cis, male, old fart, tech worker\",{},{},[2523],\"https://chaos.social/users/leyrer\",5044,6415,[\"Date\",\"2025-05-01T18:56:10.755Z\"],[\"Date\",\"2025-03-18T00:00:00.000Z\"],[\"Date\",\"2025-05-01T18:56:10.755Z\"],{\"host\":2506,\"software\":81,\"softwareVersion\":191,\"updated\":2530,\"created\":2531},[\"Date\",\"2025-11-18T12:30:56.543Z\"],[\"Date\",\"2025-03-12T06:47:26.656Z\"],[],[],[],{\"id\":2500,\"url\":2501,\"title\":2536,\"siteName\":2537,\"type\":352,\"description\":2538,\"author\":-2,\"imageUrl\":2539,\"imageAlt\":-2,\"imageType\":356,\"imageWidth\":2540,\"imageHeight\":2541,\"creatorId\":-2,\"created\":2542,\"scraped\":2543,\"creator\":-2},\"Microsoft warns that Windows 11's agentic AI could install malware on your PC: \\\"Only enable this feature if you understand the security implications\\\"\",\"Windows Central\",\"Microsoft is pushing ahead with its plan to add agentic capabilities to Windows 11 but has issued an important security warning for anyone who is interested in trying it out.\",\"https://cdn.mos.cms.futurecdn.net/RR6euwrPY7cVqtXtgx7DMV-2048-80.jpg\",2048,1365,[\"Date\",\"2025-11-18T17:21:30.022Z\"],[\"Date\",\"2025-11-18T17:21:30.022Z\"],[],[],[],[],{\"slots\":2549,\"props\":2550},[],{\"href\":2551,\"internalHref\":2552,\"class\":6,\"children\":2553},\"https://misskey.io/@gumakara\",\"/@gumakara@misskey.io\",[\"Slot\",2554],{\"name\":9,\"id\":2555},101,{\"slots\":2557,\"props\":2558},[],{\"href\":2551,\"internalHref\":2552,\"children\":2559},[\"Slot\",2560],{\"name\":9,\"id\":1226},{\"slots\":2562,\"props\":2563},[],{\"href\":2564,\"internalHref\":2565,\"class\":22,\"children\":2566},\"https://misskey.io/notes/af8eme9qrh7r08gs\",\"/@gumakara@misskey.io/019a9804-61ce-7678-8131-3c5176ff2076\",[\"Slot\",2567],{\"name\":9,\"id\":2568},103,{\"slots\":2570,\"props\":2571},[],{\"value\":2572,\"locale\":30},[\"Date\",\"2025-11-18T17:21:04.958Z\"],{\"slots\":2574,\"props\":2575},[],{\"language\":30,\"post\":2576,\"class\":92,\"signedAccount\":-1},{\"id\":2577,\"iri\":2564,\"type\":37,\"visibility\":38,\"actorId\":2578,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":2579,\"language\":-2,\"tags\":2580,\"emojis\":2581,\"sensitive\":44,\"repliesCount\":10,\"sharesCount\":10,\"quotesCount\":10,\"reactionsCounts\":2582,\"reactionsCount\":16,\"linkId\":-2,\"linkUrl\":-2,\"url\":-2,\"updated\":2583,\"published\":2572,\"actor\":2584,\"link\":-2,\"sharedPost\":-2,\"replyTarget\":-2,\"mentions\":2612,\"media\":2613,\"shares\":2614,\"reactions\":2615},\"019a9804-61ce-7678-8131-3c5176ff2076\",\"01957f40-728d-73ef-bd64-514f5faa37aa\",\"

んあーーーーーーーーーーーーー無限に稼がないと

\",{},{},{\"019638fd-2006-734e-8e48-b2e374c9727b\":16},[\"Date\",\"2025-11-18T17:21:04.958Z\"],{\"id\":2578,\"iri\":2585,\"type\":49,\"username\":2586,\"instanceHost\":680,\"handleHost\":680,\"handle\":2587,\"accountId\":-2,\"name\":2588,\"bioHtml\":2589,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":2590,\"headerUrl\":2591,\"inboxUrl\":2592,\"sharedInboxUrl\":686,\"followersUrl\":2593,\"featuredUrl\":-2,\"fieldHtmls\":2594,\"emojis\":2599,\"tags\":2600,\"sensitive\":44,\"successorId\":-2,\"aliases\":2601,\"followeesCount\":2602,\"followersCount\":2603,\"postsCount\":10,\"url\":2551,\"updated\":2604,\"published\":-2,\"created\":2605,\"instance\":2606,\"followers\":2609,\"blockees\":2610,\"blockers\":2611},\"https://misskey.io/users/9d5wy3j5vu\",\"gumakara\",\"@gumakara@misskey.io\",\"ぐまから こうもりさん組\",\"

絵 https://misskey.io/notes/9xq1ckpsjfm6072d
老若男女雑食絵描き
こっちでは健全絵とソフトからハードまでえっちなのも上げます
えちテロ防ぐために健全絵描きさんをこちらから先にフォローすることはないですたぶん
よそのこかわいい 一次二次適当

\",\"https://media.misskeyusercontent.com/io/48777df4-dd04-4503-9140-92d0e45dc947.gif\",\"https://media.misskeyusercontent.com/io/eee0d3e1-dd19-41db-b072-f8af7428338f.png?sensitive=true\",\"https://misskey.io/users/9d5wy3j5vu/inbox\",\"https://misskey.io/users/9d5wy3j5vu/followers\",{\"Twitter\":2595,\"Pixiv\":2596,\"FANBOX\":2597,\"干芋\":2598},\"https://twitter.com/gumakara\",\"https://www.pixiv.net/users/15570179\",\"https://gumakara.fanbox.cc/\",\"https://www.amazon.co.jp/hz/wishlist/ls/2BWMH7K9QM8O7?ref_=wl_dp_add_item_to_list\",{},{},[],739,3350,[\"Date\",\"2025-03-10T08:51:24.942Z\"],[\"Date\",\"2025-03-10T08:51:24.942Z\"],{\"host\":680,\"software\":699,\"softwareVersion\":700,\"updated\":2607,\"created\":2608},[\"Date\",\"2025-11-19T02:13:27.987Z\"],[\"Date\",\"2024-12-13T09:14:04.772Z\"],[],[],[],[],[],[],[],{\"slots\":2617,\"props\":2618},[],{\"href\":2619,\"internalHref\":2620,\"class\":6,\"children\":2621},\"https://mastodon.sdf.org/@ipxfong\",\"/@ipxfong@mastodon.sdf.org\",[\"Slot\",2622],{\"name\":9,\"id\":1633},{\"slots\":2624,\"props\":2625},[],{\"href\":2619,\"internalHref\":2620,\"children\":2626},[\"Slot\",2627],{\"name\":9,\"id\":2628},105,{\"slots\":2630,\"props\":2631},[],{\"href\":2632,\"internalHref\":2633,\"class\":22,\"children\":2634},\"https://mastodon.sdf.org/@ipxfong/115571847677959369\",\"/@ipxfong@mastodon.sdf.org/019a97fb-b80c-7c71-bce8-874406b109f0\",[\"Slot\",2635],{\"name\":9,\"id\":2636},106,{\"slots\":2638,\"props\":2639},[],{\"value\":2640,\"locale\":30},[\"Date\",\"2025-11-18T17:20:45.000Z\"],{\"slots\":2642,\"props\":2643},[],{\"language\":30,\"post\":2644,\"class\":92,\"signedAccount\":-1},{\"id\":2645,\"iri\":2646,\"type\":37,\"visibility\":38,\"actorId\":2647,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":2648,\"language\":30,\"tags\":2649,\"emojis\":2652,\"sensitive\":44,\"repliesCount\":10,\"sharesCount\":10,\"quotesCount\":10,\"reactionsCounts\":2653,\"reactionsCount\":10,\"linkId\":2654,\"linkUrl\":2655,\"url\":2632,\"updated\":2656,\"published\":2640,\"actor\":2657,\"link\":2688,\"sharedPost\":-2,\"replyTarget\":-2,\"mentions\":2697,\"media\":2698,\"shares\":2699,\"reactions\":2700},\"019a97fb-b80c-7c71-bce8-874406b109f0\",\"https://mastodon.sdf.org/users/ipxfong/statuses/115571847677959369\",\"01958803-aaf3-7acd-9b6a-a29ee54a9135\",\"

Nancy and Jucika expressing similar themes today.

https://mastodon.social/@nancycomics/115571736445576271

https://m29.us/@jucika/115571785897300451

#comics #IceSkating

\",{\"comics\":2650,\"iceskating\":2651},\"https://mastodon.sdf.org/tags/comics\",\"https://mastodon.sdf.org/tags/iceskating\",{},{},\"019a97fb-b804-7e90-9551-ccc9b49c8ee9\",\"https://mastodon.social/@nancycomics/115571736445576271\",[\"Date\",\"2025-11-18T17:20:45.000Z\"],{\"id\":2647,\"iri\":2658,\"type\":49,\"username\":2659,\"instanceHost\":2660,\"handleHost\":2660,\"handle\":2661,\"accountId\":-2,\"name\":2662,\"bioHtml\":2663,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":2664,\"headerUrl\":2665,\"inboxUrl\":2666,\"sharedInboxUrl\":2667,\"followersUrl\":2668,\"featuredUrl\":2669,\"fieldHtmls\":2670,\"emojis\":2673,\"tags\":2674,\"sensitive\":44,\"successorId\":-2,\"aliases\":2675,\"followeesCount\":2676,\"followersCount\":2677,\"postsCount\":10,\"url\":2619,\"updated\":2678,\"published\":2679,\"created\":2680,\"instance\":2681,\"followers\":2685,\"blockees\":2686,\"blockers\":2687},\"https://mastodon.sdf.org/users/ipxfong\",\"ipxfong\",\"mastodon.sdf.org\",\"@ipxfong@mastodon.sdf.org\",\"Rafa\",\"

I'm from the 70s. I'm married. I'm a Mahayana Buddhist some Chan some Zen some Vajrayana. I have ancestors from Spain and the Caribbean but I'm not Hispanic. I have ancestors from the Seneca nation but I'm not indigenous. I have ancestors from Ireland and France but I'm not European. I've never been to the place I was born. The borderlands are my home.

Entiendo Español y puedo imitarlo (más o menos).

\",\"https://mastodon.sdf.org/system/accounts/avatars/109/507/309/829/702/209/original/a1bdeec711ec942c.jpg\",\"https://mastodon.sdf.org/system/accounts/headers/109/507/309/829/702/209/original/d08aeb8cc7ecee6f.jpg\",\"https://mastodon.sdf.org/users/ipxfong/inbox\",\"https://mastodon.sdf.org/inbox\",\"https://mastodon.sdf.org/users/ipxfong/followers\",\"https://mastodon.sdf.org/users/ipxfong/collections/featured\",{\"Website\":2671,\"Space Capsule\":2672},\"https://ipxfong.sdf.org/\",\"gemini://sdf.org/ipxfong/\",{},{},[],334,548,[\"Date\",\"2025-03-12T01:41:36.630Z\"],[\"Date\",\"2022-12-13T00:00:00.000Z\"],[\"Date\",\"2025-03-12T01:41:36.630Z\"],{\"host\":2660,\"software\":81,\"softwareVersion\":2682,\"updated\":2683,\"created\":2684},\"4.1.25\",[\"Date\",\"2025-11-19T01:04:54.804Z\"],[\"Date\",\"2025-01-13T03:27:54.642Z\"],[],[],[],{\"id\":2654,\"url\":2655,\"title\":2689,\"siteName\":2690,\"type\":352,\"description\":2691,\"author\":-2,\"imageUrl\":2692,\"imageAlt\":-2,\"imageType\":124,\"imageWidth\":2693,\"imageHeight\":2694,\"creatorId\":-2,\"created\":2695,\"scraped\":2696,\"creator\":-2},\"NANCY COMICS BY BUSHMILLER (@nancycomics@mastodon.social)\",\"Mastodon\",\"Attached: 1 image\\n\\nNancy By Ernie Bushmiller \\nNovember 19,1941\",\"https://files.mastodon.social/media_attachments/files/115/571/734/999/895/921/original/d2b9d9487d26d2ad.png\",1536,1352,[\"Date\",\"2025-11-18T17:20:47.499Z\"],[\"Date\",\"2025-11-18T17:20:47.499Z\"],[],[],[],[],{\"slots\":2702,\"props\":2703},[],{\"href\":2704,\"internalHref\":2705,\"class\":6,\"children\":2706},\"https://mathstodon.xyz/@anna\",\"/@anna@mathstodon.xyz\",[\"Slot\",2707],{\"name\":9,\"id\":2708},107,{\"slots\":2710,\"props\":2711},[],{\"href\":2704,\"internalHref\":2705,\"children\":2712},[\"Slot\",2713],{\"name\":9,\"id\":2714},108,{\"slots\":2716,\"props\":2717},[],{\"href\":2718,\"internalHref\":2719,\"class\":22,\"children\":2720},\"https://mathstodon.xyz/@anna/115571842827438222\",\"/@anna@mathstodon.xyz/019a97fa-9608-7dd3-a9a1-26fc501ddc21\",[\"Slot\",2721],{\"name\":9,\"id\":2722},109,{\"slots\":2724,\"props\":2725},[],{\"value\":2726,\"locale\":30},[\"Date\",\"2025-11-18T17:19:31.000Z\"],{\"slots\":2728,\"props\":2729},[],{\"medium\":2730,\"class\":129},{\"postId\":2731,\"index\":10,\"type\":356,\"url\":2732,\"alt\":2733,\"width\":1310,\"height\":1311,\"thumbnailKey\":-2,\"sensitive\":44},\"019a97fa-9608-7dd3-a9a1-26fc501ddc21\",\"https://media.mathstodon.xyz/media_attachments/files/115/571/825/120/929/826/original/96161e71c9786825.jpeg\",\"The train station of Delft, platforms 3 and 4, featuring digital departure boards displaying train schedules and times. The right display shows the information as you would expect, while the left displays everything in a tiny, tiny font, but with the image of the train in the correct size. Also the railway company’s logo’s aspect ratio is wrong while everything else has the correct aspect ratio.\",{\"slots\":2735,\"props\":2736},[],{\"language\":30,\"post\":2737,\"class\":92,\"signedAccount\":-1},{\"id\":2731,\"iri\":2738,\"type\":37,\"visibility\":38,\"actorId\":2739,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":2740,\"language\":30,\"tags\":2741,\"emojis\":2748,\"sensitive\":44,\"repliesCount\":10,\"sharesCount\":10,\"quotesCount\":10,\"reactionsCounts\":2749,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":2718,\"updated\":2750,\"published\":2726,\"actor\":2751,\"link\":-2,\"sharedPost\":-2,\"replyTarget\":-2,\"mentions\":2784,\"media\":2785,\"shares\":2786,\"reactions\":2787},\"https://mathstodon.xyz/users/anna/statuses/115571842827438222\",\"0195909e-b6ab-7878-aa57-65de8b2abc41\",\"

Er…

#Treinleven #NS #NederlandseSpoorwegen #Train #Trains #Typography

\",{\"ns\":2742,\"train\":2743,\"trains\":2744,\"treinleven\":2745,\"typography\":2746,\"nederlandsespoorwegen\":2747},\"https://mathstodon.xyz/tags/ns\",\"https://mathstodon.xyz/tags/train\",\"https://mathstodon.xyz/tags/trains\",\"https://mathstodon.xyz/tags/treinleven\",\"https://mathstodon.xyz/tags/typography\",\"https://mathstodon.xyz/tags/nederlandsespoorwegen\",{},{},[\"Date\",\"2025-11-18T17:19:31.000Z\"],{\"id\":2739,\"iri\":2752,\"type\":49,\"username\":2753,\"instanceHost\":2754,\"handleHost\":2754,\"handle\":2755,\"accountId\":-2,\"name\":2756,\"bioHtml\":2757,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":2758,\"headerUrl\":2759,\"inboxUrl\":2760,\"sharedInboxUrl\":2761,\"followersUrl\":2762,\"featuredUrl\":2763,\"fieldHtmls\":2764,\"emojis\":2768,\"tags\":2769,\"sensitive\":44,\"successorId\":-2,\"aliases\":2770,\"followeesCount\":2772,\"followersCount\":2773,\"postsCount\":10,\"url\":2704,\"updated\":2774,\"published\":2775,\"created\":2776,\"instance\":2777,\"followers\":2781,\"blockees\":2782,\"blockers\":2783},\"https://mathstodon.xyz/users/anna\",\"anna\",\"mathstodon.xyz\",\"@anna@mathstodon.xyz\",\"Dr. Anna Latour\",\"

Computer Scientist. Assistant professor interested in counting and reasoning under uncertainty. Feminist. Trekkie. Traveller. LaTeX enthusiast.

Flirting allowed, but no lewdness, please.

Profile pic: a young, blonde woman sitting behind a desk with papers, pens and markers, looking up over her shoulder at the camera.

Banner pic: A big logo; a colourful geometric shape with the letters GHC next to it. I am sitting in front of it, between the G and the H.

\",\"https://media.mathstodon.xyz/accounts/avatars/109/305/584/849/433/952/original/065e9eeef1d51e6b.jpeg\",\"https://media.mathstodon.xyz/accounts/headers/109/305/584/849/433/952/original/bef90def6eb043ff.jpg\",\"https://mathstodon.xyz/users/anna/inbox\",\"https://mathstodon.xyz/inbox\",\"https://mathstodon.xyz/users/anna/followers\",\"https://mathstodon.xyz/users/anna/collections/featured\",{\"Website\":2765,\"dblp\":2766,\"dead bird\":2767},\"https://latower.github.io\",\"https://dblp.org/pid/204/8189\",\"https://twitter.com/aldlatour\",{},{},[2771],\"https://mastodon.social/users/aldlatour\",617,1387,[\"Date\",\"2025-03-13T17:47:55.441Z\"],[\"Date\",\"2022-11-08T00:00:00.000Z\"],[\"Date\",\"2025-03-13T17:47:55.441Z\"],{\"host\":2754,\"software\":81,\"softwareVersion\":2778,\"updated\":2779,\"created\":2780},\"4.5.0\",[\"Date\",\"2025-11-19T00:17:05.288Z\"],[\"Date\",\"2025-02-18T01:46:21.146Z\"],[],[],[],[],[2730],[],[],{\"slots\":2789,\"props\":2790},[],{\"href\":2791,\"internalHref\":2792,\"class\":6,\"children\":2793},\"https://mastodon.art/@clipart\",\"/@clipart@mastodon.art\",[\"Slot\",2794],{\"name\":9,\"id\":2795},110,{\"slots\":2797,\"props\":2798},[],{\"href\":2791,\"internalHref\":2792,\"children\":2799},[\"Slot\",2800],{\"name\":9,\"id\":2801},111,{\"slots\":2803,\"props\":2804},[],{\"href\":2805,\"internalHref\":2806,\"class\":22,\"children\":2807},\"https://mastodon.art/@clipart/115571834114770956\",\"/@clipart@mastodon.art/019a97fa-3c1b-7704-a103-7ef7bd6a8a9b\",[\"Slot\",2808],{\"name\":9,\"id\":2809},112,{\"slots\":2811,\"props\":2812},[],{\"value\":2813,\"locale\":30},[\"Date\",\"2025-11-18T17:17:18.000Z\"],{\"slots\":2815,\"props\":2816},[],{\"href\":2817,\"internalHref\":2818,\"children\":2819},\"https://friend.camp/@darius\",\"/@darius@friend.camp\",[\"Slot\",2820],{\"name\":9,\"id\":2821},113,{\"slots\":2823,\"props\":2824},[],{\"medium\":2825,\"class\":129},{\"postId\":2826,\"index\":10,\"type\":356,\"url\":2827,\"alt\":2828,\"width\":1834,\"height\":2829,\"thumbnailKey\":-2,\"sensitive\":44},\"019a97fa-3c1b-7704-a103-7ef7bd6a8a9b\",\"https://cdn.masto.host/mastodonart/media_attachments/files/115/571/834/011/916/933/original/e727cb0f9ea4e218.jpg\",\"Two satellites dwarfed by the immense emptiness of space. With their solar arrays extended, the trickle of sunlight they convert to electricity is enough to keep the satellites collecting telemetry and observational data well into the future. Long past the epoch of humans, the satellites continue monitoring the solar system, transmitting ones and zeroes to an abandoned research facility in Pasadena, California, where no one is there to receive it. Over the span of several centuries the two satellites slowly drift apart, the final relics of humankind silently slipping away into the unyielding solitude of deep space.\",609,{\"slots\":2831,\"props\":2832},[],{\"language\":30,\"post\":2833,\"class\":92,\"signedAccount\":-1},{\"id\":2826,\"iri\":2834,\"type\":37,\"visibility\":2835,\"actorId\":2836,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":2837,\"language\":30,\"tags\":2838,\"emojis\":2839,\"sensitive\":44,\"repliesCount\":10,\"sharesCount\":16,\"quotesCount\":10,\"reactionsCounts\":2840,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":2805,\"updated\":2841,\"published\":2813,\"actor\":2842,\"link\":-2,\"replyTarget\":-2,\"mentions\":2870,\"media\":2871,\"shares\":2872,\"reactions\":2873},\"https://mastodon.art/users/clipart/statuses/115571834114770956\",\"unlisted\",\"01958766-ece2-749a-896a-300a8a5c0cc6\",\"

POLARPLT.BMF

\",{},{},{},[\"Date\",\"2025-11-18T17:17:18.000Z\"],{\"id\":2836,\"iri\":2843,\"type\":2844,\"username\":2845,\"instanceHost\":2846,\"handleHost\":2846,\"handle\":2847,\"accountId\":-2,\"name\":2848,\"bioHtml\":2849,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":2850,\"headerUrl\":2851,\"inboxUrl\":2852,\"sharedInboxUrl\":2853,\"followersUrl\":2854,\"featuredUrl\":-2,\"fieldHtmls\":2855,\"emojis\":2857,\"tags\":2858,\"sensitive\":44,\"successorId\":-2,\"aliases\":2859,\"followeesCount\":10,\"followersCount\":2860,\"postsCount\":10,\"url\":2791,\"updated\":2861,\"published\":2862,\"created\":2863,\"instance\":2864,\"followers\":2867,\"blockees\":2868,\"blockers\":2869},\"https://mastodon.art/users/clipart\",\"Service\",\"clipart\",\"mastodon.art\",\"@clipart@mastodon.art\",\"Corel Gallery Clipart\",\"

In 1994 I bought a Corel Gallery CD-ROM with 10,000 clipart images. Nearly 30 years later those images haunt this ghost story bot. Art by Corel. Alt text by Mark Sample.

\",\"https://cdn.masto.host/mastodonart/accounts/avatars/113/408/876/096/943/845/original/f05c2291f8d29e94.png\",\"https://cdn.masto.host/mastodonart/accounts/headers/113/408/876/096/943/845/original/fd80296953334620.jpg\",\"https://mastodon.art/users/clipart/inbox\",\"https://mastodon.art/inbox\",\"https://mastodon.art/users/clipart/followers\",{\"botmaker\":2856},\"@samplereality@post.lurk.org\",{},{},[],2302,[\"Date\",\"2025-03-11T22:50:24.356Z\"],[\"Date\",\"2024-11-01T00:00:00.000Z\"],[\"Date\",\"2025-03-11T22:50:24.356Z\"],{\"host\":2846,\"software\":81,\"softwareVersion\":191,\"updated\":2865,\"created\":2866},[\"Date\",\"2025-11-15T20:53:11.164Z\"],[\"Date\",\"2024-12-13T09:08:49.319Z\"],[],[],[],[],[2825],[],[],{\"slots\":2875,\"props\":2876},[],{\"href\":2877,\"internalHref\":2878,\"class\":6,\"children\":2879},\"https://felesitas.cloud/@BananaGiko_cle\",\"/@BananaGiko_cle@felesitas.cloud\",[\"Slot\",2880],{\"name\":9,\"id\":2881},114,{\"slots\":2883,\"props\":2884},[],{\"href\":2877,\"internalHref\":2878,\"children\":2885},[\"Slot\",2886],{\"name\":9,\"id\":2887},115,{\"slots\":2889,\"props\":2890},[],{\"href\":2891,\"internalHref\":2892,\"class\":22,\"children\":2893},\"https://felesitas.cloud/@BananaGiko_cle/115571840476757759\",\"/@BananaGiko_cle@felesitas.cloud/019a97fa-105e-708c-83e9-9d60cc05167c\",[\"Slot\",2894],{\"name\":9,\"id\":2895},116,{\"slots\":2897,\"props\":2898},[],{\"value\":2899,\"locale\":30},[\"Date\",\"2025-11-18T17:18:55.000Z\"],{\"slots\":2901,\"props\":2902},[],{\"language\":30,\"post\":2903,\"class\":92,\"signedAccount\":-1},{\"id\":2904,\"iri\":2905,\"type\":37,\"visibility\":38,\"actorId\":2906,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":2907,\"language\":2908,\"tags\":2909,\"emojis\":2910,\"sensitive\":44,\"repliesCount\":10,\"sharesCount\":10,\"quotesCount\":10,\"reactionsCounts\":2911,\"reactionsCount\":10,\"linkId\":2912,\"linkUrl\":2913,\"url\":2891,\"updated\":2914,\"published\":2899,\"actor\":2915,\"link\":2948,\"sharedPost\":-2,\"replyTarget\":-2,\"mentions\":2958,\"media\":2959,\"shares\":2960,\"reactions\":2961},\"019a97fa-105e-708c-83e9-9d60cc05167c\",\"https://felesitas.cloud/users/BananaGiko_cle/statuses/115571840476757759\",\"0195d876-7d7c-7d82-b60c-c99e865445f9\",\"

【徹底解説】公共入札・公募仕事はすでにオワコンになっている理由〜仕事のない業者に喰われる自治体たち〜 https://youtu.be/6nltVVqOaAY?si=57hZ3TIvzNhOpS2i
これは完全に同意かもしれん

\",\"ja\",{},{},{},\"019a97fa-1051-72a9-835f-746f1471dac5\",\"https://www.youtube.com/watch?v=6nltVVqOaAY\",[\"Date\",\"2025-11-18T17:18:55.000Z\"],{\"id\":2906,\"iri\":2916,\"type\":49,\"username\":2917,\"instanceHost\":2918,\"handleHost\":2918,\"handle\":2919,\"accountId\":-2,\"name\":2920,\"bioHtml\":2921,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":2922,\"headerUrl\":2923,\"inboxUrl\":2924,\"sharedInboxUrl\":2925,\"followersUrl\":2926,\"featuredUrl\":2927,\"fieldHtmls\":2928,\"emojis\":2933,\"tags\":2934,\"sensitive\":44,\"successorId\":-2,\"aliases\":2935,\"followeesCount\":2936,\"followersCount\":2937,\"postsCount\":10,\"url\":2877,\"updated\":2938,\"published\":2939,\"created\":2940,\"instance\":2941,\"followers\":2945,\"blockees\":2946,\"blockers\":2947},\"https://felesitas.cloud/users/BananaGiko_cle\",\"BananaGiko_cle\",\"felesitas.cloud\",\"@BananaGiko_cle@felesitas.cloud\",\"雨宮凪沙/nagiko\",\"

felesitas.cloudのModです。
趣味で小説を書いています。
Favが煩いと思われた方は、仰って頂ければ意識してFavを減らしますので、お気軽にお声掛けください。
アイコンは依頼して描いていただいた秀嗣( @shuushi )さんのイラストを加工しています。

\",\"https://s3-ap-northeast-1.amazonaws.com/felesitas.cloud.storage/accounts/avatars/000/000/001/original/8037288fdb6a2ff0.jpg\",\"https://s3-ap-northeast-1.amazonaws.com/felesitas.cloud.storage/accounts/headers/000/000/001/original/407b1bbebd515690.jpg\",\"https://felesitas.cloud/users/BananaGiko_cle/inbox\",\"https://felesitas.cloud/inbox\",\"https://felesitas.cloud/users/BananaGiko_cle/followers\",\"https://felesitas.cloud/users/BananaGiko_cle/collections/featured\",{\"著作(短編小説)\":2929,\"ブログ\":2930,\"mail\":2931,\"VRchat\":2932},\"https://www.pixiv.net/users/9379158/novels\",\"https://seeker-nagiko.hatenadiary.com/\",\"nagiko.felesitas*protonmail.com\",\"https://vrchat.com/home/user/usr_f143f8ec-4950-464b-ab9a-d17b0b1d645b\",{},{},[],4341,2519,[\"Date\",\"2025-03-27T16:36:38.908Z\"],[\"Date\",\"2017-06-29T00:00:00.000Z\"],[\"Date\",\"2025-03-27T16:36:38.908Z\"],{\"host\":2918,\"software\":81,\"softwareVersion\":2942,\"updated\":2943,\"created\":2944},\"4.2.21\",[\"Date\",\"2025-08-31T06:27:22.220Z\"],[\"Date\",\"2025-03-27T16:36:38.716Z\"],[],[],[],{\"id\":2912,\"url\":2913,\"title\":2949,\"siteName\":2950,\"type\":2951,\"description\":2952,\"author\":-2,\"imageUrl\":2953,\"imageAlt\":-2,\"imageType\":356,\"imageWidth\":2954,\"imageHeight\":2955,\"creatorId\":-2,\"created\":2956,\"scraped\":2957,\"creator\":-2},\"【徹底解説】公共入札・公募仕事はすでにオワコンになっている理由〜仕事のない業者に喰われる自治体たち〜\",\"YouTube\",\"video.other\",\"【Voicyはほぼ毎日更新中!! ぜひどうぞ!】木下斉の今日はズバリいいますよ! https://voicy.jp/channel/2028癒着して行政のおいしい仕事を、、、なんて思われがちですが、公共入札・公募などを原則とするような自治体業務はすでに人手不足の世の中で人気が全くなくなり、オワコンになってきていま...\",\"https://i.ytimg.com/vi/6nltVVqOaAY/maxresdefault.jpg\",1280,720,[\"Date\",\"2025-11-18T17:18:59.008Z\"],[\"Date\",\"2025-11-18T17:18:59.008Z\"],[],[],[],[],{\"slots\":2963,\"props\":2964},[],{\"href\":2965,\"internalHref\":2966,\"class\":6,\"children\":2967},\"https://timetheft.social/@candle\",\"/@candle@timetheft.social\",[\"Slot\",2968],{\"name\":9,\"id\":2969},117,{\"slots\":2971,\"props\":2972},[],{\"href\":2965,\"internalHref\":2966,\"children\":2973},[\"Slot\",2974],{\"name\":9,\"id\":2975},118,{\"slots\":2977,\"props\":2978},[],{\"href\":2979,\"internalHref\":2980,\"class\":22,\"children\":2981},\"https://timetheft.social/@candle/115571838007362037\",\"/@candle@timetheft.social/019a97fb-4d74-713c-b6e8-35806f3f0043\",[\"Slot\",2982],{\"name\":9,\"id\":2983},119,{\"slots\":2985,\"props\":2986},[],{\"value\":2987,\"locale\":30},[\"Date\",\"2025-11-18T17:18:17.000Z\"],{\"slots\":2989,\"props\":2990},[],{\"language\":30,\"post\":2991,\"class\":92,\"signedAccount\":-1},{\"id\":2992,\"iri\":2993,\"type\":37,\"visibility\":38,\"actorId\":2994,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":2995,\"language\":30,\"tags\":2996,\"emojis\":2997,\"sensitive\":44,\"repliesCount\":10,\"sharesCount\":10,\"quotesCount\":10,\"reactionsCounts\":2998,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":2979,\"updated\":2999,\"published\":2987,\"actor\":3000,\"link\":-2,\"sharedPost\":-2,\"replyTarget\":-2,\"mentions\":3032,\"media\":3033,\"shares\":3034,\"reactions\":3035},\"019a97fb-4d74-713c-b6e8-35806f3f0043\",\"https://timetheft.social/users/candle/statuses/115571838007362037\",\"01960a72-a564-7f7b-9afd-23451b4df654\",\"

they should make a game engine i like using

\",{},{},{},[\"Date\",\"2025-11-18T17:18:17.000Z\"],{\"id\":2994,\"iri\":3001,\"type\":49,\"username\":3002,\"instanceHost\":3003,\"handleHost\":3003,\"handle\":3004,\"accountId\":-2,\"name\":3005,\"bioHtml\":3006,\"automaticallyApprovesFollowers\":44,\"avatarUrl\":3007,\"headerUrl\":3008,\"inboxUrl\":3009,\"sharedInboxUrl\":3010,\"followersUrl\":3011,\"featuredUrl\":-2,\"fieldHtmls\":3012,\"emojis\":3017,\"tags\":3018,\"sensitive\":44,\"successorId\":-2,\"aliases\":3019,\"followeesCount\":2269,\"followersCount\":3020,\"postsCount\":10,\"url\":2965,\"updated\":3021,\"published\":3022,\"created\":3023,\"instance\":3024,\"followers\":3029,\"blockees\":3030,\"blockers\":3031},\"https://timetheft.social/users/candle\",\"candle\",\"timetheft.social\",\"@candle@timetheft.social\",\"candle 🕔\",\"

internet friends enthusiast. average zone, domino club, tool making enjoyer

locked but casual requests welcome

\",\"https://sb-timetheft.b-cdn.net/accounts/avatars/108/955/476/911/212/752/original/322742e74d6ca198.png\",\"https://sb-timetheft.b-cdn.net/accounts/headers/108/955/476/911/212/752/original/e558142f9f7c2a8f.gif\",\"https://timetheft.social/users/candle/inbox\",\"https://timetheft.social/inbox\",\"https://timetheft.social/users/candle/followers\",{\"website\":3013,\"pronouns\":3014,\"location\":3015,\"domino club\":3016},\"https://kool.tools\",\"they/them\",\"galicia\",\"https://domino.gallery\",{},{},[],171,[\"Date\",\"2025-04-06T09:33:27.782Z\"],[\"Date\",\"2022-09-07T00:00:00.000Z\"],[\"Date\",\"2025-04-06T09:33:27.782Z\"],{\"host\":3003,\"software\":3025,\"softwareVersion\":3026,\"updated\":3027,\"created\":3028},\"hometown\",\"4.2.17+hometown-1.1.2\",[\"Date\",\"2025-08-08T16:47:21.834Z\"],[\"Date\",\"2025-04-06T09:33:26.797Z\"],[],[],[],[],[],[],[],{\"slots\":3037,\"props\":3038},[],{\"href\":3039,\"internalHref\":3040,\"class\":6,\"children\":3041},\"https://urbanists.social/@markstos\",\"/@markstos@urbanists.social\",[\"Slot\",3042],{\"name\":9,\"id\":3043},120,{\"slots\":3045,\"props\":3046},[],{\"href\":3039,\"internalHref\":3040,\"children\":3047},[\"Slot\",3048],{\"name\":9,\"id\":3049},121,{\"slots\":3051,\"props\":3052},[],{\"href\":3053,\"internalHref\":3054,\"class\":22,\"children\":3055},\"https://urbanists.social/@markstos/115571835245812392\",\"/@markstos@urbanists.social/019a9950-9feb-7e9b-9677-f2e6fa3a5eca\",[\"Slot\",3056],{\"name\":9,\"id\":3057},122,{\"slots\":3059,\"props\":3060},[],{\"value\":3061,\"locale\":30},[\"Date\",\"2025-11-18T17:17:35.000Z\"],{\"slots\":3063,\"props\":3064},[],{\"medium\":3065,\"class\":129},{\"postId\":3066,\"index\":10,\"type\":124,\"url\":3067,\"alt\":3068,\"width\":3069,\"height\":3070,\"thumbnailKey\":-2,\"sensitive\":44},\"019a9950-9feb-7e9b-9677-f2e6fa3a5eca\",\"https://cdn.masto.host/urbanistssocial/media_attachments/files/115/571/835/167/612/797/original/78456751608617a6.png\",\"Screenshot of Lemmy comment\\n\\nQuoted text: What is my generation running from?\\nReply: if they are serious about cardio: clown dentists.\",1179,1004,{\"slots\":3072,\"props\":3073},[],{\"language\":30,\"post\":3074,\"class\":92,\"signedAccount\":-1},{\"id\":3066,\"iri\":3075,\"type\":37,\"visibility\":38,\"actorId\":3076,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":3077,\"language\":30,\"tags\":3078,\"emojis\":3080,\"sensitive\":44,\"repliesCount\":10,\"sharesCount\":10,\"quotesCount\":10,\"reactionsCounts\":3081,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":3053,\"updated\":3082,\"published\":3061,\"actor\":3083,\"link\":-2,\"sharedPost\":-2,\"replyTarget\":-2,\"mentions\":3115,\"media\":3116,\"shares\":3117,\"reactions\":3118},\"https://urbanists.social/users/markstos/statuses/115571835245812392\",\"0195ce90-a860-765c-a2ea-4bab69184b9b\",\"

Clown Dentists.

#running

\",{\"running\":3079},\"https://urbanists.social/tags/Running\",{},{},[\"Date\",\"2025-11-18T17:17:35.000Z\"],{\"id\":3076,\"iri\":3084,\"type\":49,\"username\":3085,\"instanceHost\":3086,\"handleHost\":3086,\"handle\":3087,\"accountId\":-2,\"name\":3088,\"bioHtml\":3089,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":3090,\"headerUrl\":3091,\"inboxUrl\":3092,\"sharedInboxUrl\":3093,\"followersUrl\":3094,\"featuredUrl\":-2,\"fieldHtmls\":3095,\"emojis\":3100,\"tags\":3101,\"sensitive\":44,\"successorId\":-2,\"aliases\":3102,\"followeesCount\":3103,\"followersCount\":3104,\"postsCount\":10,\"url\":3039,\"updated\":3105,\"published\":3106,\"created\":3107,\"instance\":3108,\"followers\":3112,\"blockees\":3113,\"blockers\":3114},\"https://urbanists.social/users/markstos\",\"markstos\",\"urbanists.social\",\"@markstos@urbanists.social\",\"Mark Stosberg\",\"

Interests include #TranspoEquity, #UltraRunning, #BloomingtonIN, #DevOps, #UrbanPlanning, #Mapping, #SelfHosting, #HelixEditor

Boosting questions and helpful or actionable posts. Let’s build better together.

\",\"https://cdn.masto.host/urbanistssocial/accounts/avatars/109/535/000/336/856/574/original/2163d8422e98b617.jpg\",\"https://cdn.masto.host/urbanistssocial/accounts/headers/109/535/000/336/856/574/original/2a9d19ba3e891976.jpg\",\"https://urbanists.social/users/markstos/inbox\",\"https://urbanists.social/inbox\",\"https://urbanists.social/users/markstos/followers\",{\"Blog: Bikes, Mapping, Linux, Keyboards\":3096,\"Walk Potential\":3097,\"Sidewalk Priority Mapping\":3098,\"Newsletters\":3099},\"https://mark.stosberg.com\",\"https://gitlab.com/markstos/walk-potential\",\"https://gitlab.com/markstos/sidewalk-priority-map\",\"Mapping, Tech, Plant-powered adventures\",{},{},[],476,757,[\"Date\",\"2025-03-25T18:29:01.666Z\"],[\"Date\",\"2022-12-18T00:00:00.000Z\"],[\"Date\",\"2025-03-25T18:29:01.666Z\"],{\"host\":3086,\"software\":81,\"softwareVersion\":3109,\"updated\":3110,\"created\":3111},\"4.4.8\",[\"Date\",\"2025-11-04T09:04:37.565Z\"],[\"Date\",\"2024-12-13T09:12:30.898Z\"],[],[],[],[],[3065],[],[],{\"slots\":3120,\"props\":3121},[],{\"href\":3122,\"internalHref\":3123,\"class\":6,\"children\":3124},\"https://socel.net/@catandgirl\",\"/@catandgirl@socel.net\",[\"Slot\",3125],{\"name\":9,\"id\":3126},123,{\"slots\":3128,\"props\":3129},[],{\"href\":3122,\"internalHref\":3123,\"children\":3130},[\"Slot\",3131],{\"name\":9,\"id\":3132},124,{\"slots\":3134,\"props\":3135},[],{\"href\":3136,\"internalHref\":3137,\"class\":22,\"children\":3138},\"https://socel.net/@catandgirl/115571828094922327\",\"/@catandgirl@socel.net/019a97f8-7306-7be3-a980-f3612a9adcfc\",[\"Slot\",3139],{\"name\":9,\"id\":3140},125,{\"slots\":3142,\"props\":3143},[],{\"value\":3144,\"locale\":30},[\"Date\",\"2025-11-18T17:15:46.000Z\"],{\"slots\":3146,\"props\":3147},[],{\"href\":2817,\"internalHref\":2818,\"children\":3148},[\"Slot\",3149],{\"name\":9,\"id\":3150},126,{\"slots\":3152,\"props\":3153},[],{\"medium\":3154,\"class\":129},{\"postId\":3155,\"index\":10,\"type\":124,\"url\":3156,\"alt\":3157,\"width\":3158,\"height\":3159,\"thumbnailKey\":-2,\"sensitive\":44},\"019a97f8-7306-7be3-a980-f3612a9adcfc\",\"https://cdn.masto.host/socelnet/media_attachments/files/115/571/825/353/047/025/original/8f052d837d03f21e.png\",\"\\\"I love the ice cream factory!\\\" Says Girl, walking out with a towering ice cream cone. \\\"It's REAL - the ice cream - and the people who make the ice cream - and the people who enjoy the ice cream. And management is a thin layer of abstraction working with money and numbers to keep the ice cream factory making ice cream.\\\" \\\"Did you hear about the whipped cream factory that merged with the sprinkles warehouse\\\"\\\" asks Cat. Girl frets. \\\"And when a boss works their way up from the factory floor - they know ICE CREAM. But when the boss comes from upper management at a chain go privatized hospitals - they know MANAGEMENT!\\\" \\\"They had to work SUNDAES,\\\" says Cat. \\\"And then the management and finance and the numbers that need to go up,\\\" continues Girl, \\\"are the REAL important things.\\\" \\\"Until the factory was shut down,\\\" grimaces Cat. \\\"And the business is a fungible abstraction whose primary purpose is - not to make ice cream - but to move numbers,\\\" says Girl. \\\"And the company reconstituted itself as a real estate trust\\\" says Cat as his ice cream melts. \\\"Anyway they all lost their pensions.\\\" Girl looks at her melted ice cream. \\\"I thought this tasted like real estate.\\\"\",780,1041,{\"slots\":3161,\"props\":3162},[],{\"language\":30,\"post\":3163,\"class\":92,\"signedAccount\":-1},{\"id\":3155,\"iri\":3164,\"type\":37,\"visibility\":38,\"actorId\":3165,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":3166,\"language\":30,\"tags\":3167,\"emojis\":3168,\"sensitive\":44,\"repliesCount\":10,\"sharesCount\":16,\"quotesCount\":10,\"reactionsCounts\":3169,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":3136,\"updated\":3170,\"published\":3144,\"actor\":3171,\"link\":-2,\"replyTarget\":-2,\"mentions\":3199,\"media\":3200,\"shares\":3201,\"reactions\":3202},\"https://socel.net/users/catandgirl/statuses/115571828094922327\",\"01973c96-5fec-7857-a511-e2193dc9715d\",\"

Those clowns at the ice cream factory

\",{},{},{},[\"Date\",\"2025-11-18T17:15:46.000Z\"],{\"id\":3165,\"iri\":3172,\"type\":49,\"username\":3173,\"instanceHost\":3174,\"handleHost\":3174,\"handle\":3175,\"accountId\":-2,\"name\":3176,\"bioHtml\":3177,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":3178,\"headerUrl\":3179,\"inboxUrl\":3180,\"sharedInboxUrl\":3181,\"followersUrl\":3182,\"featuredUrl\":3183,\"fieldHtmls\":3184,\"emojis\":3186,\"tags\":3187,\"sensitive\":44,\"successorId\":-2,\"aliases\":3188,\"followeesCount\":1114,\"followersCount\":3189,\"postsCount\":10,\"url\":3122,\"updated\":3190,\"published\":3191,\"created\":3192,\"instance\":3193,\"followers\":3196,\"blockees\":3197,\"blockers\":3198},\"https://socel.net/users/catandgirl\",\"catandgirl\",\"socel.net\",\"@catandgirl@socel.net\",\"Cat and Girl\",\"

Cat and Girl is a cartoon about how we are all going to die some day that has been running online ad-free since 1999. Hi, my name is Dorothy, and I'm the sucker who makes it.

\",\"https://cdn.masto.host/socelnet/accounts/avatars/109/247/923/165/972/642/original/fe2f7ea0f0cf56bc.jpg\",\"https://cdn.masto.host/socelnet/accounts/headers/109/247/923/165/972/642/original/fda877a549b00cd5.gif\",\"https://socel.net/users/catandgirl/inbox\",\"https://socel.net/inbox\",\"https://socel.net/users/catandgirl/followers\",\"https://socel.net/users/catandgirl/collections/featured\",{\"Website!\":3185},\"www.catandgirl.com\",{},{},[],3087,[\"Date\",\"2025-06-04T20:16:17.390Z\"],[\"Date\",\"2022-10-28T00:00:00.000Z\"],[\"Date\",\"2025-06-04T20:16:17.390Z\"],{\"host\":3174,\"software\":81,\"softwareVersion\":2778,\"updated\":3194,\"created\":3195},[\"Date\",\"2025-11-10T01:09:26.919Z\"],[\"Date\",\"2025-03-17T14:58:01.308Z\"],[],[],[],[],[3154],[],[],{\"slots\":3204,\"props\":3205},[],{\"href\":3206,\"internalHref\":3207,\"class\":6,\"children\":3208},\"https://masto.hackers.town/@Wrewdison\",\"/@Wrewdison@masto.hackers.town\",[\"Slot\",3209],{\"name\":9,\"id\":3210},127,{\"slots\":3212,\"props\":3213},[],{\"href\":3206,\"internalHref\":3207,\"children\":3214},[\"Slot\",3215],{\"name\":9,\"id\":1634},{\"slots\":3217,\"props\":3218},[],{\"href\":3219,\"internalHref\":3220,\"class\":22,\"children\":3221},\"https://masto.hackers.town/@Wrewdison/115571690911332888\",\"/@Wrewdison@masto.hackers.town/019a97f8-03bc-7cb6-89b5-e6c779bda405\",[\"Slot\",3222],{\"name\":9,\"id\":3223},129,{\"slots\":3225,\"props\":3226},[],{\"value\":3227,\"locale\":30},[\"Date\",\"2025-11-18T16:40:53.000Z\"],{\"slots\":3229,\"props\":3230},[],{\"href\":394,\"internalHref\":395,\"children\":3231},[\"Slot\",3232],{\"name\":9,\"id\":3233},130,{\"slots\":3235,\"props\":3236},[],{\"language\":30,\"post\":3237,\"class\":92,\"signedAccount\":-1},{\"id\":3238,\"iri\":3239,\"type\":37,\"visibility\":38,\"actorId\":3240,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":3241,\"language\":30,\"tags\":3242,\"emojis\":3244,\"sensitive\":44,\"repliesCount\":10,\"sharesCount\":25,\"quotesCount\":10,\"reactionsCounts\":3245,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":3219,\"updated\":3246,\"published\":3227,\"actor\":3247,\"link\":-2,\"replyTarget\":-2,\"mentions\":3281,\"media\":3282,\"shares\":3283,\"reactions\":3284},\"019a97f8-03bc-7cb6-89b5-e6c779bda405\",\"https://masto.hackers.town/users/Wrewdison/statuses/115571690911332888\",\"019779ae-a6cd-7868-8264-cbbd47c5884a\",\"

Today is a good day to…. #HackThePlanet

\",{\"hacktheplanet\":3243},\"https://masto.hackers.town/tags/hacktheplanet\",{},{},[\"Date\",\"2025-11-18T16:40:53.000Z\"],{\"id\":3240,\"iri\":3248,\"type\":49,\"username\":3249,\"instanceHost\":3250,\"handleHost\":3250,\"handle\":3251,\"accountId\":-2,\"name\":3252,\"bioHtml\":3253,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":3254,\"headerUrl\":3255,\"inboxUrl\":3256,\"sharedInboxUrl\":3257,\"followersUrl\":3258,\"featuredUrl\":3259,\"fieldHtmls\":3260,\"emojis\":3265,\"tags\":3266,\"sensitive\":44,\"successorId\":-2,\"aliases\":3269,\"followeesCount\":2275,\"followersCount\":3271,\"postsCount\":10,\"url\":3206,\"updated\":3272,\"published\":3273,\"created\":3274,\"instance\":3275,\"followers\":3278,\"blockees\":3279,\"blockers\":3280},\"https://masto.hackers.town/users/Wrewdison\",\"Wrewdison\",\"masto.hackers.town\",\"@Wrewdison@masto.hackers.town\",\"The Wrew (Wrew of the Year)\",\"

Welcome to Wrewtopia - stay as long as you’d like, but don’t be a dick or you’ll be removed by management.

Governor of #Raxxla.

There’s a planet in a video game named after me. Some people were annoyed that this happened. I still giggle.

Identified as Malware by Splunk.

Resist fascism. Punch Nazis. Don’t accept a hostile takeover.

Parent. Trying not to suck at it.

Posts self-destruct after two weeks.

#NoBots

\",\"https://cdn.masto.host/mastohackerstown/accounts/avatars/114/326/400/321/363/795/original/7152dc2837f3698c.png\",\"https://cdn.masto.host/mastohackerstown/accounts/headers/114/326/400/321/363/795/original/853e9c77c676fb7f.jpeg\",\"https://masto.hackers.town/users/Wrewdison/inbox\",\"https://masto.hackers.town/inbox\",\"https://masto.hackers.town/users/Wrewdison/followers\",\"https://masto.hackers.town/users/Wrewdison/collections/featured\",{\"Wrewtopia\":3261,\"Me\":3262,\"Dad Jokes\":3263,\"Finger\":3264},\"https://wrewtopia.com\",\"Cyberpunk Pirate Hacker Dad\",\"Rad Jokes\",\"wrewdison@happynetbox.com\",{},{\"#nobots\":3267,\"#raxxla\":3268},\"https://masto.hackers.town/tags/nobots\",\"https://masto.hackers.town/tags/raxxla\",[3270],\"https://hackers.town/users/Wrewdison\",376,[\"Date\",\"2025-06-16T16:59:38.576Z\"],[\"Date\",\"2025-04-12T00:00:00.000Z\"],[\"Date\",\"2025-06-16T16:59:38.576Z\"],{\"host\":3250,\"software\":81,\"softwareVersion\":191,\"updated\":3276,\"created\":3277},[\"Date\",\"2025-11-19T03:29:18.532Z\"],[\"Date\",\"2025-04-12T19:54:23.793Z\"],[],[],[],[],[],[],[],{\"slots\":3286,\"props\":3287},[],{\"href\":3288,\"internalHref\":3289,\"class\":6,\"children\":3290},\"https://misskey.io/@hiragi2517\",\"/@hiragi2517@misskey.io\",[\"Slot\",3291],{\"name\":9,\"id\":3292},131,{\"slots\":3294,\"props\":3295},[],{\"href\":3288,\"internalHref\":3289,\"children\":3296},[\"Slot\",3297],{\"name\":9,\"id\":3298},132,{\"slots\":3300,\"props\":3301},[],{\"href\":3302,\"internalHref\":3303,\"class\":22,\"children\":3304},\"https://misskey.io/notes/af8egrrxboz007lu\",\"/@hiragi2517@misskey.io/019a98d7-f8c6-7914-ae0c-8c2883abeecf\",[\"Slot\",3305],{\"name\":9,\"id\":3306},133,{\"slots\":3308,\"props\":3309},[],{\"value\":3310,\"locale\":30},[\"Date\",\"2025-11-18T17:16:42.525Z\"],{\"slots\":3312,\"props\":3313},[],{\"language\":30,\"post\":3314,\"class\":92,\"signedAccount\":-1},{\"id\":3315,\"iri\":3302,\"type\":37,\"visibility\":38,\"actorId\":3316,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":3317,\"language\":-2,\"tags\":3318,\"emojis\":3319,\"sensitive\":44,\"repliesCount\":10,\"sharesCount\":10,\"quotesCount\":10,\"reactionsCounts\":3322,\"reactionsCount\":16,\"linkId\":-2,\"linkUrl\":-2,\"url\":-2,\"updated\":3323,\"published\":3310,\"actor\":3324,\"link\":-2,\"sharedPost\":-2,\"replyTarget\":-2,\"mentions\":3364,\"media\":3365,\"shares\":3366,\"reactions\":3367},\"019a98d7-f8c6-7914-ae0c-8c2883abeecf\",\"01954c50-5af8-7fc8-8909-409cd47250e8\",\"

​:oyasumisskey:​​:aramaki_futon:​

\",{},{\":oyasumisskey:\":3320,\":aramaki_futon:\":3321},\"https://media.misskeyusercontent.com/misskey/f75cd6a7-61f9-4e72-b47f-9ce0b5aa8602.png\",\"https://media.misskeyusercontent.com/io/36447306-31de-4fbf-a92b-e95f6411f98a.png\",{\"01961b20-f871-7cdf-8be2-99a9a72147a2\":16},[\"Date\",\"2025-11-18T17:16:42.525Z\"],{\"id\":3316,\"iri\":3325,\"type\":49,\"username\":3326,\"instanceHost\":680,\"handleHost\":680,\"handle\":3327,\"accountId\":-2,\"name\":3328,\"bioHtml\":3329,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":3330,\"headerUrl\":3331,\"inboxUrl\":3332,\"sharedInboxUrl\":686,\"followersUrl\":3333,\"featuredUrl\":-2,\"fieldHtmls\":3334,\"emojis\":3337,\"tags\":3354,\"sensitive\":44,\"successorId\":-2,\"aliases\":3355,\"followeesCount\":10,\"followersCount\":10,\"postsCount\":10,\"url\":3288,\"updated\":3356,\"published\":-2,\"created\":3357,\"instance\":3358,\"followers\":3361,\"blockees\":3362,\"blockers\":3363},\"https://misskey.io/users/9dffvdeyn0\",\"hiragi2517\",\"@hiragi2517@misskey.io\",\"柊芳樹:verify:\",\"

​:watasi_ha_nara_ha:​​:role_naraha:​
​:blobcatrainbow:​​:usapoyo_dance_gaming:​┗( ´ '-' ` )┛​:peroro_sama:​​:polarbear_fire:​┏( '-' )┓​:ablobcatheadbangfastultra:​​:blobcat_mudamudamuda:​┗( 'ᵕ' )┛​:murakamisan_tutinoko_wobble:​​:ota_bounce:​┏( ´ '-' ` )┓ 
R-18​:nsfw:​も関係なくバンバンノート&リノートします。
突然
​:tuuti_hakai:​行為を及ぼす可能性があります。
基本はフォローウェルカムですが、怪しそうな垢は一度フォロワーを解除します。
予めご了承くださいますようお願い申し上げます。


Skebは常時
​:irai_bosyuu_tyuu:​です!!!!!!!!!
​:skeb:​ https://skeb.jp/@hiragi2517
​:pixiv_icon:​ https://www.pixiv.net/users/13969677

\",\"https://media.misskeyusercontent.com/io/71b383ce-defa-493b-afb0-f8abf71318c5.png?sensitive=true\",\"https://media.misskeyusercontent.com/misskey/42bd21e8-4d66-4c58-9b0f-b155c85e6eea.png\",\"https://misskey.io/users/9dffvdeyn0/inbox\",\"https://misskey.io/users/9dffvdeyn0/followers\",{\":pixiv_icon:\":3335,\":skeb:\":3336},\"https://www.pixiv.net/users/13969677\",\"https://skeb.jp/@hiragi2517\",{\":nsfw:\":3338,\":skeb:\":3339,\":verify:\":3340,\":ota_bounce:\":3341,\":pixiv_icon:\":3342,\":peroro_sama:\":3343,\":role_naraha:\":3344,\":tuuti_hakai:\":3345,\":blobcatrainbow:\":3346,\":polarbear_fire:\":3347,\":irai_bosyuu_tyuu:\":3348,\":watasi_ha_nara_ha:\":3349,\":blobcat_mudamudamuda:\":3350,\":usapoyo_dance_gaming:\":3351,\":ablobcatheadbangfastultra:\":3352,\":murakamisan_tutinoko_wobble:\":3353},\"https://media.misskeyusercontent.com/misskey/webpublic-f376a594-1159-42c2-b7de-8676f89d7db3.png\",\"https://media.misskeyusercontent.com/misskey/03e01164-c5f3-42e4-9c70-1619fef7f076.png\",\"https://media.misskeyusercontent.com/emoji/verify.gif\",\"https://media.misskeyusercontent.com/io/8cf1b35d-93b0-4691-9974-5dd53d83d94c.gif\",\"https://media.misskeyusercontent.com/emoji/pixiv_icon.png\",\"https://media.misskeyusercontent.com/misskey/761a28c4-6702-4844-a63b-c6b4a345e981.gif\",\"https://media.misskeyusercontent.com/io/7b744ef1-c8fc-47cd-94e5-6347ea9abe46.png\",\"https://media.misskeyusercontent.com/misskey/20c2c4d1-11ce-4f08-a782-e27f23d54b3b.png\",\"https://media.misskeyusercontent.com/io/d20fe895-87e2-4f19-a273-25aec37b2258.gif\",\"https://media.misskeyusercontent.com/emoji/polarbear_fire.gif\",\"https://media.misskeyusercontent.com/io/89d453e3-4b9e-4ac2-b14e-3f2f40d20ab2.gif\",\"https://media.misskeyusercontent.com/misskey/481a661a-5350-43d6-a446-5623c7bea114.png\",\"https://media.misskeyusercontent.com/emoji/blobcat_mudamudamuda.apng\",\"https://media.misskeyusercontent.com/io/9f76f0ea-4717-46c8-bbb3-1f7f3d69cad5.gif\",\"https://media.misskeyusercontent.com/emoji/ablobcatheadbangfastultra.gif\",\"https://media.misskeyusercontent.com/io/d3bc4ac6-395c-4393-8c24-9cb190bdc2e0.gif\",{},[],[\"Date\",\"2025-02-28T11:28:09.463Z\"],[\"Date\",\"2025-02-28T11:28:09.463Z\"],{\"host\":680,\"software\":699,\"softwareVersion\":700,\"updated\":3359,\"created\":3360},[\"Date\",\"2025-11-19T02:13:27.987Z\"],[\"Date\",\"2024-12-13T09:14:04.772Z\"],[],[],[],[],[],[],[],{\"slots\":3369,\"props\":3370},[],{\"href\":3371,\"internalHref\":3372,\"class\":6,\"children\":3373},\"https://mastodon.blaede.family/@cassidy\",\"/@cassidy@blaede.family\",[\"Slot\",3374],{\"name\":9,\"id\":3375},134,{\"slots\":3377,\"props\":3378},[],{\"href\":3371,\"internalHref\":3372,\"children\":3379},[\"Slot\",3380],{\"name\":9,\"id\":3381},135,{\"slots\":3383,\"props\":3384},[],{\"href\":3385,\"internalHref\":3386,\"class\":22,\"children\":3387},\"https://mastodon.blaede.family/@cassidy/115571831137223993\",\"/@cassidy@blaede.family/019a9869-d894-795d-99d3-edc1574f58a9\",[\"Slot\",3388],{\"name\":9,\"id\":3389},136,{\"slots\":3391,\"props\":3392},[],{\"value\":3393,\"locale\":30},[\"Date\",\"2025-11-18T17:16:32.000Z\"],{\"slots\":3395,\"props\":3396},[],{\"language\":30,\"post\":3397,\"class\":92,\"signedAccount\":-1},{\"id\":3398,\"iri\":3399,\"type\":37,\"visibility\":38,\"actorId\":3400,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":3401,\"language\":30,\"tags\":3402,\"emojis\":3406,\"sensitive\":44,\"repliesCount\":10,\"sharesCount\":16,\"quotesCount\":10,\"reactionsCounts\":3407,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":3385,\"updated\":3408,\"published\":3393,\"actor\":3409,\"link\":-2,\"sharedPost\":-2,\"replyTarget\":-2,\"mentions\":3448,\"media\":3470,\"shares\":3471,\"reactions\":3472},\"019a9869-d894-795d-99d3-edc1574f58a9\",\"https://mastodon.blaede.family/users/cassidy/statuses/115571831137223993\",\"0195bcf9-c6d3-7430-90e3-523acc8a8853\",\"

Okay it’s probably obvious/I’m over-thinking it, but I really like that every word in the @roost.tools acronym carries weight.

Here’s what ROOST stands for: (🧵)

#ROOST #TrustAndSafety #OpenSource

\",{\"roost\":3403,\"opensource\":3404,\"trustandsafety\":3405},\"https://mastodon.blaede.family/tags/roost\",\"https://mastodon.blaede.family/tags/opensource\",\"https://mastodon.blaede.family/tags/trustandsafety\",{},{},[\"Date\",\"2025-11-18T17:18:58.000Z\"],{\"id\":3400,\"iri\":3410,\"type\":49,\"username\":3411,\"instanceHost\":3412,\"handleHost\":3413,\"handle\":3414,\"accountId\":-2,\"name\":3415,\"bioHtml\":3416,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":3417,\"headerUrl\":3418,\"inboxUrl\":3419,\"sharedInboxUrl\":3420,\"followersUrl\":3421,\"featuredUrl\":3422,\"fieldHtmls\":3423,\"emojis\":3427,\"tags\":3432,\"sensitive\":44,\"successorId\":-2,\"aliases\":3433,\"followeesCount\":3436,\"followersCount\":3437,\"postsCount\":10,\"url\":3371,\"updated\":3438,\"published\":3439,\"created\":3440,\"instance\":3441,\"followers\":3445,\"blockees\":3446,\"blockers\":3447},\"https://mastodon.blaede.family/users/cassidy\",\"cassidy\",\"mastodon.blaede.family\",\"blaede.family\",\"@cassidy@blaede.family\",\"Cassidy James :gg: :fh:\",\"

Building communities and useful, usable, tech for good. Looking for work!

:gnome: @gnome Foundation Director
:flathub: @flathub contributor

Previously: co-founder & CXO at elementary OS, UX architect at System76, Community Architect/Experience Lead at Endless Access

Still an emo kid at heart 🖤

\",\"https://cdn.masto.host/mastodonblaedefamily/accounts/avatars/109/633/075/848/386/538/original/51040302b3045b1b.jpg\",\"https://cdn.masto.host/mastodonblaedefamily/accounts/headers/109/633/075/848/386/538/original/0f3547f528280dda.jpg\",\"https://mastodon.blaede.family/users/cassidy/inbox\",\"https://mastodon.blaede.family/inbox\",\"https://mastodon.blaede.family/users/cassidy/followers\",\"https://mastodon.blaede.family/users/cassidy/collections/featured\",{\"Website, blog, links\":3424,\"Pronouns\":434,\"Location\":3425,\"LinkedIn\":3426},\"https://cassidyjames.com\",\"Denver, CO, USA\",\"https://linkedin.com/in/cassidy-james-blaede\",{\":fh:\":3428,\":gg:\":3429,\":gnome:\":3430,\":flathub:\":3431},\"https://cdn.masto.host/mastodonblaedefamily/custom_emojis/images/000/089/424/original/1855bfcc37fa9cb7.png\",\"https://cdn.masto.host/mastodonblaedefamily/custom_emojis/images/000/024/127/original/d9f6adf2f4e2706b.png\",\"https://cdn.masto.host/mastodonblaedefamily/custom_emojis/images/000/012/239/original/8801c911f2906e8e.png\",\"https://cdn.masto.host/mastodonblaedefamily/custom_emojis/images/000/089/423/original/b95bca71f2ea68ff.png\",{},[3434,3435],\"https://hci.social/users/cassidyjames\",\"https://mastodon.social/users/cassidyjames\",2336,5346,[\"Date\",\"2025-03-22T08:30:40.852Z\"],[\"Date\",\"2023-01-04T00:00:00.000Z\"],[\"Date\",\"2025-03-22T08:30:40.852Z\"],{\"host\":3412,\"software\":81,\"softwareVersion\":3442,\"updated\":3443,\"created\":3444},\"4.4.3\",[\"Date\",\"2025-08-21T10:40:37.628Z\"],[\"Date\",\"2025-03-22T08:30:38.111Z\"],[],[],[],[3449],{\"postId\":3398,\"actorId\":3450,\"actor\":3451},\"019a9869-e84d-7983-b279-0a64abd0774b\",{\"id\":3450,\"iri\":3452,\"type\":49,\"username\":3453,\"instanceHost\":761,\"handleHost\":761,\"handle\":3454,\"accountId\":-2,\"name\":3455,\"bioHtml\":3456,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":3457,\"headerUrl\":3458,\"inboxUrl\":3459,\"sharedInboxUrl\":767,\"followersUrl\":3460,\"featuredUrl\":-2,\"fieldHtmls\":3461,\"emojis\":3462,\"tags\":3463,\"sensitive\":44,\"successorId\":-2,\"aliases\":3464,\"followeesCount\":25,\"followersCount\":461,\"postsCount\":10,\"url\":3466,\"updated\":3467,\"published\":3468,\"created\":3469},\"https://bsky.brid.gy/ap/did:plc:ku6pdrafvko2txpg44v6bfcp\",\"roost.tools\",\"@roost.tools@bsky.brid.gy\",\"ROOST\",\"Robust Open Online Safety Tools (ROOST) is a new non-profit entity providing open source, accessible, high-quality, transparent safety tools for digital organizations of all kinds.\\n\\nroost.tools

🌉 bridged from 🦋 roost.tools, follow @bsky.brid.gy to interact\",\"https://mycena.us-west.host.bsky.network/xrpc/com.atproto.sync.getBlob?did=did:plc:ku6pdrafvko2txpg44v6bfcp&cid=bafkreia5jdcj6hj2mxnj5ybimmu42szm56ds5jgurgkqeldiidciunqs4u\",\"https://mycena.us-west.host.bsky.network/xrpc/com.atproto.sync.getBlob?did=did:plc:ku6pdrafvko2txpg44v6bfcp&cid=bafkreib3ywp7tew32ua3tos5264ymjmnjecnvef3xojqym2ywhnrtawicq\",\"https://bsky.brid.gy/ap/did:plc:ku6pdrafvko2txpg44v6bfcp/inbox\",\"https://bsky.brid.gy/ap/did:plc:ku6pdrafvko2txpg44v6bfcp/followers\",{\"Web site\":-2,\"Link\":-2},{},{},[3465],\"did:plc:ku6pdrafvko2txpg44v6bfcp\",\"https://bsky.brid.gy/r/https://bsky.app/profile/roost.tools\",[\"Date\",\"2025-11-18T19:21:08.943Z\"],[\"Date\",\"2025-02-05T20:10:28.566Z\"],[\"Date\",\"2025-11-18T19:21:08.943Z\"],[],[],[],{\"slots\":3474,\"props\":3475},[],{\"href\":2466,\"internalHref\":2467,\"class\":6,\"children\":3476},[\"Slot\",3477],{\"name\":9,\"id\":3478},137,{\"slots\":3480,\"props\":3481},[],{\"href\":2466,\"internalHref\":2467,\"children\":3482},[\"Slot\",3483],{\"name\":9,\"id\":3484},138,{\"slots\":3486,\"props\":3487},[],{\"href\":3488,\"internalHref\":3489,\"class\":22,\"children\":3490},\"https://23.social/@leyrer/115571829752004127\",\"/@leyrer@23.social/019a97f7-949d-753f-9d26-b176dae3b326\",[\"Slot\",3491],{\"name\":9,\"id\":3492},139,{\"slots\":3494,\"props\":3495},[],{\"value\":3496,\"locale\":30},[\"Date\",\"2025-11-18T17:16:11.000Z\"],{\"slots\":3498,\"props\":3499},[],{\"language\":30,\"post\":3500,\"class\":92,\"signedAccount\":-1},{\"id\":3501,\"iri\":3502,\"type\":37,\"visibility\":38,\"actorId\":2495,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":3503,\"language\":30,\"tags\":3504,\"emojis\":3505,\"sensitive\":44,\"repliesCount\":10,\"sharesCount\":10,\"quotesCount\":10,\"reactionsCounts\":3506,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":3488,\"updated\":3507,\"published\":3496,\"actor\":3508,\"link\":-2,\"sharedPost\":-2,\"replyTarget\":-2,\"mentions\":3522,\"media\":3523,\"shares\":3524,\"reactions\":3525},\"019a97f7-949d-753f-9d26-b176dae3b326\",\"https://23.social/users/leyrer/statuses/115571829752004127\",\"

"Im heurigen Jänner …"

Wenn es der Anreißer klar macht, dass das ein Text aus Österreich ist …

\",{},{},{},[\"Date\",\"2025-11-18T17:16:11.000Z\"],{\"id\":2495,\"iri\":2504,\"type\":49,\"username\":2505,\"instanceHost\":2506,\"handleHost\":2506,\"handle\":2507,\"accountId\":-2,\"name\":2505,\"bioHtml\":2508,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":2509,\"headerUrl\":2510,\"inboxUrl\":2511,\"sharedInboxUrl\":2512,\"followersUrl\":2513,\"featuredUrl\":2514,\"fieldHtmls\":3509,\"emojis\":3510,\"tags\":3511,\"sensitive\":44,\"successorId\":-2,\"aliases\":3512,\"followeesCount\":2524,\"followersCount\":2525,\"postsCount\":10,\"url\":2466,\"updated\":3513,\"published\":3514,\"created\":3515,\"instance\":3516,\"followers\":3519,\"blockees\":3520,\"blockers\":3521},{\"Blog & Impressum\":2516,\"Ham Radio\":2517,\"DECT @ CCC-Events\":2518,\"privileges\":2519},{},{},[2523],[\"Date\",\"2025-05-01T18:56:10.755Z\"],[\"Date\",\"2025-03-18T00:00:00.000Z\"],[\"Date\",\"2025-05-01T18:56:10.755Z\"],{\"host\":2506,\"software\":81,\"softwareVersion\":191,\"updated\":3517,\"created\":3518},[\"Date\",\"2025-11-18T12:30:56.543Z\"],[\"Date\",\"2025-03-12T06:47:26.656Z\"],[],[],[],[],[],[],[],{\"slots\":3527,\"props\":3528},[],{\"href\":3529,\"internalHref\":3530,\"class\":6,\"children\":3531},\"https://misskey.io/@hagun\",\"/@hagun@misskey.io\",[\"Slot\",3532],{\"name\":9,\"id\":3533},140,{\"slots\":3535,\"props\":3536},[],{\"href\":3529,\"internalHref\":3530,\"children\":3537},[\"Slot\",3538],{\"name\":9,\"id\":3539},141,{\"slots\":3541,\"props\":3542},[],{\"href\":3543,\"internalHref\":3544,\"class\":22,\"children\":3545},\"https://misskey.io/notes/af8efo5ai5yq00p2\",\"/@hagun@misskey.io/019a98d7-ee0d-73b4-ab0e-187ec3b31335\",[\"Slot\",3546],{\"name\":9,\"id\":959},{\"slots\":3548,\"props\":3549},[],{\"value\":3550,\"locale\":30},[\"Date\",\"2025-11-18T17:15:51.166Z\"],{\"slots\":3552,\"props\":3553},[],{\"language\":30,\"post\":3554,\"class\":92,\"signedAccount\":-1},{\"id\":3555,\"iri\":3543,\"type\":37,\"visibility\":38,\"actorId\":3556,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":3557,\"language\":-2,\"tags\":3558,\"emojis\":3559,\"sensitive\":44,\"repliesCount\":10,\"sharesCount\":10,\"quotesCount\":10,\"reactionsCounts\":3561,\"reactionsCount\":16,\"linkId\":-2,\"linkUrl\":-2,\"url\":-2,\"updated\":3562,\"published\":3550,\"actor\":3563,\"link\":-2,\"sharedPost\":-2,\"replyTarget\":-2,\"mentions\":3594,\"media\":3595,\"shares\":3596,\"reactions\":3597},\"019a98d7-ee0d-73b4-ab0e-187ec3b31335\",\"019a278a-1577-70f6-a3af-b90579e157bf\",\"

見終わったので寝よう やっぱ面白かった
​:oyasumisskey:​​:blobfox_io_sleep:​

\",{},{\":oyasumisskey:\":3320,\":blobfox_io_sleep:\":3560},\"https://media.misskeyusercontent.com/io/d579ce8d-2885-4039-8407-b3066dd2e370.webp\",{\"01961b20-f871-7cdf-8be2-99a9a72147a2\":16},[\"Date\",\"2025-11-18T17:15:51.166Z\"],{\"id\":3556,\"iri\":3564,\"type\":49,\"username\":3565,\"instanceHost\":680,\"handleHost\":680,\"handle\":3566,\"accountId\":-2,\"name\":3567,\"bioHtml\":3568,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":3569,\"headerUrl\":3570,\"inboxUrl\":3571,\"sharedInboxUrl\":686,\"followersUrl\":3572,\"featuredUrl\":-2,\"fieldHtmls\":3573,\"emojis\":3579,\"tags\":3582,\"sensitive\":44,\"successorId\":-2,\"aliases\":3583,\"followeesCount\":3584,\"followersCount\":3585,\"postsCount\":10,\"url\":3529,\"updated\":3586,\"published\":-2,\"created\":3587,\"instance\":3588,\"followers\":3591,\"blockees\":3592,\"blockers\":3593},\"https://misskey.io/users/9c0esv45zc\",\"hagun\",\"@hagun@misskey.io\",\"はぐん/hagun:skeb:依頼募集中\",\"

ゲームしたり絵を描いたりするのが好き 
クリップに投稿した絵を纏めておりますので、ご閲覧いただければ嬉しいです

​:blobcatartist:​絵クリップ
​:skeb:​ skebは無限に募集中です​:meowmelt:​

\",\"https://media.misskeyusercontent.com/io/3746e62f-6c5d-47cd-a2cd-25e3c824baba.png\",\"https://media.misskeyusercontent.com/io/b783e836-9d88-4b34-ab31-ea15a147b488.png\",\"https://misskey.io/users/9c0esv45zc/inbox\",\"https://misskey.io/users/9c0esv45zc/followers\",{\"Twitter(X)\":3574,\"Bluesky\":3575,\"pixiv\":3576,\"xfolio\":3577,\"ほしい栄養補給\":3578},\"https://x.com/hagun_06\",\"https://bsky.app/profile/hagun.bsky.social\",\"https://www.pixiv.net/users/96807537\",\"https://xfolio.jp/portfolio/hagun_06\",\"https://www.amazon.jp/hz/wishlist/ls/3MFY2MDJE7NRQ?ref_=wl_share\",{\":skeb:\":3339,\":meowmelt:\":3580,\":blobcatartist:\":3581},\"https://media.misskeyusercontent.com/emoji/meowmelt.png\",\"https://media.misskeyusercontent.com/emoji/blobcatartist.png\",{},[],404,452,[\"Date\",\"2025-10-27T21:19:12.248Z\"],[\"Date\",\"2025-10-27T21:19:12.248Z\"],{\"host\":680,\"software\":699,\"softwareVersion\":700,\"updated\":3589,\"created\":3590},[\"Date\",\"2025-11-19T02:13:27.987Z\"],[\"Date\",\"2024-12-13T09:14:04.772Z\"],[],[],[],[],[],[],[],{\"slots\":3599,\"props\":3600},[],{\"href\":394,\"internalHref\":395,\"class\":6,\"children\":3601},[\"Slot\",3602],{\"name\":9,\"id\":3603},143,{\"slots\":3605,\"props\":3606},[],{\"href\":394,\"internalHref\":395,\"children\":3607},[\"Slot\",3608],{\"name\":9,\"id\":3609},144,{\"slots\":3611,\"props\":3612},[],{\"href\":3613,\"internalHref\":3614,\"class\":22,\"children\":3615},\"https://infosec.exchange/@catsalad/115571819468730196\",\"/@catsalad@infosec.exchange/019a97f5-28b7-79e9-bc01-bfafb82a7ea8\",[\"Slot\",3616],{\"name\":9,\"id\":3617},145,{\"slots\":3619,\"props\":3620},[],{\"value\":3621,\"locale\":30},[\"Date\",\"2025-11-18T17:13:34.000Z\"],{\"slots\":3623,\"props\":3624},[],{\"href\":1564,\"internalHref\":1565,\"class\":6,\"children\":3625},[\"Slot\",3626],{\"name\":9,\"id\":1835},{\"slots\":3628,\"props\":3629},[],{\"href\":1564,\"internalHref\":1565,\"children\":3630},[\"Slot\",3631],{\"name\":9,\"id\":3632},147,{\"slots\":3634,\"props\":3635},[],{\"href\":3636,\"internalHref\":3637,\"class\":22,\"children\":3638},\"https://infosec.exchange/@badsamurai/115571827054946279\",\"/@badsamurai@infosec.exchange/019a97f6-edd8-7264-a795-3505ed7f3752\",[\"Slot\",3639],{\"name\":9,\"id\":3640},148,{\"slots\":3642,\"props\":3643},[],{\"value\":3644,\"locale\":30},[\"Date\",\"2025-11-18T17:15:30.000Z\"],{\"slots\":3646,\"props\":3647},[],{\"href\":394,\"internalHref\":395,\"children\":3648},[\"Slot\",3649],{\"name\":9,\"id\":3650},149,{\"slots\":3652,\"props\":3653},[],{\"language\":30,\"post\":3654,\"class\":92,\"signedAccount\":-1},{\"id\":1648,\"iri\":3655,\"type\":37,\"visibility\":38,\"actorId\":1599,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":3656,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":3657,\"language\":30,\"tags\":3658,\"emojis\":3659,\"sensitive\":44,\"repliesCount\":10,\"sharesCount\":16,\"quotesCount\":10,\"reactionsCounts\":3660,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":3636,\"updated\":3661,\"published\":3644,\"actor\":3662,\"link\":-2,\"replyTarget\":3676,\"mentions\":3709,\"media\":3728,\"shares\":3729,\"reactions\":3730},\"https://infosec.exchange/users/badsamurai/statuses/115571827054946279\",\"019a97f5-28b7-79e9-bc01-bfafb82a7ea8\",\"

@catsalad @briankrebs Vibe Delivery Network

\",{},{},{},[\"Date\",\"2025-11-18T17:15:30.000Z\"],{\"id\":1599,\"iri\":1607,\"type\":49,\"username\":1608,\"instanceHost\":1609,\"handleHost\":1609,\"handle\":1610,\"accountId\":-2,\"name\":1611,\"bioHtml\":1612,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":1613,\"headerUrl\":1614,\"inboxUrl\":1615,\"sharedInboxUrl\":1616,\"followersUrl\":1617,\"featuredUrl\":1618,\"fieldHtmls\":3663,\"emojis\":3664,\"tags\":3665,\"sensitive\":44,\"successorId\":-2,\"aliases\":3666,\"followeesCount\":1633,\"followersCount\":1634,\"postsCount\":10,\"url\":1564,\"updated\":3667,\"published\":3668,\"created\":3669,\"instance\":3670,\"followers\":3673,\"blockees\":3674,\"blockers\":3675},{\"Web\":1620,\"GitHub\":1621,\"Verification\":1622,\"Gravatar\":1623,\"Pronouns\":434,\"Dogs\":1624},{},{\"#iac\":1627,\"#tay\":1628,\"#soar\":1629,\"#securty\":1630,\"#automation\":1631},[],[\"Date\",\"2025-05-10T21:32:15.788Z\"],[\"Date\",\"2023-09-29T00:00:00.000Z\"],[\"Date\",\"2025-05-10T21:32:15.788Z\"],{\"host\":1609,\"software\":81,\"softwareVersion\":1639,\"updated\":3671,\"created\":3672},[\"Date\",\"2025-11-18T17:21:57.203Z\"],[\"Date\",\"2025-01-21T02:58:45.166Z\"],[],[],[],{\"id\":3656,\"iri\":3677,\"type\":37,\"visibility\":38,\"actorId\":1707,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":3678,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":3679,\"language\":30,\"tags\":3680,\"emojis\":3681,\"sensitive\":44,\"repliesCount\":10,\"sharesCount\":10,\"quotesCount\":10,\"reactionsCounts\":3682,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":3613,\"updated\":3683,\"published\":3621,\"actor\":3684,\"link\":-2,\"mentions\":3698,\"media\":3708},\"https://infosec.exchange/users/catsalad/statuses/115571819468730196\",\"019a97f3-8286-7c5c-9bc4-e36ed98068a8\",\"

@briankrebs \\\"Our use of vibe coding finally bit us in the butt\\\"

\",{},{},{},[\"Date\",\"2025-11-18T17:13:34.000Z\"],{\"id\":1707,\"iri\":1709,\"type\":49,\"username\":1710,\"instanceHost\":1609,\"handleHost\":1609,\"handle\":1711,\"accountId\":-2,\"name\":1712,\"bioHtml\":1713,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":1714,\"headerUrl\":1715,\"inboxUrl\":1716,\"sharedInboxUrl\":1616,\"followersUrl\":1717,\"featuredUrl\":1718,\"fieldHtmls\":3685,\"emojis\":3686,\"tags\":3687,\"sensitive\":44,\"successorId\":-2,\"aliases\":3688,\"followeesCount\":1755,\"followersCount\":1756,\"postsCount\":10,\"url\":394,\"updated\":3689,\"published\":3690,\"created\":3691,\"instance\":3692,\"followers\":3695,\"blockees\":3696,\"blockers\":3697},{\"Main² (HTown)🥗\":1720,\"Main³ (Floof)🌈\":1721,\"🔺🔻\":1722,\"Github\":1723,\"Keyoxide\":1724,\"Pronouns\":1725},{\":blobcatrainbow:\":1727,\":ablobcatmaracasevil:\":1728},{\"#blm\":1730,\"#tfr\":1731,\"#tor\":1732,\"#dfir\":1733,\"#puns\":1734,\"#ʘʘ\":1735,\"#fedi22\":1736,\"#gayint\":1737,\"#hacker\":1738,\"#veilid\":1739,\"#android\":1740,\"#infosec\":1741,\"#malware\":1742,\"#privacy\":1743,\"#unicode\":1744,\"#ಠ_ಠ\":1745,\"#catsalad\":1746,\"#security\":1747,\"#developer\":1748,\"#purpleteam\":1749,\"#transrights\":1750,\"#cybersecurity\":1751},[1753,1754],[\"Date\",\"2025-03-16T21:54:06.724Z\"],[\"Date\",\"2022-11-11T00:00:00.000Z\"],[\"Date\",\"2025-03-16T21:54:06.724Z\"],{\"host\":1609,\"software\":81,\"softwareVersion\":1639,\"updated\":3693,\"created\":3694},[\"Date\",\"2025-11-18T17:21:57.203Z\"],[\"Date\",\"2025-01-21T02:58:45.166Z\"],[],[],[],[3699],{\"postId\":3656,\"actorId\":1684,\"actor\":3700},{\"id\":1684,\"iri\":1686,\"type\":49,\"username\":1687,\"instanceHost\":1609,\"handleHost\":1609,\"handle\":1688,\"accountId\":-2,\"name\":1689,\"bioHtml\":1690,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":1691,\"headerUrl\":1692,\"inboxUrl\":1693,\"sharedInboxUrl\":1616,\"followersUrl\":1694,\"featuredUrl\":-2,\"fieldHtmls\":3701,\"emojis\":3702,\"tags\":3703,\"sensitive\":44,\"successorId\":-2,\"aliases\":3704,\"followeesCount\":1700,\"followersCount\":1701,\"postsCount\":10,\"url\":1702,\"updated\":3705,\"published\":3706,\"created\":3707},{\"website\":1696},{},{},[],[\"Date\",\"2025-03-12T20:10:33.493Z\"],[\"Date\",\"2022-11-05T00:00:00.000Z\"],[\"Date\",\"2025-03-12T20:10:33.493Z\"],[],[3710,3719],{\"postId\":1648,\"actorId\":1684,\"actor\":3711},{\"id\":1684,\"iri\":1686,\"type\":49,\"username\":1687,\"instanceHost\":1609,\"handleHost\":1609,\"handle\":1688,\"accountId\":-2,\"name\":1689,\"bioHtml\":1690,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":1691,\"headerUrl\":1692,\"inboxUrl\":1693,\"sharedInboxUrl\":1616,\"followersUrl\":1694,\"featuredUrl\":-2,\"fieldHtmls\":3712,\"emojis\":3713,\"tags\":3714,\"sensitive\":44,\"successorId\":-2,\"aliases\":3715,\"followeesCount\":1700,\"followersCount\":1701,\"postsCount\":10,\"url\":1702,\"updated\":3716,\"published\":3717,\"created\":3718},{\"website\":1696},{},{},[],[\"Date\",\"2025-03-12T20:10:33.493Z\"],[\"Date\",\"2022-11-05T00:00:00.000Z\"],[\"Date\",\"2025-03-12T20:10:33.493Z\"],{\"postId\":1648,\"actorId\":1707,\"actor\":3720},{\"id\":1707,\"iri\":1709,\"type\":49,\"username\":1710,\"instanceHost\":1609,\"handleHost\":1609,\"handle\":1711,\"accountId\":-2,\"name\":1712,\"bioHtml\":1713,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":1714,\"headerUrl\":1715,\"inboxUrl\":1716,\"sharedInboxUrl\":1616,\"followersUrl\":1717,\"featuredUrl\":1718,\"fieldHtmls\":3721,\"emojis\":3722,\"tags\":3723,\"sensitive\":44,\"successorId\":-2,\"aliases\":3724,\"followeesCount\":1755,\"followersCount\":1756,\"postsCount\":10,\"url\":394,\"updated\":3725,\"published\":3726,\"created\":3727},{\"Main² (HTown)🥗\":1720,\"Main³ (Floof)🌈\":1721,\"🔺🔻\":1722,\"Github\":1723,\"Keyoxide\":1724,\"Pronouns\":1725},{\":blobcatrainbow:\":1727,\":ablobcatmaracasevil:\":1728},{\"#blm\":1730,\"#tfr\":1731,\"#tor\":1732,\"#dfir\":1733,\"#puns\":1734,\"#ʘʘ\":1735,\"#fedi22\":1736,\"#gayint\":1737,\"#hacker\":1738,\"#veilid\":1739,\"#android\":1740,\"#infosec\":1741,\"#malware\":1742,\"#privacy\":1743,\"#unicode\":1744,\"#ಠ_ಠ\":1745,\"#catsalad\":1746,\"#security\":1747,\"#developer\":1748,\"#purpleteam\":1749,\"#transrights\":1750,\"#cybersecurity\":1751},[1753,1754],[\"Date\",\"2025-03-16T21:54:06.724Z\"],[\"Date\",\"2022-11-11T00:00:00.000Z\"],[\"Date\",\"2025-03-16T21:54:06.724Z\"],[],[],[],{\"slots\":3732,\"props\":3733},[],{\"href\":3122,\"internalHref\":3123,\"class\":6,\"children\":3734},[\"Slot\",3735],{\"name\":9,\"id\":3736},150,{\"slots\":3738,\"props\":3739},[],{\"href\":3122,\"internalHref\":3123,\"children\":3740},[\"Slot\",3741],{\"name\":9,\"id\":3742},151,{\"slots\":3744,\"props\":3745},[],{\"href\":3136,\"internalHref\":3137,\"class\":22,\"children\":3746},[\"Slot\",3747],{\"name\":9,\"id\":3748},152,{\"slots\":3750,\"props\":3751},[],{\"value\":3752,\"locale\":30},[\"Date\",\"2025-11-18T17:15:46.000Z\"],{\"slots\":3754,\"props\":3755},[],{\"medium\":3756,\"class\":129},{\"postId\":3155,\"index\":10,\"type\":124,\"url\":3156,\"alt\":3157,\"width\":3158,\"height\":3159,\"thumbnailKey\":-2,\"sensitive\":44},{\"slots\":3758,\"props\":3759},[],{\"language\":30,\"post\":3760,\"class\":92,\"signedAccount\":-1},{\"id\":3155,\"iri\":3164,\"type\":37,\"visibility\":38,\"actorId\":3165,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":3166,\"language\":30,\"tags\":3761,\"emojis\":3762,\"sensitive\":44,\"repliesCount\":10,\"sharesCount\":16,\"quotesCount\":10,\"reactionsCounts\":3763,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":3136,\"updated\":3764,\"published\":3752,\"actor\":3765,\"link\":-2,\"sharedPost\":-2,\"replyTarget\":-2,\"mentions\":3779,\"media\":3780,\"shares\":3781,\"reactions\":3782},{},{},{},[\"Date\",\"2025-11-18T17:15:46.000Z\"],{\"id\":3165,\"iri\":3172,\"type\":49,\"username\":3173,\"instanceHost\":3174,\"handleHost\":3174,\"handle\":3175,\"accountId\":-2,\"name\":3176,\"bioHtml\":3177,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":3178,\"headerUrl\":3179,\"inboxUrl\":3180,\"sharedInboxUrl\":3181,\"followersUrl\":3182,\"featuredUrl\":3183,\"fieldHtmls\":3766,\"emojis\":3767,\"tags\":3768,\"sensitive\":44,\"successorId\":-2,\"aliases\":3769,\"followeesCount\":1114,\"followersCount\":3189,\"postsCount\":10,\"url\":3122,\"updated\":3770,\"published\":3771,\"created\":3772,\"instance\":3773,\"followers\":3776,\"blockees\":3777,\"blockers\":3778},{\"Website!\":3185},{},{},[],[\"Date\",\"2025-06-04T20:16:17.390Z\"],[\"Date\",\"2022-10-28T00:00:00.000Z\"],[\"Date\",\"2025-06-04T20:16:17.390Z\"],{\"host\":3174,\"software\":81,\"softwareVersion\":2778,\"updated\":3774,\"created\":3775},[\"Date\",\"2025-11-10T01:09:26.919Z\"],[\"Date\",\"2025-03-17T14:58:01.308Z\"],[],[],[],[],[3756],[],[],{\"slots\":3784,\"props\":3785},[],{\"href\":3786,\"internalHref\":3787,\"class\":6,\"children\":3788},\"https://mastodon.social/@lobsters\",\"/@lobsters@mastodon.social\",[\"Slot\",3789],{\"name\":9,\"id\":3790},153,{\"slots\":3792,\"props\":3793},[],{\"href\":3786,\"internalHref\":3787,\"children\":3794},[\"Slot\",3795],{\"name\":9,\"id\":3796},154,{\"slots\":3798,\"props\":3799},[],{\"href\":3800,\"internalHref\":3801,\"class\":22,\"children\":3802},\"https://mastodon.social/@lobsters/115571825719755913\",\"/@lobsters@mastodon.social/019a97f6-a403-73b3-a33d-7e570ac2e124\",[\"Slot\",3803],{\"name\":9,\"id\":3804},155,{\"slots\":3806,\"props\":3807},[],{\"value\":3808,\"locale\":30},[\"Date\",\"2025-11-18T17:15:10.000Z\"],{\"slots\":3810,\"props\":3811},[],{\"language\":30,\"post\":3812,\"class\":92,\"signedAccount\":-1},{\"id\":3813,\"iri\":3814,\"type\":37,\"visibility\":38,\"actorId\":3815,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":3816,\"language\":30,\"tags\":3817,\"emojis\":3819,\"sensitive\":44,\"repliesCount\":10,\"sharesCount\":10,\"quotesCount\":10,\"reactionsCounts\":3820,\"reactionsCount\":10,\"linkId\":3821,\"linkUrl\":3822,\"url\":3800,\"updated\":3823,\"published\":3808,\"actor\":3824,\"link\":3852,\"sharedPost\":-2,\"replyTarget\":-2,\"mentions\":3858,\"media\":3887,\"shares\":3888,\"reactions\":3889},\"019a97f6-a403-73b3-a33d-7e570ac2e124\",\"https://mastodon.social/users/lobsters/statuses/115571825719755913\",\"01958762-cc27-73f8-b9f8-7a84a5f57e7a\",\"

Google Summer of Code 2025 results via @fanf https://lobste.rs/s/psrp8z #rust
https://blog.rust-lang.org/2025/11/18/gsoc-2025-results/

\",{\"rust\":3818},\"https://mastodon.social/tags/rust\",{},{},\"019a97f6-a3f8-7fa1-86cb-fbd45ce2a1de\",\"https://lobste.rs/s/psrp8z\",[\"Date\",\"2025-11-18T17:15:10.000Z\"],{\"id\":3815,\"iri\":3825,\"type\":2844,\"username\":3826,\"instanceHost\":941,\"handleHost\":941,\"handle\":3827,\"accountId\":-2,\"name\":3828,\"bioHtml\":3829,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":3830,\"headerUrl\":-2,\"inboxUrl\":3831,\"sharedInboxUrl\":948,\"followersUrl\":3832,\"featuredUrl\":3833,\"fieldHtmls\":3834,\"emojis\":3838,\"tags\":3839,\"sensitive\":44,\"successorId\":-2,\"aliases\":3840,\"followeesCount\":550,\"followersCount\":3842,\"postsCount\":10,\"url\":3786,\"updated\":3843,\"published\":3844,\"created\":3845,\"instance\":3846,\"followers\":3849,\"blockees\":3850,\"blockers\":3851},\"https://mastodon.social/users/lobsters\",\"lobsters\",\"@lobsters@mastodon.social\",\"Lobsters\",\"

Feed for stories that have reached the front page of lobste.rs.

\",\"https://files.mastodon.social/accounts/avatars/113/635/103/853/964/473/original/0a4435eaf8d5c473.png\",\"https://mastodon.social/users/lobsters/inbox\",\"https://mastodon.social/users/lobsters/followers\",\"https://mastodon.social/users/lobsters/collections/featured\",{\"Lobsters\":3835,\"Source code\":3836,\"Maintainer\":3837},\"https://lobste.rs\",\"https://github.com/lobsters/lobsters in extras/mastodon.rb, script/mastodon*\",\"peter at push.cx\",{},{},[3841],\"https://botsin.space/users/lobsters\",3248,[\"Date\",\"2025-03-11T22:45:53.833Z\"],[\"Date\",\"2024-12-11T00:00:00.000Z\"],[\"Date\",\"2025-03-11T22:45:53.833Z\"],{\"host\":941,\"software\":81,\"softwareVersion\":964,\"updated\":3847,\"created\":3848},[\"Date\",\"2025-11-19T05:16:34.626Z\"],[\"Date\",\"2024-12-13T09:08:56.994Z\"],[],[],[],{\"id\":3821,\"url\":3822,\"title\":3853,\"siteName\":3828,\"type\":352,\"description\":3854,\"author\":-2,\"imageUrl\":3855,\"imageAlt\":-2,\"imageType\":124,\"imageWidth\":3609,\"imageHeight\":3609,\"creatorId\":-2,\"created\":3856,\"scraped\":3857,\"creator\":-2},\"Google Summer of Code 2025 results\",\"1 comment\",\"https://lobste.rs/touch-icon-144.png\",[\"Date\",\"2025-11-18T17:15:14.813Z\"],[\"Date\",\"2025-11-18T17:15:14.813Z\"],[3859],{\"postId\":3813,\"actorId\":3860,\"actor\":3861},\"0195d95a-69f8-71a8-b869-803a93c41bc5\",{\"id\":3860,\"iri\":3862,\"type\":49,\"username\":3863,\"instanceHost\":3864,\"handleHost\":3864,\"handle\":3865,\"accountId\":-2,\"name\":3866,\"bioHtml\":3867,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":3868,\"headerUrl\":3869,\"inboxUrl\":3870,\"sharedInboxUrl\":3871,\"followersUrl\":3872,\"featuredUrl\":-2,\"fieldHtmls\":3873,\"emojis\":3878,\"tags\":3879,\"sensitive\":44,\"successorId\":-2,\"aliases\":3880,\"followeesCount\":3881,\"followersCount\":3882,\"postsCount\":10,\"url\":3883,\"updated\":3884,\"published\":3885,\"created\":3886},\"https://mendeddrum.org/users/fanf\",\"fanf\",\"mendeddrum.org\",\"@fanf@mendeddrum.org\",\"Tony Finch\",\"

unix / internet / open source software bodger
• 🏳️‍🌈🇪🇺🇬🇧 • he/they • 🚴 • 🦀 • 💉😷 • 🏳️‍⚧️ • 🇺🇦 • 🇵🇸 • ✊🏿 • tfr

\",\"https://mendeddrum.org/system/accounts/avatars/109/348/281/457/104/546/original/ef2546a46dfa9e82.png\",\"https://mendeddrum.org/system/accounts/headers/109/348/281/457/104/546/original/4ceae8c83dfced7a.jpeg\",\"https://mendeddrum.org/users/fanf/inbox\",\"https://mendeddrum.org/inbox\",\"https://mendeddrum.org/users/fanf/followers\",{\"WEB\":3874,\"EMAIL\":3875,\"HOME\":3876,\"ELSEWHERE\":3877},\"https://dotat.at\",\"dot@dotat.at\",\"Cambridge\",\"https://dotat.at/social.html\",{},{},[],1986,1530,\"https://mendeddrum.org/@fanf\",[\"Date\",\"2025-03-27T20:45:36.122Z\"],[\"Date\",\"2022-11-15T00:00:00.000Z\"],[\"Date\",\"2025-03-27T20:45:36.122Z\"],[],[],[],{\"slots\":3891,\"props\":3892},[],{\"href\":3893,\"internalHref\":3894,\"class\":6,\"children\":3895},\"https://mastodon.social/@schwa\",\"/@schwa@mastodon.social\",[\"Slot\",3896],{\"name\":9,\"id\":3897},156,{\"slots\":3899,\"props\":3900},[],{\"href\":3893,\"internalHref\":3894,\"children\":3901},[\"Slot\",3902],{\"name\":9,\"id\":3903},157,{\"slots\":3905,\"props\":3906},[],{\"href\":3907,\"internalHref\":3908,\"class\":22,\"children\":3909},\"https://mastodon.social/@schwa/115571339784486854\",\"/@schwa@mastodon.social/019a97f4-59d1-7d61-9353-11589969928b\",[\"Slot\",3910],{\"name\":9,\"id\":3911},158,{\"slots\":3913,\"props\":3914},[],{\"value\":3915,\"locale\":30},[\"Date\",\"2025-11-18T15:11:35.000Z\"],{\"slots\":3917,\"props\":3918},[],{\"href\":1888,\"internalHref\":1889,\"children\":3919},[\"Slot\",3920],{\"name\":9,\"id\":3921},159,{\"slots\":3923,\"props\":3924},[],{\"medium\":3925,\"class\":129},{\"postId\":3926,\"index\":10,\"type\":124,\"url\":3927,\"alt\":3928,\"width\":3929,\"height\":3930,\"thumbnailKey\":-2,\"sensitive\":44},\"019a97f4-59d1-7d61-9353-11589969928b\",\"https://files.mastodon.social/media_attachments/files/115/571/339/489/151/493/original/49aaf4fdaff112c9.png\",\"Abused xkcd dependencies cartoon - but with US-EAST-1 and cloudflare as the load bearing blocks.\",770,978,{\"slots\":3932,\"props\":3933},[],{\"language\":30,\"post\":3934,\"class\":92,\"signedAccount\":-1},{\"id\":3926,\"iri\":3935,\"type\":37,\"visibility\":38,\"actorId\":3936,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":3937,\"language\":30,\"tags\":3938,\"emojis\":3939,\"sensitive\":44,\"repliesCount\":10,\"sharesCount\":398,\"quotesCount\":10,\"reactionsCounts\":3940,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":3907,\"updated\":3941,\"published\":3915,\"actor\":3942,\"link\":-2,\"replyTarget\":-2,\"mentions\":3971,\"media\":3972,\"shares\":3973,\"reactions\":3974},\"https://mastodon.social/users/schwa/statuses/115571339784486854\",\"0195b162-8f7d-762c-b040-a42612f483c5\",\"

So it's actually this huh?

\",{},{},{},[\"Date\",\"2025-11-18T15:11:35.000Z\"],{\"id\":3936,\"iri\":3943,\"type\":49,\"username\":3944,\"instanceHost\":941,\"handleHost\":941,\"handle\":3945,\"accountId\":-2,\"name\":3946,\"bioHtml\":3947,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":3948,\"headerUrl\":3949,\"inboxUrl\":3950,\"sharedInboxUrl\":948,\"followersUrl\":3951,\"featuredUrl\":-2,\"fieldHtmls\":3952,\"emojis\":3957,\"tags\":3958,\"sensitive\":44,\"successorId\":-2,\"aliases\":3959,\"followeesCount\":3960,\"followersCount\":3961,\"postsCount\":10,\"url\":3893,\"updated\":3962,\"published\":3963,\"created\":3964,\"instance\":3965,\"followers\":3968,\"blockees\":3969,\"blockers\":3970},\"https://mastodon.social/users/schwa\",\"schwa\",\"@schwa@mastodon.social\",\"Jonathan Wight\",\"

No.

-

Posts auto-delete in 7 days.
Idiots are blocked quicker than that.

-

#NoBridge #NoSearch #NoIndex #NoQuotePosts #No*

\",\"https://files.mastodon.social/accounts/avatars/000/407/318/original/33c70dee6e61ca67.png\",\"https://files.mastodon.social/accounts/headers/000/407/318/original/ce72b7009fe3619a.jpeg\",\"https://mastodon.social/users/schwa/inbox\",\"https://mastodon.social/users/schwa/followers\",{\"Info\":3953,\"Github\":3954,\"pixelfed\":3955,\"signal\":3956},\"https://schwa.io/\",\"https://schwa.github.io\",\"@Schwa@pixelfed.social\",\"https://signal.me/#eu/EdFZ59cKhG_d93Xo1aBU4yGlf5ayQrVfjjoSDrh1-YSTdiDFk1VBqKKQD947UJt6\",{},{},[],893,3225,[\"Date\",\"2025-03-20T02:29:41.375Z\"],[\"Date\",\"2018-08-08T00:00:00.000Z\"],[\"Date\",\"2025-03-20T02:29:41.375Z\"],{\"host\":941,\"software\":81,\"softwareVersion\":964,\"updated\":3966,\"created\":3967},[\"Date\",\"2025-11-19T05:16:34.626Z\"],[\"Date\",\"2024-12-13T09:08:56.994Z\"],[],[],[],[],[3925],[],[],{\"slots\":3976,\"props\":3977},[],{\"href\":3893,\"internalHref\":3894,\"class\":6,\"children\":3978},[\"Slot\",3979],{\"name\":9,\"id\":3980},160,{\"slots\":3982,\"props\":3983},[],{\"href\":3893,\"internalHref\":3894,\"children\":3984},[\"Slot\",3985],{\"name\":9,\"id\":3986},161,{\"slots\":3988,\"props\":3989},[],{\"href\":3907,\"internalHref\":3908,\"class\":22,\"children\":3990},[\"Slot\",3991],{\"name\":9,\"id\":3992},162,{\"slots\":3994,\"props\":3995},[],{\"value\":3996,\"locale\":30},[\"Date\",\"2025-11-18T15:11:35.000Z\"],{\"slots\":3998,\"props\":3999},[],{\"href\":2466,\"internalHref\":2467,\"children\":4000},[\"Slot\",4001],{\"name\":9,\"id\":4002},163,{\"slots\":4004,\"props\":4005},[],{\"medium\":4006,\"class\":129},{\"postId\":3926,\"index\":10,\"type\":124,\"url\":3927,\"alt\":3928,\"width\":3929,\"height\":3930,\"thumbnailKey\":-2,\"sensitive\":44},{\"slots\":4008,\"props\":4009},[],{\"language\":30,\"post\":4010,\"class\":92,\"signedAccount\":-1},{\"id\":3926,\"iri\":3935,\"type\":37,\"visibility\":38,\"actorId\":3936,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":3937,\"language\":30,\"tags\":4011,\"emojis\":4012,\"sensitive\":44,\"repliesCount\":10,\"sharesCount\":398,\"quotesCount\":10,\"reactionsCounts\":4013,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":3907,\"updated\":4014,\"published\":3996,\"actor\":4015,\"link\":-2,\"replyTarget\":-2,\"mentions\":4029,\"media\":4030,\"shares\":4031,\"reactions\":4032},{},{},{},[\"Date\",\"2025-11-18T15:11:35.000Z\"],{\"id\":3936,\"iri\":3943,\"type\":49,\"username\":3944,\"instanceHost\":941,\"handleHost\":941,\"handle\":3945,\"accountId\":-2,\"name\":3946,\"bioHtml\":3947,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":3948,\"headerUrl\":3949,\"inboxUrl\":3950,\"sharedInboxUrl\":948,\"followersUrl\":3951,\"featuredUrl\":-2,\"fieldHtmls\":4016,\"emojis\":4017,\"tags\":4018,\"sensitive\":44,\"successorId\":-2,\"aliases\":4019,\"followeesCount\":3960,\"followersCount\":3961,\"postsCount\":10,\"url\":3893,\"updated\":4020,\"published\":4021,\"created\":4022,\"instance\":4023,\"followers\":4026,\"blockees\":4027,\"blockers\":4028},{\"Info\":3953,\"Github\":3954,\"pixelfed\":3955,\"signal\":3956},{},{},[],[\"Date\",\"2025-03-20T02:29:41.375Z\"],[\"Date\",\"2018-08-08T00:00:00.000Z\"],[\"Date\",\"2025-03-20T02:29:41.375Z\"],{\"host\":941,\"software\":81,\"softwareVersion\":964,\"updated\":4024,\"created\":4025},[\"Date\",\"2025-11-19T05:16:34.626Z\"],[\"Date\",\"2024-12-13T09:08:56.994Z\"],[],[],[],[],[4006],[],[],{\"slots\":4034,\"props\":4035},[],{\"href\":3893,\"internalHref\":3894,\"class\":6,\"children\":4036},[\"Slot\",4037],{\"name\":9,\"id\":4038},164,{\"slots\":4040,\"props\":4041},[],{\"href\":3893,\"internalHref\":3894,\"children\":4042},[\"Slot\",4043],{\"name\":9,\"id\":4044},165,{\"slots\":4046,\"props\":4047},[],{\"href\":3907,\"internalHref\":3908,\"class\":22,\"children\":4048},[\"Slot\",4049],{\"name\":9,\"id\":4050},166,{\"slots\":4052,\"props\":4053},[],{\"value\":4054,\"locale\":30},[\"Date\",\"2025-11-18T15:11:35.000Z\"],{\"slots\":4056,\"props\":4057},[],{\"href\":4058,\"internalHref\":4059,\"children\":4060},\"https://fosstodon.org/@ianthetechie\",\"/@ianthetechie@fosstodon.org\",[\"Slot\",4061],{\"name\":9,\"id\":4062},167,{\"slots\":4064,\"props\":4065},[],{\"medium\":4066,\"class\":129},{\"postId\":3926,\"index\":10,\"type\":124,\"url\":3927,\"alt\":3928,\"width\":3929,\"height\":3930,\"thumbnailKey\":-2,\"sensitive\":44},{\"slots\":4068,\"props\":4069},[],{\"language\":30,\"post\":4070,\"class\":92,\"signedAccount\":-1},{\"id\":3926,\"iri\":3935,\"type\":37,\"visibility\":38,\"actorId\":3936,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":3937,\"language\":30,\"tags\":4071,\"emojis\":4072,\"sensitive\":44,\"repliesCount\":10,\"sharesCount\":398,\"quotesCount\":10,\"reactionsCounts\":4073,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":3907,\"updated\":4074,\"published\":4054,\"actor\":4075,\"link\":-2,\"replyTarget\":-2,\"mentions\":4089,\"media\":4090,\"shares\":4091,\"reactions\":4092},{},{},{},[\"Date\",\"2025-11-18T15:11:35.000Z\"],{\"id\":3936,\"iri\":3943,\"type\":49,\"username\":3944,\"instanceHost\":941,\"handleHost\":941,\"handle\":3945,\"accountId\":-2,\"name\":3946,\"bioHtml\":3947,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":3948,\"headerUrl\":3949,\"inboxUrl\":3950,\"sharedInboxUrl\":948,\"followersUrl\":3951,\"featuredUrl\":-2,\"fieldHtmls\":4076,\"emojis\":4077,\"tags\":4078,\"sensitive\":44,\"successorId\":-2,\"aliases\":4079,\"followeesCount\":3960,\"followersCount\":3961,\"postsCount\":10,\"url\":3893,\"updated\":4080,\"published\":4081,\"created\":4082,\"instance\":4083,\"followers\":4086,\"blockees\":4087,\"blockers\":4088},{\"Info\":3953,\"Github\":3954,\"pixelfed\":3955,\"signal\":3956},{},{},[],[\"Date\",\"2025-03-20T02:29:41.375Z\"],[\"Date\",\"2018-08-08T00:00:00.000Z\"],[\"Date\",\"2025-03-20T02:29:41.375Z\"],{\"host\":941,\"software\":81,\"softwareVersion\":964,\"updated\":4084,\"created\":4085},[\"Date\",\"2025-11-19T05:16:34.626Z\"],[\"Date\",\"2024-12-13T09:08:56.994Z\"],[],[],[],[],[4066],[],[],{\"slots\":4094,\"props\":4095},[],{\"href\":4096,\"internalHref\":4097,\"class\":6,\"children\":4098},\"https://indieweb.social/@investinopen\",\"/@investinopen@indieweb.social\",[\"Slot\",4099],{\"name\":9,\"id\":4100},168,{\"slots\":4102,\"props\":4103},[],{\"href\":4096,\"internalHref\":4097,\"children\":4104},[\"Slot\",4105],{\"name\":9,\"id\":4106},169,{\"slots\":4108,\"props\":4109},[],{\"href\":4110,\"internalHref\":4111,\"class\":22,\"children\":4112},\"https://indieweb.social/@investinopen/115571555928615637\",\"/@investinopen@indieweb.social/019a97f4-4de0-7adc-8701-f4947bd6eae2\",[\"Slot\",4113],{\"name\":9,\"id\":4114},170,{\"slots\":4116,\"props\":4117},[],{\"value\":4118,\"locale\":30},[\"Date\",\"2025-11-18T16:06:33.000Z\"],{\"slots\":4120,\"props\":4121},[],{\"href\":2817,\"internalHref\":2818,\"children\":4122},[\"Slot\",4123],{\"name\":9,\"id\":3020},{\"slots\":4125,\"props\":4126},[],{\"language\":30,\"post\":4127,\"class\":92,\"signedAccount\":-1},{\"id\":4128,\"iri\":4129,\"type\":37,\"visibility\":38,\"actorId\":4130,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":4131,\"language\":30,\"tags\":4132,\"emojis\":4133,\"sensitive\":44,\"repliesCount\":10,\"sharesCount\":16,\"quotesCount\":10,\"reactionsCounts\":4134,\"reactionsCount\":10,\"linkId\":4135,\"linkUrl\":4136,\"url\":4110,\"updated\":4137,\"published\":4118,\"actor\":4138,\"link\":4167,\"replyTarget\":-2,\"mentions\":4174,\"media\":4175,\"shares\":4176,\"reactions\":4177},\"019a97f4-4de0-7adc-8701-f4947bd6eae2\",\"https://indieweb.social/users/investinopen/statuses/115571555928615637\",\"01985281-b284-7248-b0ee-a8ea77a1213d\",\"

📢 Infra Finder is growing! We're currently reviewing Expressions of Interest from open infrastructure services.

Does your infrastructure support the research lifecycle and prioritize openness and community governance? Submit your Expression of Interest to be considered for inclusion.
Learn more & apply: https://investinopen.org/add-an-infrastructure-to-infra-finder/

\",{},{},{},\"019a97f4-4dd3-743a-83f6-1c25c12e583b\",\"https://investinopen.org/add-an-infrastructure-to-infra-finder/\",[\"Date\",\"2025-11-18T16:06:33.000Z\"],{\"id\":4130,\"iri\":4139,\"type\":49,\"username\":4140,\"instanceHost\":4141,\"handleHost\":4141,\"handle\":4142,\"accountId\":-2,\"name\":4143,\"bioHtml\":4144,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":4145,\"headerUrl\":4146,\"inboxUrl\":4147,\"sharedInboxUrl\":4148,\"followersUrl\":4149,\"featuredUrl\":4150,\"fieldHtmls\":4151,\"emojis\":4153,\"tags\":4154,\"sensitive\":44,\"successorId\":-2,\"aliases\":4155,\"followeesCount\":4156,\"followersCount\":4157,\"postsCount\":10,\"url\":4096,\"updated\":4158,\"published\":4159,\"created\":4160,\"instance\":4161,\"followers\":4164,\"blockees\":4165,\"blockers\":4166},\"https://indieweb.social/users/investinopen\",\"investinopen\",\"indieweb.social\",\"@investinopen@indieweb.social\",\"Invest in Open Infrastructure\",\"

We work to increase investment in + adoption of open infrastructure to further equitable access to + participation in research.

\",\"https://cdn.masto.host/indiewebsocial/accounts/avatars/109/364/364/044/688/999/original/24ea74a85983a0d2.png\",\"https://cdn.masto.host/indiewebsocial/accounts/headers/109/364/364/044/688/999/original/4797f346b2d0df3f.png\",\"https://indieweb.social/users/investinopen/inbox\",\"https://indieweb.social/inbox\",\"https://indieweb.social/users/investinopen/followers\",\"https://indieweb.social/users/investinopen/collections/featured\",{\"Website\":4152},\"https://investinopen.org\",{},{},[],516,1049,[\"Date\",\"2025-07-28T19:28:08.345Z\"],[\"Date\",\"2022-11-18T00:00:00.000Z\"],[\"Date\",\"2025-07-28T19:28:08.345Z\"],{\"host\":4141,\"software\":81,\"softwareVersion\":191,\"updated\":4162,\"created\":4163},[\"Date\",\"2025-11-14T08:27:26.107Z\"],[\"Date\",\"2024-12-13T09:13:20.211Z\"],[],[],[],{\"id\":4135,\"url\":4136,\"title\":4168,\"siteName\":4143,\"type\":352,\"description\":4169,\"author\":-2,\"imageUrl\":4170,\"imageAlt\":-2,\"imageType\":124,\"imageWidth\":2082,\"imageHeight\":4171,\"creatorId\":-2,\"created\":4172,\"scraped\":4173,\"creator\":-2},\"Add an infrastructure to Infra Finder\",\"Find out more about how you can add an infrastructure to Infra Finder.\",\"https://investinopen.org/content/images/2024/04/Infra-Finder---add-an-infrastructure-1.png\",630,[\"Date\",\"2025-11-18T17:12:41.688Z\"],[\"Date\",\"2025-11-18T17:12:41.688Z\"],[],[],[],[],{\"slots\":4179,\"props\":4180},[],{\"href\":4181,\"internalHref\":4182,\"class\":6,\"children\":4183},\"https://misskey.04.si/@grapeapple\",\"/@grapeapple@misskey.04.si\",[\"Slot\",4184],{\"name\":9,\"id\":4185},172,{\"slots\":4187,\"props\":4188},[],{\"href\":4181,\"internalHref\":4182,\"children\":4189},[\"Slot\",4190],{\"name\":9,\"id\":4191},173,{\"slots\":4193,\"props\":4194},[],{\"href\":4195,\"internalHref\":4196,\"class\":22,\"children\":4197},\"https://misskey.04.si/notes/af8eassfpw\",\"/@grapeapple@misskey.04.si/019a97fd-9717-7d66-8e31-1e26b49eaf60\",[\"Slot\",4198],{\"name\":9,\"id\":1344},{\"slots\":4200,\"props\":4201},[],{\"value\":4202,\"locale\":30},[\"Date\",\"2025-11-18T17:12:03.903Z\"],{\"slots\":4204,\"props\":4205},[],{\"language\":30,\"post\":4206,\"class\":92,\"signedAccount\":-1},{\"id\":4207,\"iri\":4195,\"type\":37,\"visibility\":38,\"actorId\":4208,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":4209,\"language\":-2,\"tags\":4210,\"emojis\":4211,\"sensitive\":44,\"repliesCount\":10,\"sharesCount\":10,\"quotesCount\":10,\"reactionsCounts\":4212,\"reactionsCount\":16,\"linkId\":-2,\"linkUrl\":-2,\"url\":-2,\"updated\":4213,\"published\":4202,\"actor\":4214,\"link\":-2,\"sharedPost\":-2,\"replyTarget\":-2,\"mentions\":4244,\"media\":4245,\"shares\":4246,\"reactions\":4247},\"019a97fd-9717-7d66-8e31-1e26b49eaf60\",\"01962425-5e3f-715b-84e1-78d33055aa3a\",\"

おやすみ

\",{},{},{\"01962541-f189-7716-815d-6fc0c74d40b9\":16},[\"Date\",\"2025-11-18T17:12:03.903Z\"],{\"id\":4208,\"iri\":4215,\"type\":49,\"username\":4216,\"instanceHost\":4217,\"handleHost\":4217,\"handle\":4218,\"accountId\":-2,\"name\":4219,\"bioHtml\":4220,\"automaticallyApprovesFollowers\":44,\"avatarUrl\":4221,\"headerUrl\":4222,\"inboxUrl\":4223,\"sharedInboxUrl\":4224,\"followersUrl\":4225,\"featuredUrl\":-2,\"fieldHtmls\":4226,\"emojis\":4232,\"tags\":4233,\"sensitive\":44,\"successorId\":-2,\"aliases\":4234,\"followeesCount\":10,\"followersCount\":10,\"postsCount\":10,\"url\":4181,\"updated\":4235,\"published\":-2,\"created\":4236,\"instance\":4237,\"followers\":4241,\"blockees\":4242,\"blockers\":4243},\"https://misskey.04.si/users/8yzhmtnswt\",\"grapeapple\",\"misskey.04.si\",\"@grapeapple@misskey.04.si\",\"Porlam Nicla\",\"

りんごぱい裏方/Starlamp Network Projectメンバー
逸般の誤家庭ではないです
AS214675の一部としていんたーねっとの銀河をただよってます

\",\"https://obj.04.si/files/webpublic-0bfb0f39-3abf-44ab-9ce3-73c133d8ae15.png\",\"https://obj.04.si/files/webpublic-0e8c89a0-7bf7-4d61-b2ea-1a88514005b5.webp\",\"https://misskey.04.si/users/8yzhmtnswt/inbox\",\"https://misskey.04.si/inbox\",\"https://misskey.04.si/users/8yzhmtnswt/followers\",{\"なにも作ってないサイト\":4227,\"GitHub\":4228,\"おひとりさま\":4229,\"telegram\":4230,\"てすと\":4231},\"https://starlamp.su\",\"https://github.com/GrapeApple0\",\"@porlam@mi.starlamp.su\",\"https://t.me/porlamap\",\"‮ゃちごんり\",{},{},[],[\"Date\",\"2025-04-11T09:19:10.884Z\"],[\"Date\",\"2025-04-11T09:19:10.884Z\"],{\"host\":4217,\"software\":699,\"softwareVersion\":4238,\"updated\":4239,\"created\":4240},\"2025.10.0-pie-3.6.3\",[\"Date\",\"2025-11-16T14:19:24.500Z\"],[\"Date\",\"2025-01-04T14:56:14.212Z\"],[],[],[],[],[],[],[],{\"slots\":4249,\"props\":4250},[],{\"href\":2466,\"internalHref\":2467,\"class\":6,\"children\":4251},[\"Slot\",4252],{\"name\":9,\"id\":4253},175,{\"slots\":4255,\"props\":4256},[],{\"href\":2466,\"internalHref\":2467,\"children\":4257},[\"Slot\",4258],{\"name\":9,\"id\":4259},176,{\"slots\":4261,\"props\":4262},[],{\"href\":4263,\"internalHref\":4264,\"class\":22,\"children\":4265},\"https://23.social/@leyrer/115571812669022609\",\"/@leyrer@23.social/019a97f3-9a2a-7f78-8940-92d133c7b905\",[\"Slot\",4266],{\"name\":9,\"id\":2336},{\"slots\":4268,\"props\":4269},[],{\"value\":4270,\"locale\":30},[\"Date\",\"2025-11-18T17:11:51.000Z\"],{\"slots\":4272,\"props\":4273},[],{\"medium\":4274,\"class\":129},{\"postId\":4275,\"index\":10,\"type\":124,\"url\":4276,\"alt\":4277,\"width\":4278,\"height\":790,\"thumbnailKey\":-2,\"sensitive\":44},\"019a97f3-9a2a-7f78-8940-92d133c7b905\",\"https://cdn.masto.host/num23social/media_attachments/files/115/571/810/511/296/056/original/cf3896bd4fc4c475.png\",\"Supermarktaufsteller mit Dino-Schokoschirmchen\",750,{\"slots\":4280,\"props\":4281},[],{\"language\":30,\"post\":4282,\"class\":92,\"signedAccount\":-1},{\"id\":4275,\"iri\":4283,\"type\":37,\"visibility\":38,\"actorId\":2495,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":4284,\"language\":30,\"tags\":4285,\"emojis\":4286,\"sensitive\":44,\"repliesCount\":10,\"sharesCount\":10,\"quotesCount\":10,\"reactionsCounts\":4287,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":4263,\"updated\":4288,\"published\":4270,\"actor\":4289,\"link\":-2,\"sharedPost\":-2,\"replyTarget\":-2,\"mentions\":4303,\"media\":4304,\"shares\":4305,\"reactions\":4306},\"https://23.social/users/leyrer/statuses/115571812669022609\",\"

In AT gibt es jetzt Dino-Schokoschirmchen! :D

\",{},{},{},[\"Date\",\"2025-11-18T17:11:51.000Z\"],{\"id\":2495,\"iri\":2504,\"type\":49,\"username\":2505,\"instanceHost\":2506,\"handleHost\":2506,\"handle\":2507,\"accountId\":-2,\"name\":2505,\"bioHtml\":2508,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":2509,\"headerUrl\":2510,\"inboxUrl\":2511,\"sharedInboxUrl\":2512,\"followersUrl\":2513,\"featuredUrl\":2514,\"fieldHtmls\":4290,\"emojis\":4291,\"tags\":4292,\"sensitive\":44,\"successorId\":-2,\"aliases\":4293,\"followeesCount\":2524,\"followersCount\":2525,\"postsCount\":10,\"url\":2466,\"updated\":4294,\"published\":4295,\"created\":4296,\"instance\":4297,\"followers\":4300,\"blockees\":4301,\"blockers\":4302},{\"Blog & Impressum\":2516,\"Ham Radio\":2517,\"DECT @ CCC-Events\":2518,\"privileges\":2519},{},{},[2523],[\"Date\",\"2025-05-01T18:56:10.755Z\"],[\"Date\",\"2025-03-18T00:00:00.000Z\"],[\"Date\",\"2025-05-01T18:56:10.755Z\"],{\"host\":2506,\"software\":81,\"softwareVersion\":191,\"updated\":4298,\"created\":4299},[\"Date\",\"2025-11-18T12:30:56.543Z\"],[\"Date\",\"2025-03-12T06:47:26.656Z\"],[],[],[],[],[4274],[],[],{\"slots\":4308,\"props\":4309},[],{\"href\":1702,\"internalHref\":4310,\"class\":6,\"children\":4311},\"/@briankrebs@infosec.exchange\",[\"Slot\",4312],{\"name\":9,\"id\":4313},178,{\"slots\":4315,\"props\":4316},[],{\"href\":1702,\"internalHref\":4310,\"children\":4317},[\"Slot\",4318],{\"name\":9,\"id\":4319},179,{\"slots\":4321,\"props\":4322},[],{\"href\":4323,\"internalHref\":4324,\"class\":22,\"children\":4325},\"https://infosec.exchange/@briankrebs/115571733879444811\",\"/@briankrebs@infosec.exchange/019a97e8-4c15-7ef2-a23c-83ec39560b0f\",[\"Slot\",4326],{\"name\":9,\"id\":4327},180,{\"slots\":4329,\"props\":4330},[],{\"value\":4331,\"locale\":30},[\"Date\",\"2025-11-18T16:51:48.000Z\"],{\"slots\":4333,\"props\":4334},[],{\"href\":1702,\"internalHref\":4310,\"class\":6,\"children\":4335},[\"Slot\",4336],{\"name\":9,\"id\":4337},181,{\"slots\":4339,\"props\":4340},[],{\"href\":1702,\"internalHref\":4310,\"children\":4341},[\"Slot\",4342],{\"name\":9,\"id\":4343},182,{\"slots\":4345,\"props\":4346},[],{\"href\":4347,\"internalHref\":4348,\"class\":22,\"children\":4349},\"https://infosec.exchange/@briankrebs/115571773214855617\",\"/@briankrebs@infosec.exchange/019a97f3-8286-7c5c-9bc4-e36ed98068a8\",[\"Slot\",4350],{\"name\":9,\"id\":4351},183,{\"slots\":4353,\"props\":4354},[],{\"value\":4355,\"locale\":30},[\"Date\",\"2025-11-18T17:01:49.000Z\"],{\"slots\":4357,\"props\":4358},[],{\"href\":394,\"internalHref\":395,\"children\":4359},[\"Slot\",4360],{\"name\":9,\"id\":4361},184,{\"slots\":4363,\"props\":4364},[],{\"language\":30,\"post\":4365,\"class\":92,\"signedAccount\":-1},{\"id\":3678,\"iri\":4366,\"type\":37,\"visibility\":38,\"actorId\":1684,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":4367,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":4368,\"language\":30,\"tags\":4369,\"emojis\":4370,\"sensitive\":44,\"repliesCount\":10,\"sharesCount\":296,\"quotesCount\":10,\"reactionsCounts\":4371,\"reactionsCount\":10,\"linkId\":4372,\"linkUrl\":4373,\"url\":4347,\"updated\":4374,\"published\":4355,\"actor\":4375,\"link\":4389,\"replyTarget\":4398,\"mentions\":4421,\"media\":4422,\"shares\":4423,\"reactions\":4424},\"https://infosec.exchange/users/briankrebs/statuses/115571773214855617\",\"019a97e8-4c15-7ef2-a23c-83ec39560b0f\",\"

Can someone please explain what this means?

"A Cloudflare spokesperson said the "root cause" of the outage was an automatically generated configuration file used to manage threat traffic that "grew beyond an expected size of entries," which triggered a crash in the software system that handles traffic for several of its services."

https://www.cnbc.com/2025/11/18/cloudflare-down-outage-traffic-spike-x-chatgpt.html

\",{},{},{},\"019a97f3-8279-738e-810b-5b9a36dd8db7\",\"https://www.cnbc.com/2025/11/18/cloudflare-down-outage-traffic-spike-x-chatgpt.html\",[\"Date\",\"2025-11-18T17:01:49.000Z\"],{\"id\":1684,\"iri\":1686,\"type\":49,\"username\":1687,\"instanceHost\":1609,\"handleHost\":1609,\"handle\":1688,\"accountId\":-2,\"name\":1689,\"bioHtml\":1690,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":1691,\"headerUrl\":1692,\"inboxUrl\":1693,\"sharedInboxUrl\":1616,\"followersUrl\":1694,\"featuredUrl\":-2,\"fieldHtmls\":4376,\"emojis\":4377,\"tags\":4378,\"sensitive\":44,\"successorId\":-2,\"aliases\":4379,\"followeesCount\":1700,\"followersCount\":1701,\"postsCount\":10,\"url\":1702,\"updated\":4380,\"published\":4381,\"created\":4382,\"instance\":4383,\"followers\":4386,\"blockees\":4387,\"blockers\":4388},{\"website\":1696},{},{},[],[\"Date\",\"2025-03-12T20:10:33.493Z\"],[\"Date\",\"2022-11-05T00:00:00.000Z\"],[\"Date\",\"2025-03-12T20:10:33.493Z\"],{\"host\":1609,\"software\":81,\"softwareVersion\":1639,\"updated\":4384,\"created\":4385},[\"Date\",\"2025-11-18T17:21:57.203Z\"],[\"Date\",\"2025-01-21T02:58:45.166Z\"],[],[],[],{\"id\":4372,\"url\":4373,\"title\":4390,\"siteName\":4391,\"type\":352,\"description\":4392,\"author\":-2,\"imageUrl\":4393,\"imageAlt\":-2,\"imageType\":356,\"imageWidth\":4394,\"imageHeight\":4395,\"creatorId\":-2,\"created\":4396,\"scraped\":4397,\"creator\":-2},\"Cloudflare says outage that hit X, ChatGPT and other sites is resolved\",\"CNBC\",\"OpenAI's ChatGPT and Elon Musk's social media platform X were among the sites impacted by the Cloudflare issues.\",\"https://image.cnbcfm.com/api/v1/image/108227419-1763475252912-gettyimages-2247287964-300534final.jpeg?v=1763475263&w=1920&h=1080\",1920,1080,[\"Date\",\"2025-11-18T17:11:49.628Z\"],[\"Date\",\"2025-11-18T17:11:49.628Z\"],{\"id\":4367,\"iri\":4399,\"type\":37,\"visibility\":38,\"actorId\":1684,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":4400,\"language\":30,\"tags\":4401,\"emojis\":4402,\"sensitive\":44,\"repliesCount\":10,\"sharesCount\":1906,\"quotesCount\":16,\"reactionsCounts\":4403,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":4323,\"updated\":4404,\"published\":4331,\"actor\":4405,\"link\":-2,\"mentions\":4419,\"media\":4420},\"https://infosec.exchange/users/briankrebs/statuses/115571733879444811\",\"

Chatting with a friend about Cloudflare's intermittent outages today, they brought up an interesting point: How many organizations have started relying on Cloudflare to do basic security blocking and tackling stuff, like stopping SQL injection attacks at the edge? Maybe your devs were lazy at blocking this stuff in the past b/c CF was the control layer to compensate for that.

You might say well okay but if CF is down, so are the sites relying on them, and that's true. But a lot of organizations will switch CF off during these times to keep their sites and services reachable and running. And my friend's point was that for those organizations, they might want to take a closer look at the traffic they received during this eight-hour outage window or whatever, and I think that's sound advice.

\",{},{},{},[\"Date\",\"2025-11-18T16:51:48.000Z\"],{\"id\":1684,\"iri\":1686,\"type\":49,\"username\":1687,\"instanceHost\":1609,\"handleHost\":1609,\"handle\":1688,\"accountId\":-2,\"name\":1689,\"bioHtml\":1690,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":1691,\"headerUrl\":1692,\"inboxUrl\":1693,\"sharedInboxUrl\":1616,\"followersUrl\":1694,\"featuredUrl\":-2,\"fieldHtmls\":4406,\"emojis\":4407,\"tags\":4408,\"sensitive\":44,\"successorId\":-2,\"aliases\":4409,\"followeesCount\":1700,\"followersCount\":1701,\"postsCount\":10,\"url\":1702,\"updated\":4410,\"published\":4411,\"created\":4412,\"instance\":4413,\"followers\":4416,\"blockees\":4417,\"blockers\":4418},{\"website\":1696},{},{},[],[\"Date\",\"2025-03-12T20:10:33.493Z\"],[\"Date\",\"2022-11-05T00:00:00.000Z\"],[\"Date\",\"2025-03-12T20:10:33.493Z\"],{\"host\":1609,\"software\":81,\"softwareVersion\":1639,\"updated\":4414,\"created\":4415},[\"Date\",\"2025-11-18T17:21:57.203Z\"],[\"Date\",\"2025-01-21T02:58:45.166Z\"],[],[],[],[],[],[],[],[],[],{\"slots\":4426,\"props\":4427},[],{\"href\":4428,\"internalHref\":4429,\"class\":6,\"children\":4430},\"https://toot.cafe/@baldur\",\"/@baldur@toot.cafe\",[\"Slot\",4431],{\"name\":9,\"id\":4432},185,{\"slots\":4434,\"props\":4435},[],{\"href\":4428,\"internalHref\":4429,\"children\":4436},[\"Slot\",4437],{\"name\":9,\"id\":4438},186,{\"slots\":4440,\"props\":4441},[],{\"href\":4442,\"internalHref\":4443,\"class\":22,\"children\":4444},\"https://toot.cafe/@baldur/115570002490755386\",\"/@baldur@toot.cafe/019a9772-a031-7254-a814-052055acbcd2\",[\"Slot\",4445],{\"name\":9,\"id\":4446},187,{\"slots\":4448,\"props\":4449},[],{\"value\":4450,\"locale\":30},[\"Date\",\"2025-11-18T09:31:29.000Z\"],{\"slots\":4452,\"props\":4453},[],{\"href\":4454,\"internalHref\":4455,\"class\":6,\"children\":4456},\"https://infosec.exchange/@JessTheUnstill\",\"/@JessTheUnstill@infosec.exchange\",[\"Slot\",4457],{\"name\":9,\"id\":4458},188,{\"slots\":4460,\"props\":4461},[],{\"href\":4454,\"internalHref\":4455,\"children\":4462},[\"Slot\",4463],{\"name\":9,\"id\":4464},189,{\"slots\":4466,\"props\":4467},[],{\"href\":4468,\"internalHref\":4469,\"class\":22,\"children\":4470},\"https://infosec.exchange/@JessTheUnstill/115571721123451477\",\"/@JessTheUnstill@infosec.exchange/019a97e2-6bd0-7a77-b403-0403a0d43b4b\",[\"Slot\",4471],{\"name\":9,\"id\":4472},190,{\"slots\":4474,\"props\":4475},[],{\"value\":4476,\"locale\":30},[\"Date\",\"2025-11-18T16:48:34.000Z\"],{\"slots\":4478,\"props\":4479},[],{\"href\":4480,\"internalHref\":4481,\"children\":4482},\"https://fosstodon.org/@krosylight\",\"/@krosylight@fosstodon.org\",[\"Slot\",4483],{\"name\":9,\"id\":4484},191,{\"slots\":4486,\"props\":4487},[],{\"language\":30,\"post\":4488,\"class\":92,\"signedAccount\":-1},{\"id\":4489,\"iri\":4490,\"type\":37,\"visibility\":38,\"actorId\":4491,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":4492,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":4493,\"language\":30,\"tags\":4494,\"emojis\":4495,\"sensitive\":44,\"repliesCount\":10,\"sharesCount\":3796,\"quotesCount\":16,\"reactionsCounts\":4496,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":4468,\"updated\":4497,\"published\":4476,\"actor\":4498,\"link\":-2,\"replyTarget\":4525,\"mentions\":4573,\"media\":4583,\"shares\":4584,\"reactions\":4585},\"019a97e2-6bd0-7a77-b403-0403a0d43b4b\",\"https://infosec.exchange/users/JessTheUnstill/statuses/115571721123451477\",\"01959baa-ba80-7766-9de0-174f30d5aee1\",\"019a9772-a031-7254-a814-052055acbcd2\",\"

If you want as close to an A/B test in misogyny in industry as you can get, talk to trans women. Legit the same exact person before and after, and many many of us watch our careers stall out. I've seen my raises and bonuses halt entirely for the last 5 years while team members get raises and bonuses. I had a great grand boss directly interfering with my work and bashing my communication styles when I asked many of my colleagues and they said they saw nothing different in how I communicated than a great many of my men colleagues.

Now I daily consider how much longer I'll make it in tech.
@baldur

\",{},{},{},[\"Date\",\"2025-11-18T16:48:34.000Z\"],{\"id\":4491,\"iri\":4499,\"type\":49,\"username\":4500,\"instanceHost\":1609,\"handleHost\":1609,\"handle\":4501,\"accountId\":-2,\"name\":4502,\"bioHtml\":4503,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":4504,\"headerUrl\":4505,\"inboxUrl\":4506,\"sharedInboxUrl\":1616,\"followersUrl\":4507,\"featuredUrl\":-2,\"fieldHtmls\":4508,\"emojis\":4512,\"tags\":4513,\"sensitive\":44,\"successorId\":-2,\"aliases\":4514,\"followeesCount\":4515,\"followersCount\":10,\"postsCount\":10,\"url\":4454,\"updated\":4516,\"published\":4517,\"created\":4518,\"instance\":4519,\"followers\":4522,\"blockees\":4523,\"blockers\":4524},\"https://infosec.exchange/users/JessTheUnstill\",\"JessTheUnstill\",\"@JessTheUnstill@infosec.exchange\",\"Jess👾\",\"

Queer 🏳️‍🌈🏳️‍⚧️
Cybersecurity
Nerd
Neurodiverse
I am a woman, but I'm CERTAINLY not a lady.
I don't actually have zero followers, they're just intentionally hidden.

\",\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/249/336/509/006/567/original/efe86edb68c5e25b.jpg\",\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/249/336/509/006/567/original/ecc4d04ee5d918dc.png\",\"https://infosec.exchange/users/JessTheUnstill/inbox\",\"https://infosec.exchange/users/JessTheUnstill/followers\",{\"Pronouns\":4509,\"BlueSky\":4510,\"Signal\":4511},\"she/her\",\"@jesstheunstill.bsky.social\",\"Available upon request\",{},{},[],1071,[\"Date\",\"2025-03-15T21:16:52.190Z\"],[\"Date\",\"2022-10-29T00:00:00.000Z\"],[\"Date\",\"2025-03-15T21:16:52.190Z\"],{\"host\":1609,\"software\":81,\"softwareVersion\":1639,\"updated\":4520,\"created\":4521},[\"Date\",\"2025-11-18T17:21:57.203Z\"],[\"Date\",\"2025-01-21T02:58:45.166Z\"],[],[],[],{\"id\":4492,\"iri\":4526,\"type\":37,\"visibility\":38,\"actorId\":4527,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":4528,\"language\":30,\"tags\":4529,\"emojis\":4530,\"sensitive\":44,\"repliesCount\":10,\"sharesCount\":398,\"quotesCount\":10,\"reactionsCounts\":4531,\"reactionsCount\":10,\"linkId\":4532,\"linkUrl\":4533,\"url\":4442,\"updated\":4534,\"published\":4450,\"actor\":4535,\"link\":4566,\"mentions\":4571,\"media\":4572},\"https://toot.cafe/users/baldur/statuses/115570002490755386\",\"0195ceb7-ed9c-7082-a848-b0cc7f62e170\",\"

“Can I vent? All of the emotions from my now former tech career. : r/womenintech”

https://www.reddit.com/r/womenintech/comments/1oz2aoz/can_i_vent_all_of_the_emotions_from_my_now_former/

The story here is, TBH, more the norm for women in tech than not.

\",{},{},{},\"019a9772-a023-7a3f-93aa-64a0d48f2fe6\",\"https://www.reddit.com/r/womenintech/comments/1oz2aoz/can_i_vent_all_of_the_emotions_from_my_now_former/\",[\"Date\",\"2025-11-18T09:31:29.000Z\"],{\"id\":4527,\"iri\":4536,\"type\":49,\"username\":4537,\"instanceHost\":4538,\"handleHost\":4538,\"handle\":4539,\"accountId\":-2,\"name\":4540,\"bioHtml\":4541,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":4542,\"headerUrl\":4543,\"inboxUrl\":4544,\"sharedInboxUrl\":4545,\"followersUrl\":4546,\"featuredUrl\":-2,\"fieldHtmls\":4547,\"emojis\":4551,\"tags\":4552,\"sensitive\":44,\"successorId\":-2,\"aliases\":4553,\"followeesCount\":4554,\"followersCount\":4555,\"postsCount\":10,\"url\":4428,\"updated\":4556,\"published\":4557,\"created\":4558,\"instance\":4559,\"followers\":4563,\"blockees\":4564,\"blockers\":4565},\"https://toot.cafe/users/baldur\",\"baldur\",\"toot.cafe\",\"@baldur@toot.cafe\",\"Baldur Bjarnason\",\"

Writer, web developer and consultant based in Hveragerði, Iceland. Lapsed Interactive Media Academic. Webby Tech Stuff and webby book stuff.

\",\"https://assets.toot.cafe/accounts/avatars/000/003/681/original/65a3633062de133e.jpg\",\"https://assets.toot.cafe/accounts/headers/000/003/681/original/674846af6bf4224b.jpg\",\"https://toot.cafe/users/baldur/inbox\",\"https://toot.cafe/inbox\",\"https://toot.cafe/users/baldur/followers\",{\"Blog\":4548,\"AI Book\":4549,\"Pronouns\":434,\"Book\":4550},\"https://www.baldurbjarnason.com/\",\"https://illusion.baldurbjarnason.com/\",\"https://softwarecrisis.baldurbjarnason.com/\",{},{},[],857,7494,[\"Date\",\"2025-03-25T19:11:55.293Z\"],[\"Date\",\"2017-04-08T00:00:00.000Z\"],[\"Date\",\"2025-03-25T19:11:55.293Z\"],{\"host\":4538,\"software\":81,\"softwareVersion\":4560,\"updated\":4561,\"created\":4562},\"4.4.7\",[\"Date\",\"2025-10-21T16:24:51.101Z\"],[\"Date\",\"2025-03-11T23:17:16.946Z\"],[],[],[],{\"id\":4532,\"url\":4533,\"title\":4567,\"siteName\":-2,\"type\":-2,\"description\":-2,\"author\":-2,\"imageUrl\":4568,\"imageAlt\":-2,\"imageType\":-2,\"imageWidth\":-2,\"imageHeight\":-2,\"creatorId\":-2,\"created\":4569,\"scraped\":4570,\"creator\":-2},\"Reddit - The heart of the internet\",\"https://id.rlcdn.com/472486.gif\",[\"Date\",\"2025-11-18T14:51:03.082Z\"],[\"Date\",\"2025-11-18T14:51:03.082Z\"],[],[],[4574],{\"postId\":4489,\"actorId\":4527,\"actor\":4575},{\"id\":4527,\"iri\":4536,\"type\":49,\"username\":4537,\"instanceHost\":4538,\"handleHost\":4538,\"handle\":4539,\"accountId\":-2,\"name\":4540,\"bioHtml\":4541,\"automaticallyApprovesFollowers\":56,\"avatarUrl\":4542,\"headerUrl\":4543,\"inboxUrl\":4544,\"sharedInboxUrl\":4545,\"followersUrl\":4546,\"featuredUrl\":-2,\"fieldHtmls\":4576,\"emojis\":4577,\"tags\":4578,\"sensitive\":44,\"successorId\":-2,\"aliases\":4579,\"followeesCount\":4554,\"followersCount\":4555,\"postsCount\":10,\"url\":4428,\"updated\":4580,\"published\":4581,\"created\":4582},{\"Blog\":4548,\"AI Book\":4549,\"Pronouns\":434,\"Book\":4550},{},{},[],[\"Date\",\"2025-03-25T19:11:55.293Z\"],[\"Date\",\"2017-04-08T00:00:00.000Z\"],[\"Date\",\"2025-03-25T19:11:55.293Z\"],[],[],[]]");