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.

1
0
0
0

I want to try switching to Linux.

However, I cannot find a working remote desktop system that allows me to take over the same session that I was using locally so that I can switch back and forth between being at the computer and being remote without having to log out. Blanking/Locking the local screen while I'm connected remotely is also a need.

Basically I need it to work as close to Microsoft's RDP as possible. If anyone can help me with this, you'll convert me to a Linux user.

0
0
0
0
0
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
0
0
0
0

The next will be on 2 December 2025 at Reaktor, Yliopistonkatu 4.

meetup.com/pydatahelsinki/even

We'll try something new: a panel discussion on how to land a job, with panelists from three different companies who have interviewed hundreds of candidates.

We will also have some talks as usual, and a new edition of the PyData Helsinki .

0
0
0
0
0
0

So real talk, all you folks bloviating about "lazy devs relying on Cloudflare" to protect from bot swarms:

What is my option, eh? I have a small website. My hosting provider's answer to the botswarms is "use Cloudflare". Best I can manage on my own is to toss 403s at all of China. It lowers bandwidth suckage, but isn't really an answer. I'm limited in what I can install.

Every suggestion I get is: self-host and install <FOSS thing>.

There has GOT to be a better answer.

*crickets*

0
0
0
0
0

So real talk, all you folks bloviating about "lazy devs relying on Cloudflare" to protect from bot swarms:

What is my option, eh? I have a small website. My hosting provider's answer to the botswarms is "use Cloudflare". Best I can manage on my own is to toss 403s at all of China. It lowers bandwidth suckage, but isn't really an answer. I'm limited in what I can install.

Every suggestion I get is: self-host and install <FOSS thing>.

There has GOT to be a better answer.

*crickets*

0
0
0

Failure mode: I hope they're using a sensible regexp to implement this otherwise we could end up discussing scocaineling boats.

EDIT: Oops, and it had better not apply it recursively, either, or we're in a heap of cocococococococ...
app.wafrn.net/fediverse/post/f

0
0
1
0
0
0
0
0
0
0
0

accounts posting videos:

➡️ @pg4iJoop Stakenborg - Amateur radio operator, especially Morse code
➡️ @n3vem - Amateur radio, amateur rocketry, radio rockets
➡️ @kd8bxpLeRoy Miller - Amateur radio, robotics, retro computing
➡️ @raekRasmus SA5RJS 📺 - Electronics & radio, building radio equipment
➡️ @floFlorence - Retro tech incl radio transmitters & receivers
➡️ @vwestlife_makertubeVWestlife - All about classic technology including radios
➡️ @jmh59 - Railways, model trains, amateur radio

0
0
0
1
0

On the one hand I'm glad to see the increase in understanding that software engineering isn't writing code. On the other we now have to counter the "deduction" that this means writing code is longer a valuable skill lolol. If software engineering is a more abstract skillset than writing code, how exactly do people acquire it...? Spoiler: Aye, it's by writing code.

0
0
0
0
0
0
0

I had the displeasure of reading an article in the Harvard student paper by an economics major who said in apparent seriousness that comp sci majors are wasting time on theory classes like “Introduction to Algorithms and their Limitations” when they could be learning REAL skills like prompt engineering.

Algorithms are not useless theory, you unbalanced red-red tree. They’re the entire fucking point of the degree, you empty hash bucket. Go gamble daddy’s money on a startup your buddies thought up last night, you quadratic insert operation

0
0
0
1
1
0
0
0
\\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\":749,\"props\":750},[],{\"language\":30,\"post\":751,\"class\":85,\"signedAccount\":-1},{\"id\":736,\"iri\":752,\"type\":36,\"visibility\":37,\"actorId\":753,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":754,\"language\":30,\"tags\":755,\"emojis\":765,\"sensitive\":42,\"repliesCount\":10,\"sharesCount\":93,\"quotesCount\":10,\"reactionsCounts\":766,\"reactionsCount\":10,\"linkId\":767,\"linkUrl\":768,\"url\":715,\"updated\":769,\"published\":723,\"actor\":770,\"link\":805,\"replyTarget\":-2,\"mentions\":809,\"media\":810,\"shares\":811,\"reactions\":812},\"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\":756,\"wasm\":757,\"wisp\":758,\"guile\":759,\"scheme\":760,\"webdev\":761,\"spritely\":762,\"programming\":763,\"webassembly\":764},\"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\":753,\"iri\":771,\"type\":47,\"username\":772,\"instanceHost\":773,\"handleHost\":773,\"handle\":774,\"accountId\":-2,\"name\":775,\"bioHtml\":776,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":777,\"headerUrl\":778,\"inboxUrl\":779,\"sharedInboxUrl\":780,\"followersUrl\":781,\"featuredUrl\":782,\"fieldHtmls\":783,\"emojis\":788,\"tags\":789,\"sensitive\":42,\"successorId\":-2,\"aliases\":794,\"followeesCount\":683,\"followersCount\":795,\"postsCount\":10,\"url\":701,\"updated\":796,\"published\":797,\"created\":798,\"instance\":799,\"followers\":802,\"blockees\":803,\"blockers\":804},\"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\":784,\"Profilbilder\":785,\"Rollenspiel-Webseite\":786,\"PGP\":787},\"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\":790,\"#ttrpg\":791,\"#freeculture\":792,\"#freesoftware\":793},\"https://rollenspiel.social/tags/Filk\",\"https://rollenspiel.social/tags/ttrpg\",\"https://rollenspiel.social/tags/freeculture\",\"https://rollenspiel.social/tags/freesoftware\",[],1174,[\"Date\",\"2025-06-03T08:40:47.701Z\"],[\"Date\",\"2020-06-07T00:00:00.000Z\"],[\"Date\",\"2025-06-03T08:40:47.701Z\"],{\"host\":773,\"software\":179,\"softwareVersion\":353,\"updated\":800,\"created\":801},[\"Date\",\"2025-11-16T21:30:04.870Z\"],[\"Date\",\"2025-03-29T16:16:08.036Z\"],[],[],[],{\"id\":767,\"url\":768,\"title\":806,\"siteName\":-2,\"type\":-2,\"description\":-2,\"author\":-2,\"imageUrl\":-2,\"imageAlt\":-2,\"imageType\":-2,\"imageWidth\":-2,\"imageHeight\":-2,\"creatorId\":-2,\"created\":807,\"scraped\":808,\"creator\":-2},\"Hello Hoot\",[\"Date\",\"2025-11-18T20:54:56.895Z\"],[\"Date\",\"2025-11-18T20:54:56.895Z\"],[],[735,743],[],[],{\"slots\":814,\"props\":815},[],{\"href\":816,\"internalHref\":817,\"class\":6,\"children\":818},\"https://fosstodon.org/@brianokken\",\"/@brianokken@fosstodon.org\",[\"Slot\",819],{\"name\":9,\"id\":820},32,{\"slots\":822,\"props\":823},[],{\"href\":816,\"internalHref\":817,\"children\":824},[\"Slot\",825],{\"name\":9,\"id\":826},33,{\"slots\":828,\"props\":829},[],{\"href\":830,\"internalHref\":831,\"class\":22,\"children\":832},\"https://fosstodon.org/@brianokken/115549997593417798\",\"/@brianokken@fosstodon.org/019a9856-3194-74e4-855d-692414f1dac9\",[\"Slot\",833],{\"name\":9,\"id\":834},34,{\"slots\":836,\"props\":837},[],{\"value\":838,\"locale\":30},[\"Date\",\"2025-11-14T20:43:59.000Z\"],{\"slots\":840,\"props\":841},[],{\"href\":842,\"internalHref\":843,\"class\":6,\"children\":844},\"https://fosstodon.org/@ThePSF\",\"/@ThePSF@fosstodon.org\",[\"Slot\",845],{\"name\":9,\"id\":846},35,{\"slots\":848,\"props\":849},[],{\"href\":842,\"internalHref\":843,\"children\":850},[\"Slot\",851],{\"name\":9,\"id\":852},36,{\"slots\":854,\"props\":855},[],{\"href\":856,\"internalHref\":857,\"class\":22,\"children\":858},\"https://fosstodon.org/@ThePSF/115572236196995134\",\"/@ThePSF@fosstodon.org/019a9856-35c0-7f9b-a73c-08a9af30b693\",[\"Slot\",859],{\"name\":9,\"id\":860},37,{\"slots\":862,\"props\":863},[],{\"value\":864,\"locale\":30},[\"Date\",\"2025-11-18T18:59:33.000Z\"],{\"slots\":866,\"props\":867},[],{\"href\":868,\"internalHref\":869,\"children\":870},\"https://mastodon.social/@hugovk\",\"/@hugovk@mastodon.social\",[\"Slot\",871],{\"name\":9,\"id\":872},38,{\"slots\":874,\"props\":875},[],{\"language\":30,\"post\":876,\"class\":85,\"signedAccount\":-1},{\"id\":877,\"iri\":878,\"type\":36,\"visibility\":37,\"actorId\":879,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":880,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":881,\"language\":30,\"tags\":882,\"emojis\":883,\"sensitive\":42,\"repliesCount\":10,\"sharesCount\":16,\"quotesCount\":10,\"reactionsCounts\":884,\"reactionsCount\":10,\"linkId\":885,\"linkUrl\":886,\"url\":856,\"updated\":887,\"published\":864,\"actor\":888,\"link\":922,\"replyTarget\":926,\"mentions\":1005,\"media\":1024,\"shares\":1025,\"reactions\":1026},\"019a9856-35c0-7f9b-a73c-08a9af30b693\",\"https://fosstodon.org/users/ThePSF/statuses/115572236196995134\",\"019586d5-7aee-7b51-8031-1c179983246c\",\"019a9856-3194-74e4-855d-692414f1dac9\",\"

@brianokken @brettcannon here's an SVG so you can make it the right size for your desktop wallpaper or put it on a tshirt! https://www.dropbox.com/scl/fi/bnht04gq63p3un90s76vm/Python-is-for-Everyone-Main-Theme-PSF-2025-Fundraiser.svg?rlkey=v7ocvrbh1xhq6w6fpp1swdq3z&e=1&st=1tw0cpw1&dl=0

\",{},{},{},\"019a9856-35b4-775b-adc1-da466a5f51bd\",\"https://www.dropbox.com/scl/fi/bnht04gq63p3un90s76vm/Python-is-for-Everyone-Main-Theme-PSF-2025-Fundraiser.svg?rlkey=v7ocvrbh1xhq6w6fpp1swdq3z&e=1&st=1tw0cpw1&dl=0\",[\"Date\",\"2025-11-18T18:59:33.000Z\"],{\"id\":879,\"iri\":889,\"type\":47,\"username\":890,\"instanceHost\":891,\"handleHost\":891,\"handle\":892,\"accountId\":-2,\"name\":893,\"bioHtml\":894,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":895,\"headerUrl\":896,\"inboxUrl\":897,\"sharedInboxUrl\":898,\"followersUrl\":899,\"featuredUrl\":900,\"fieldHtmls\":901,\"emojis\":906,\"tags\":907,\"sensitive\":42,\"successorId\":-2,\"aliases\":910,\"followeesCount\":911,\"followersCount\":912,\"postsCount\":10,\"url\":842,\"updated\":913,\"published\":914,\"created\":915,\"instance\":916,\"followers\":919,\"blockees\":920,\"blockers\":921},\"https://fosstodon.org/users/ThePSF\",\"ThePSF\",\"fosstodon.org\",\"@ThePSF@fosstodon.org\",\"Python Software Foundation\",\"

This is the official PSF account. We promote, protect, and advance the Python programming language, and support and facilitate the growth of a diverse and international community of Python programmers. #python #PyConUS

\",\"https://cdn.fosstodon.org/accounts/avatars/109/309/719/616/056/810/original/de2b56465b4943c1.png\",\"https://cdn.fosstodon.org/accounts/headers/109/309/719/616/056/810/original/a252345233ee827c.png\",\"https://fosstodon.org/users/ThePSF/inbox\",\"https://fosstodon.org/inbox\",\"https://fosstodon.org/users/ThePSF/followers\",\"https://fosstodon.org/users/ThePSF/collections/featured\",{\"Website\":902,\"Blog\":903,\"Newsletter\":904,\"Donate\":905},\"https://www.python.org/psf\",\"https://pyfound.blogspot.com/\",\"https://www.python.org/psf/newsletter/\",\"https://psfmember.org/civicrm/contribute/transact/?reset=1&id=40\",{},{\"#python\":908,\"#pyconus\":909},\"https://fosstodon.org/tags/python\",\"https://fosstodon.org/tags/pyconus\",[],84,13619,[\"Date\",\"2025-03-11T20:11:32.463Z\"],[\"Date\",\"2022-11-08T00:00:00.000Z\"],[\"Date\",\"2025-03-11T20:11:32.463Z\"],{\"host\":891,\"software\":179,\"softwareVersion\":353,\"updated\":917,\"created\":918},[\"Date\",\"2025-11-20T15:16:07.317Z\"],[\"Date\",\"2024-12-19T06:40:28.021Z\"],[],[],[],{\"id\":885,\"url\":886,\"title\":923,\"siteName\":-2,\"type\":-2,\"description\":-2,\"author\":-2,\"imageUrl\":-2,\"imageAlt\":-2,\"imageType\":-2,\"imageWidth\":-2,\"imageHeight\":-2,\"creatorId\":-2,\"created\":924,\"scraped\":925,\"creator\":-2},\"Dropbox\",[\"Date\",\"2025-11-18T18:59:37.974Z\"],[\"Date\",\"2025-11-18T18:59:37.974Z\"],{\"id\":880,\"iri\":927,\"type\":36,\"visibility\":37,\"actorId\":928,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":929,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":930,\"language\":30,\"tags\":931,\"emojis\":932,\"sensitive\":42,\"repliesCount\":10,\"sharesCount\":10,\"quotesCount\":10,\"reactionsCounts\":933,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":830,\"updated\":934,\"published\":838,\"actor\":935,\"link\":-2,\"mentions\":964,\"media\":1004},\"https://fosstodon.org/users/brianokken/statuses/115549997593417798\",\"0195f126-16a4-7e59-ba80-ffcf5dac1adf\",\"019a8414-6a0c-7de0-8d9c-b433050311d2\",\"

@brettcannon @ThePSF And t-shirts

\",{},{},{},[\"Date\",\"2025-11-14T20:43:59.000Z\"],{\"id\":928,\"iri\":936,\"type\":47,\"username\":937,\"instanceHost\":891,\"handleHost\":891,\"handle\":938,\"accountId\":-2,\"name\":939,\"bioHtml\":940,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":941,\"headerUrl\":942,\"inboxUrl\":943,\"sharedInboxUrl\":898,\"followersUrl\":944,\"featuredUrl\":-2,\"fieldHtmls\":945,\"emojis\":949,\"tags\":951,\"sensitive\":42,\"successorId\":-2,\"aliases\":952,\"followeesCount\":953,\"followersCount\":954,\"postsCount\":10,\"url\":816,\"updated\":955,\"published\":956,\"created\":957,\"instance\":958,\"followers\":961,\"blockees\":962,\"blockers\":963},\"https://fosstodon.org/users/brianokken\",\"brianokken\",\"@brianokken@fosstodon.org\",\"Brian Okken :python:\",\"

Lead Software Engineer
Author of “Python Testing with pytest” #Python

\",\"https://cdn.fosstodon.org/accounts/avatars/109/286/212/810/648/071/original/5618b5f9cc1638ba.jpeg\",\"https://cdn.fosstodon.org/accounts/headers/109/286/212/810/648/071/original/f0b801f28922274d.jpg\",\"https://fosstodon.org/users/brianokken/inbox\",\"https://fosstodon.org/users/brianokken/followers\",{\"Python Bytes Podcast\":946,\"pytest course\":947,\"Test & Code Podcast\":948},\"https://PythonBytes.fm\",\"https://courses.pythontest.com\",\"https://testandcode.com\",{\":python:\":950},\"https://cdn.fosstodon.org/custom_emojis/images/000/025/124/original/7e1fe81995650028.png\",{},[],288,2665,[\"Date\",\"2025-04-01T11:39:20.101Z\"],[\"Date\",\"2022-11-04T00:00:00.000Z\"],[\"Date\",\"2025-04-01T11:39:20.101Z\"],{\"host\":891,\"software\":179,\"softwareVersion\":353,\"updated\":959,\"created\":960},[\"Date\",\"2025-11-20T15:16:07.317Z\"],[\"Date\",\"2024-12-19T06:40:28.021Z\"],[],[],[],[965,974],{\"postId\":880,\"actorId\":879,\"actor\":966},{\"id\":879,\"iri\":889,\"type\":47,\"username\":890,\"instanceHost\":891,\"handleHost\":891,\"handle\":892,\"accountId\":-2,\"name\":893,\"bioHtml\":894,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":895,\"headerUrl\":896,\"inboxUrl\":897,\"sharedInboxUrl\":898,\"followersUrl\":899,\"featuredUrl\":900,\"fieldHtmls\":967,\"emojis\":968,\"tags\":969,\"sensitive\":42,\"successorId\":-2,\"aliases\":970,\"followeesCount\":911,\"followersCount\":912,\"postsCount\":10,\"url\":842,\"updated\":971,\"published\":972,\"created\":973},{\"Website\":902,\"Blog\":903,\"Newsletter\":904,\"Donate\":905},{},{\"#python\":908,\"#pyconus\":909},[],[\"Date\",\"2025-03-11T20:11:32.463Z\"],[\"Date\",\"2022-11-08T00:00:00.000Z\"],[\"Date\",\"2025-03-11T20:11:32.463Z\"],{\"postId\":880,\"actorId\":975,\"actor\":976},\"01977b79-2236-754b-b871-ddf55d179c0b\",{\"id\":975,\"iri\":977,\"type\":47,\"username\":978,\"instanceHost\":249,\"handleHost\":249,\"handle\":979,\"accountId\":-2,\"name\":980,\"bioHtml\":981,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":982,\"headerUrl\":983,\"inboxUrl\":984,\"sharedInboxUrl\":256,\"followersUrl\":985,\"featuredUrl\":986,\"fieldHtmls\":987,\"emojis\":992,\"tags\":993,\"sensitive\":42,\"successorId\":-2,\"aliases\":996,\"followeesCount\":998,\"followersCount\":999,\"postsCount\":10,\"url\":1000,\"updated\":1001,\"published\":1002,\"created\":1003},\"https://mastodon.social/users/brettcannon\",\"brettcannon\",\"@brettcannon@mastodon.social\",\"Brett Cannon\",\"

#Python core developer; snarky #Canadian

\",\"https://files.mastodon.social/accounts/avatars/114/633/944/987/767/035/original/7b8576389dc1e31e.jpg\",\"https://files.mastodon.social/accounts/headers/114/633/944/987/767/035/original/43b47a73f082eff5.jpeg\",\"https://mastodon.social/users/brettcannon/inbox\",\"https://mastodon.social/users/brettcannon/followers\",\"https://mastodon.social/users/brettcannon/collections/featured\",{\"Sponsor\":988,\"Blog\":989,\"GitHub\":990,\"Notes\":991},\"https://github.com/sponsors/brettcannon/\",\"https://snarky.ca\",\"https://github.com/brettcannon/\",\"https://opensource.snarky.ca\",{},{\"#python\":994,\"#canadian\":995},\"https://mastodon.social/tags/python\",\"https://mastodon.social/tags/canadian\",[997],\"https://fosstodon.org/users/brettcannon\",140,3282,\"https://mastodon.social/@brettcannon\",[\"Date\",\"2025-06-17T01:20:25.656Z\"],[\"Date\",\"2025-06-06T00:00:00.000Z\"],[\"Date\",\"2025-06-17T01:20:25.656Z\"],[],[1006,1015],{\"postId\":877,\"actorId\":928,\"actor\":1007},{\"id\":928,\"iri\":936,\"type\":47,\"username\":937,\"instanceHost\":891,\"handleHost\":891,\"handle\":938,\"accountId\":-2,\"name\":939,\"bioHtml\":940,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":941,\"headerUrl\":942,\"inboxUrl\":943,\"sharedInboxUrl\":898,\"followersUrl\":944,\"featuredUrl\":-2,\"fieldHtmls\":1008,\"emojis\":1009,\"tags\":1010,\"sensitive\":42,\"successorId\":-2,\"aliases\":1011,\"followeesCount\":953,\"followersCount\":954,\"postsCount\":10,\"url\":816,\"updated\":1012,\"published\":1013,\"created\":1014},{\"Python Bytes Podcast\":946,\"pytest course\":947,\"Test & Code Podcast\":948},{\":python:\":950},{},[],[\"Date\",\"2025-04-01T11:39:20.101Z\"],[\"Date\",\"2022-11-04T00:00:00.000Z\"],[\"Date\",\"2025-04-01T11:39:20.101Z\"],{\"postId\":877,\"actorId\":975,\"actor\":1016},{\"id\":975,\"iri\":977,\"type\":47,\"username\":978,\"instanceHost\":249,\"handleHost\":249,\"handle\":979,\"accountId\":-2,\"name\":980,\"bioHtml\":981,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":982,\"headerUrl\":983,\"inboxUrl\":984,\"sharedInboxUrl\":256,\"followersUrl\":985,\"featuredUrl\":986,\"fieldHtmls\":1017,\"emojis\":1018,\"tags\":1019,\"sensitive\":42,\"successorId\":-2,\"aliases\":1020,\"followeesCount\":998,\"followersCount\":999,\"postsCount\":10,\"url\":1000,\"updated\":1021,\"published\":1022,\"created\":1023},{\"Sponsor\":988,\"Blog\":989,\"GitHub\":990,\"Notes\":991},{},{\"#python\":994,\"#canadian\":995},[997],[\"Date\",\"2025-06-17T01:20:25.656Z\"],[\"Date\",\"2025-06-06T00:00:00.000Z\"],[\"Date\",\"2025-06-17T01:20:25.656Z\"],[],[],[],{\"slots\":1028,\"props\":1029},[],{\"href\":1030,\"internalHref\":1031,\"class\":6,\"children\":1032},\"https://labyrinth.social/@nash\",\"/@nash@labyrinth.social\",[\"Slot\",1033],{\"name\":9,\"id\":1034},39,{\"slots\":1036,\"props\":1037},[],{\"href\":1030,\"internalHref\":1031,\"children\":1038},[\"Slot\",1039],{\"name\":9,\"id\":1040},40,{\"slots\":1042,\"props\":1043},[],{\"href\":1044,\"internalHref\":1045,\"class\":22,\"children\":1046},\"https://labyrinth.social/@nash/115572685763636936\",\"/@nash@labyrinth.social/019a98d3-3b9b-713a-8c1c-3218bcb52955\",[\"Slot\",1047],{\"name\":9,\"id\":1048},41,{\"slots\":1050,\"props\":1051},[],{\"value\":1052,\"locale\":30},[\"Date\",\"2025-11-18T20:53:53.000Z\"],{\"slots\":1054,\"props\":1055},[],{\"language\":30,\"post\":1056,\"class\":85,\"signedAccount\":-1},{\"id\":1057,\"iri\":1058,\"type\":36,\"visibility\":37,\"actorId\":1059,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":1060,\"language\":30,\"tags\":1061,\"emojis\":1062,\"sensitive\":42,\"repliesCount\":10,\"sharesCount\":25,\"quotesCount\":10,\"reactionsCounts\":1063,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":1044,\"updated\":1064,\"published\":1052,\"actor\":1065,\"link\":-2,\"sharedPost\":-2,\"replyTarget\":-2,\"mentions\":1098,\"media\":1099,\"shares\":1100,\"reactions\":1101},\"019a98d3-3b9b-713a-8c1c-3218bcb52955\",\"https://labyrinth.social/users/nash/statuses/115572685763636936\",\"0195e633-6d10-7a23-b9bf-a1387c6e124d\",\"

don't like it when the boss gets a full heal during the stage transition? that's why you need a union

\",{},{},{},[\"Date\",\"2025-11-18T20:53:53.000Z\"],{\"id\":1059,\"iri\":1066,\"type\":47,\"username\":1067,\"instanceHost\":1068,\"handleHost\":1068,\"handle\":1069,\"accountId\":-2,\"name\":1070,\"bioHtml\":1071,\"automaticallyApprovesFollowers\":42,\"avatarUrl\":1072,\"headerUrl\":1073,\"inboxUrl\":1074,\"sharedInboxUrl\":1075,\"followersUrl\":1076,\"featuredUrl\":-2,\"fieldHtmls\":1077,\"emojis\":1082,\"tags\":1083,\"sensitive\":42,\"successorId\":-2,\"aliases\":1084,\"followeesCount\":1085,\"followersCount\":1086,\"postsCount\":10,\"url\":1030,\"updated\":1087,\"published\":1088,\"created\":1089,\"instance\":1090,\"followers\":1095,\"blockees\":1096,\"blockers\":1097},\"https://labyrinth.social/users/nash\",\"nash\",\"labyrinth.social\",\"@nash@labyrinth.social\",\"Nash\",\"

making music, games, zines, occasional drawings, miscellania

(they/them)

\",\"https://s3-external-1.amazonaws.com/labsoc-files/accounts/avatars/109/412/758/629/520/646/original/589fb8e0745e6903.jpg\",\"https://s3-external-1.amazonaws.com/labsoc-files/accounts/headers/109/412/758/629/520/646/original/09cda922eb5522ba.jpg\",\"https://labyrinth.social/users/nash/inbox\",\"https://labyrinth.social/inbox\",\"https://labyrinth.social/users/nash/followers\",{\"website\":1078,\"itch.io\":1079,\"music masto\":1080,\"bandcamp\":1081},\"https://nashhigh.com\",\"https://nashhigh.itch.io/\",\"https://sonomu.club/@nashhigh\",\"https://nashhigh.bandcamp.com\",{},{},[],497,842,[\"Date\",\"2025-03-30T08:38:04.817Z\"],[\"Date\",\"2022-11-26T00:00:00.000Z\"],[\"Date\",\"2025-03-30T08:38:04.817Z\"],{\"host\":1068,\"software\":1091,\"softwareVersion\":1092,\"updated\":1093,\"created\":1094},\"hometown\",\"4.2.17+hometown-1.1.2\",[\"Date\",\"2025-11-07T01:18:40.769Z\"],[\"Date\",\"2025-03-28T22:33:52.015Z\"],[],[],[],[],[],[],[],{\"slots\":1103,\"props\":1104},[],{\"href\":1105,\"internalHref\":1106,\"class\":6,\"children\":1107},\"https://mastodon.zunda.ninja/@zundan\",\"/@zundan@mastodon.zunda.ninja\",[\"Slot\",1108],{\"name\":9,\"id\":1109},42,{\"slots\":1111,\"props\":1112},[],{\"href\":1105,\"internalHref\":1106,\"children\":1113},[\"Slot\",1114],{\"name\":9,\"id\":1115},43,{\"slots\":1117,\"props\":1118},[],{\"href\":1119,\"internalHref\":1120,\"class\":22,\"children\":1121},\"https://mastodon.zunda.ninja/@zundan/115572685553701794\",\"/@zundan@mastodon.zunda.ninja/019a98be-dbdf-7be4-9cbb-643570166429\",[\"Slot\",1122],{\"name\":9,\"id\":1123},44,{\"slots\":1125,\"props\":1126},[],{\"value\":1127,\"locale\":30},[\"Date\",\"2025-11-18T20:53:50.000Z\"],{\"slots\":1129,\"props\":1130},[],{\"language\":30,\"post\":1131,\"class\":85,\"signedAccount\":-1},{\"id\":1132,\"iri\":1133,\"type\":36,\"visibility\":37,\"actorId\":1134,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":1135,\"language\":1136,\"tags\":1137,\"emojis\":1138,\"sensitive\":42,\"repliesCount\":10,\"sharesCount\":10,\"quotesCount\":10,\"reactionsCounts\":1139,\"reactionsCount\":10,\"linkId\":1140,\"linkUrl\":1141,\"url\":1119,\"updated\":1142,\"published\":1127,\"actor\":1143,\"link\":1178,\"sharedPost\":-2,\"replyTarget\":-2,\"mentions\":1189,\"media\":1190,\"shares\":1191,\"reactions\":1192},\"019a98be-dbdf-7be4-9cbb-643570166429\",\"https://mastodon.zunda.ninja/users/zundan/statuses/115572685553701794\",\"0195884a-c07f-7926-a96b-e23958ff5f1b\",\"

PythonのC拡張にぷにこーど登場するの!てかピリオドはどうするの…
https://docs.python.org/3/c-api/extension-modules.html#extension-export-hook

\",\"ja\",{},{},{},\"019a98be-dbd7-7806-be58-0eccc623b3b5\",\"https://docs.python.org/3/c-api/extension-modules.html#extension-export-hook\",[\"Date\",\"2025-11-18T20:53:50.000Z\"],{\"id\":1134,\"iri\":1144,\"type\":47,\"username\":1145,\"instanceHost\":1146,\"handleHost\":1146,\"handle\":1147,\"accountId\":-2,\"name\":1148,\"bioHtml\":1149,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":1150,\"headerUrl\":1151,\"inboxUrl\":1152,\"sharedInboxUrl\":1153,\"followersUrl\":1154,\"featuredUrl\":1155,\"fieldHtmls\":1156,\"emojis\":1163,\"tags\":1164,\"sensitive\":42,\"successorId\":-2,\"aliases\":1165,\"followeesCount\":1166,\"followersCount\":1167,\"postsCount\":10,\"url\":1105,\"updated\":1168,\"published\":1169,\"created\":1170,\"instance\":1171,\"followers\":1175,\"blockees\":1176,\"blockers\":1177},\"https://mastodon.zunda.ninja/users/zundan\",\"zundan\",\"mastodon.zunda.ninja\",\"@zundan@mastodon.zunda.ninja\",\"zunda\",\"

Reads and writes in Japanese and English. ビールを冷やし忘れることでおなじみです。nはオマケなんです。

\",\"https://s3.amazonaws.com/zundan-mastodon/accounts/avatars/000/000/001/original/527fd226e51be531.gif\",\"https://s3.amazonaws.com/zundan-mastodon/accounts/headers/000/000/001/original/0e87b502ca5cd524.jpg\",\"https://mastodon.zunda.ninja/users/zundan/inbox\",\"https://mastodon.zunda.ninja/inbox\",\"https://mastodon.zunda.ninja/users/zundan/followers\",\"https://mastodon.zunda.ninja/users/zundan/collections/featured\",{\"Web\":1157,\"Keyoxide\":1158,\"GitHub\":1159,\"商品名\":1160,\"原材料\":1161,\"ビア鯖\":1162},\"https://zunda.freeshell.org\",\"https://keyoxide.org/f60960d80b224382ca8d831cb56c20316d6e8279\",\"https://github.com/zunda\",\"ずんだもち\",\"大豆 餅米 砂糖 食塩\",\"https://mstdn.beer/@zundan\",{},{},[],963,1709,[\"Date\",\"2025-03-12T02:59:15.201Z\"],[\"Date\",\"2017-04-15T00:00:00.000Z\"],[\"Date\",\"2025-03-12T02:59:15.201Z\"],{\"host\":1146,\"software\":179,\"softwareVersion\":1172,\"updated\":1173,\"created\":1174},\"4.5.0-rc.1+3c8e79e4-ruby-3.4.7\",[\"Date\",\"2025-10-31T02:31:00.625Z\"],[\"Date\",\"2025-03-12T02:59:14.548Z\"],[],[],[],{\"id\":1140,\"url\":1179,\"title\":1180,\"siteName\":1181,\"type\":1182,\"description\":1183,\"author\":-2,\"imageUrl\":1184,\"imageAlt\":1183,\"imageType\":516,\"imageWidth\":1185,\"imageHeight\":1186,\"creatorId\":-2,\"created\":1187,\"scraped\":1188,\"creator\":-2},\"https://docs.python.org/3/c-api/extension-modules.html\",\"Defining extension modules\",\"Python documentation\",\"website\",\"A C extension for CPython is a shared library (for example, a.so file on Linux,.pyd DLL on Windows), which is loadable into the Python process (for example, it is compiled with compatible compiler ...\",\"https://docs.python.org/3.14/_images/social_previews/summary_c-api_extension-modules_c041c841.png\",1146,600,[\"Date\",\"2025-11-18T20:53:56.309Z\"],[\"Date\",\"2025-11-18T20:53:56.309Z\"],[],[],[],[],{\"slots\":1194,\"props\":1195},[],{\"href\":1196,\"internalHref\":1197,\"class\":6,\"children\":1198},\"https://fedi.simonwillison.net/@simon\",\"/@simon@fedi.simonwillison.net\",[\"Slot\",1199],{\"name\":9,\"id\":1200},45,{\"slots\":1202,\"props\":1203},[],{\"href\":1196,\"internalHref\":1197,\"children\":1204},[\"Slot\",1205],{\"name\":9,\"id\":1206},46,{\"slots\":1208,\"props\":1209},[],{\"href\":1210,\"internalHref\":1211,\"class\":22,\"children\":1212},\"https://fedi.simonwillison.net/@simon/115572685170445302\",\"/@simon@fedi.simonwillison.net/019a98bf-0998-7f02-8e5c-e555f7bcf296\",[\"Slot\",1213],{\"name\":9,\"id\":1214},47,{\"slots\":1216,\"props\":1217},[],{\"value\":1218,\"locale\":30},[\"Date\",\"2025-11-18T20:53:44.000Z\"],{\"slots\":1220,\"props\":1221},[],{\"language\":30,\"post\":1222,\"class\":85,\"signedAccount\":-1},{\"id\":1223,\"iri\":1224,\"type\":36,\"visibility\":37,\"actorId\":1225,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":1226,\"language\":30,\"tags\":1227,\"emojis\":1228,\"sensitive\":42,\"repliesCount\":10,\"sharesCount\":10,\"quotesCount\":10,\"reactionsCounts\":1229,\"reactionsCount\":10,\"linkId\":1230,\"linkUrl\":1231,\"url\":1210,\"updated\":1232,\"published\":1218,\"actor\":1233,\"link\":1265,\"sharedPost\":-2,\"replyTarget\":-2,\"mentions\":1274,\"media\":1275,\"shares\":1276,\"reactions\":1277},\"019a98bf-0998-7f02-8e5c-e555f7bcf296\",\"https://fedi.simonwillison.net/users/simon/statuses/115572685170445302\",\"01955833-53a1-70f2-8f55-d27e670940de\",\"

My notes on Google's new Antigravity IDE - at first glance it looks like yet another VS Code fork but there are some interesting new ideas in there https://simonwillison.net/2025/Nov/18/google-antigravity/

\",{},{},{},\"019a98bf-098e-793e-936e-584419e32453\",\"https://simonwillison.net/2025/Nov/18/google-antigravity/\",[\"Date\",\"2025-11-18T20:53:44.000Z\"],{\"id\":1225,\"iri\":1234,\"type\":47,\"username\":1235,\"instanceHost\":1236,\"handleHost\":1236,\"handle\":1237,\"accountId\":-2,\"name\":1238,\"bioHtml\":1239,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":1240,\"headerUrl\":1241,\"inboxUrl\":1242,\"sharedInboxUrl\":1243,\"followersUrl\":1244,\"featuredUrl\":-2,\"fieldHtmls\":1245,\"emojis\":1250,\"tags\":1251,\"sensitive\":42,\"successorId\":-2,\"aliases\":1252,\"followeesCount\":1253,\"followersCount\":1254,\"postsCount\":10,\"url\":1196,\"updated\":1255,\"published\":1256,\"created\":1257,\"instance\":1258,\"followers\":1262,\"blockees\":1263,\"blockers\":1264},\"https://fedi.simonwillison.net/users/simon\",\"simon\",\"fedi.simonwillison.net\",\"@simon@fedi.simonwillison.net\",\"Simon Willison\",\"

Open source developer building tools to help journalists, archivists, librarians and others analyze, explore and publish their data. https://datasette.io and many other #projects.

\",\"https://cdn.masto.host/fedisimonwillisonnet/accounts/avatars/109/276/369/291/252/172/original/210673cf3d17fda9.jpg\",\"https://cdn.masto.host/fedisimonwillisonnet/accounts/headers/109/276/369/291/252/172/original/e8b97aaf13f1291d.jpeg\",\"https://fedi.simonwillison.net/users/simon/inbox\",\"https://fedi.simonwillison.net/inbox\",\"https://fedi.simonwillison.net/users/simon/followers\",{\"Blog\":1246,\"GitHub\":1247,\"Twitter\":1248,\"TIL\":1249},\"https://simonwillison.net\",\"https://simonw.github.io\",\"https://twitter.com/simonw\",\"https://til.simonwillison.net\",{},{},[],2083,23851,[\"Date\",\"2025-03-02T18:51:53.635Z\"],[\"Date\",\"2022-11-02T00:00:00.000Z\"],[\"Date\",\"2025-03-02T18:51:53.635Z\"],{\"host\":1236,\"software\":179,\"softwareVersion\":1259,\"updated\":1260,\"created\":1261},\"4.3.4\",[\"Date\",\"2025-03-09T14:39:59.114Z\"],[\"Date\",\"2025-03-02T18:51:52.076Z\"],[],[],[],{\"id\":1230,\"url\":1231,\"title\":1266,\"siteName\":1267,\"type\":513,\"description\":1268,\"author\":-2,\"imageUrl\":1269,\"imageAlt\":-2,\"imageType\":227,\"imageWidth\":1270,\"imageHeight\":1271,\"creatorId\":-2,\"created\":1272,\"scraped\":1273,\"creator\":-2},\"Google Antigravity\",\"Simon Willison’s Weblog\",\"Google's other major release today to accompany Gemini 3 Pro. At first glance Antigravity is yet another VS Code fork Cursor clone - it's a desktop application you install that …\",\"https://static.simonwillison.net/static/2025/antigravity.jpg\",2885,1630,[\"Date\",\"2025-11-18T20:54:08.014Z\"],[\"Date\",\"2025-11-18T20:54:08.014Z\"],[],[],[],[],{\"slots\":1279,\"props\":1280},[],{\"href\":1281,\"internalHref\":1282,\"class\":6,\"children\":1283},\"https://fosstodon.org/@pydata_helsinki\",\"/@pydata_helsinki@fosstodon.org\",[\"Slot\",1284],{\"name\":9,\"id\":1285},48,{\"slots\":1287,\"props\":1288},[],{\"href\":1281,\"internalHref\":1282,\"children\":1289},[\"Slot\",1290],{\"name\":9,\"id\":1291},49,{\"slots\":1293,\"props\":1294},[],{\"href\":1295,\"internalHref\":1296,\"class\":22,\"children\":1297},\"https://fosstodon.org/@pydata_helsinki/115572325485697529\",\"/@pydata_helsinki@fosstodon.org/019a98be-4b76-723e-a3b2-1efdf019c83e\",[\"Slot\",1298],{\"name\":9,\"id\":1299},50,{\"slots\":1301,\"props\":1302},[],{\"value\":1303,\"locale\":30},[\"Date\",\"2025-11-18T19:22:16.000Z\"],{\"slots\":1305,\"props\":1306},[],{\"href\":868,\"internalHref\":869,\"children\":1307},[\"Slot\",1308],{\"name\":9,\"id\":1309},51,{\"slots\":1311,\"props\":1312},[],{\"language\":30,\"post\":1313,\"class\":85,\"signedAccount\":-1},{\"id\":1314,\"iri\":1315,\"type\":36,\"visibility\":37,\"actorId\":1316,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":1317,\"language\":30,\"tags\":1318,\"emojis\":1325,\"sensitive\":42,\"repliesCount\":10,\"sharesCount\":25,\"quotesCount\":10,\"reactionsCounts\":1326,\"reactionsCount\":10,\"linkId\":1327,\"linkUrl\":1328,\"url\":1295,\"updated\":1329,\"published\":1303,\"actor\":1330,\"link\":1360,\"replyTarget\":-2,\"mentions\":1368,\"media\":1369,\"shares\":1370,\"reactions\":1371},\"019a98be-4b76-723e-a3b2-1efdf019c83e\",\"https://fosstodon.org/users/pydata_helsinki/statuses/115572325485697529\",\"0197a664-c869-755e-8280-86460d68c608\",\"

The next #PyData #Helsinki #meetup will be on 2 December 2025 at Reaktor, Yliopistonkatu 4.

https://www.meetup.com/pydatahelsinki/events/311972268/?isFirstPublish=true

We'll try something new: a panel discussion on how to land a job, with panelists from three different companies who have interviewed hundreds of candidates. #JobSearch #DataScience

We will also have some talks as usual, and a new edition of the PyData Helsinki #quiz.

\",{\"quiz\":1319,\"meetup\":1320,\"pydata\":1321,\"helsinki\":1322,\"jobsearch\":1323,\"datascience\":1324},\"https://fosstodon.org/tags/quiz\",\"https://fosstodon.org/tags/meetup\",\"https://fosstodon.org/tags/pydata\",\"https://fosstodon.org/tags/helsinki\",\"https://fosstodon.org/tags/jobsearch\",\"https://fosstodon.org/tags/datascience\",{},{},\"019a98be-4b6b-7835-93f7-510a805c7779\",\"https://www.meetup.com/pydatahelsinki/events/311972268/\",[\"Date\",\"2025-11-18T19:22:16.000Z\"],{\"id\":1316,\"iri\":1331,\"type\":47,\"username\":1332,\"instanceHost\":891,\"handleHost\":891,\"handle\":1333,\"accountId\":-2,\"name\":1334,\"bioHtml\":1335,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":1336,\"headerUrl\":1337,\"inboxUrl\":1338,\"sharedInboxUrl\":898,\"followersUrl\":1339,\"featuredUrl\":1340,\"fieldHtmls\":1341,\"emojis\":1346,\"tags\":1347,\"sensitive\":42,\"successorId\":-2,\"aliases\":1350,\"followeesCount\":388,\"followersCount\":221,\"postsCount\":10,\"url\":1281,\"updated\":1351,\"published\":1352,\"created\":1353,\"instance\":1354,\"followers\":1357,\"blockees\":1358,\"blockers\":1359},\"https://fosstodon.org/users/pydata_helsinki\",\"pydata_helsinki\",\"@pydata_helsinki@fosstodon.org\",\"PyData Helsinki\",\"

A community of #Python and #data enthusiasts in #Helsinki, #Finland

\",\"https://cdn.fosstodon.org/accounts/avatars/114/632/023/226/594/016/original/91aeca382f19f4cf.png\",\"https://cdn.fosstodon.org/accounts/headers/114/632/023/226/594/016/original/466ad09e1867e376.webp\",\"https://fosstodon.org/users/pydata_helsinki/inbox\",\"https://fosstodon.org/users/pydata_helsinki/followers\",\"https://fosstodon.org/users/pydata_helsinki/collections/featured\",{\"Homepage\":1342,\"Meetup\":1343,\"LinkedIn\":1344,\"Next event\":1345},\"https://pydata-helsinki.github.io/\",\"https://www.meetup.com/pydatahelsinki/\",\"https://www.linkedin.com/company/pydata-helsinki/\",\"2025-06-25 picnic: https://www.meetup.com/pydatahelsinki/events/308410563/\",{},{\"#data\":1348,\"#python\":908,\"#finland\":1349,\"#helsinki\":1322},\"https://fosstodon.org/tags/data\",\"https://fosstodon.org/tags/finland\",[],[\"Date\",\"2025-06-25T09:21:52.236Z\"],[\"Date\",\"2025-06-05T00:00:00.000Z\"],[\"Date\",\"2025-06-25T09:21:52.236Z\"],{\"host\":891,\"software\":179,\"softwareVersion\":353,\"updated\":1355,\"created\":1356},[\"Date\",\"2025-11-20T15:16:07.317Z\"],[\"Date\",\"2024-12-19T06:40:28.021Z\"],[],[],[],{\"id\":1327,\"url\":1328,\"title\":1361,\"siteName\":1362,\"type\":513,\"description\":1363,\"author\":-2,\"imageUrl\":1364,\"imageAlt\":-2,\"imageType\":227,\"imageWidth\":1186,\"imageHeight\":1365,\"creatorId\":-2,\"created\":1366,\"scraped\":1367,\"creator\":-2},\"PyData Helsinki Meetup at Reaktor, Tue, Dec 2, 2025, 6:00 PM | Meetup\",\"Meetup\",\"This time we're meeting at Reaktor's office.\\n\\nWe're trying something new: a **panel discussion** on **How to Land a Job in Today's Market**. Our panelists have interviewed \",\"https://secure.meetupstatic.com/photos/event/e/2/a/7/600_492178023.jpeg\",338,[\"Date\",\"2025-11-18T20:53:19.336Z\"],[\"Date\",\"2025-11-18T20:53:19.336Z\"],[],[],[],[],{\"slots\":1373,\"props\":1374},[],{\"href\":1375,\"internalHref\":1376,\"class\":6,\"children\":1377},\"https://soc.feditime.com/users/Tubsta\",\"/@Tubsta@soc.feditime.com\",[\"Slot\",1378],{\"name\":9,\"id\":1379},52,{\"slots\":1381,\"props\":1382},[],{\"href\":1375,\"internalHref\":1376,\"children\":1383},[\"Slot\",1384],{\"name\":9,\"id\":1385},53,{\"slots\":1387,\"props\":1388},[],{\"href\":1389,\"internalHref\":1390,\"class\":22,\"children\":1391},\"https://soc.feditime.com/objects/68584b2c-d88e-42e8-b7a9-e88c89ccd134\",\"/@Tubsta@soc.feditime.com/019a98c9-377f-7a57-ba05-04c36f69869b\",[\"Slot\",1392],{\"name\":9,\"id\":1393},54,{\"slots\":1395,\"props\":1396},[],{\"value\":1397,\"locale\":30},[\"Date\",\"2025-11-18T20:53:12.576Z\"],{\"slots\":1399,\"props\":1400},[],{\"language\":30,\"post\":1401,\"class\":85,\"signedAccount\":-1},{\"id\":1402,\"iri\":1389,\"type\":36,\"visibility\":37,\"actorId\":1403,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":670,\"contentHtml\":1404,\"language\":1405,\"tags\":1406,\"emojis\":1408,\"sensitive\":42,\"repliesCount\":10,\"sharesCount\":10,\"quotesCount\":10,\"reactionsCounts\":1409,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":-2,\"updated\":1410,\"published\":1397,\"actor\":1411,\"link\":-2,\"sharedPost\":-2,\"replyTarget\":-2,\"mentions\":1436,\"media\":1437,\"shares\":1438,\"reactions\":1439},\"019a98c9-377f-7a57-ba05-04c36f69869b\",\"0195d493-88a6-7fc4-87e8-1192b7ecaae9\",\"So #Cloudflare farted while I slept. Good to know. Wonder what the fallout will be like when things start up this morning?\",\"und\",{\"cloudflare\":1407},\"https://soc.feditime.com/tags/cloudflare\",{},{},[\"Date\",\"2025-11-18T20:53:12.576Z\"],{\"id\":1403,\"iri\":1375,\"type\":47,\"username\":1412,\"instanceHost\":1413,\"handleHost\":1413,\"handle\":1414,\"accountId\":-2,\"name\":1415,\"bioHtml\":1416,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":1417,\"headerUrl\":1418,\"inboxUrl\":1419,\"sharedInboxUrl\":1420,\"followersUrl\":1421,\"featuredUrl\":-2,\"fieldHtmls\":1422,\"emojis\":1423,\"tags\":1424,\"sensitive\":42,\"successorId\":-2,\"aliases\":1425,\"followeesCount\":69,\"followersCount\":69,\"postsCount\":10,\"url\":1375,\"updated\":1426,\"published\":-2,\"created\":1427,\"instance\":1428,\"followers\":1433,\"blockees\":1434,\"blockers\":1435},\"Tubsta\",\"soc.feditime.com\",\"@Tubsta@soc.feditime.com\",\"Jason Tubnor 🇦🇺\",\"ICT security thug and preacher of fine BSD operating systems. Co-host on the BSDNow Podcast. Ultra bike packer and gravel cycling enthusiast!\",\"https://cdn.soc.feditime.com/uploadsocfeditime/865e07be-5fe6-456f-baf5-c18426a5f672/Jason-2.jpg\",\"https://cdn.soc.feditime.com/uploadsocfeditime/617ff135-890a-4d09-a256-d3100411d2a0/Day-2---04.jpg\",\"https://soc.feditime.com/users/Tubsta/inbox\",\"https://soc.feditime.com/inbox\",\"https://soc.feditime.com/users/Tubsta/followers\",{},{},{},[],[\"Date\",\"2025-03-26T22:29:53.448Z\"],[\"Date\",\"2025-03-26T22:29:53.448Z\"],{\"host\":1413,\"software\":1429,\"softwareVersion\":1430,\"updated\":1431,\"created\":1432},\"akkoma\",\"3.15.2\",[\"Date\",\"2025-03-26T22:29:52.487Z\"],[\"Date\",\"2025-03-26T22:29:52.487Z\"],[],[],[],[],[],[],[],{\"slots\":1441,\"props\":1442},[],{\"href\":1443,\"internalHref\":1444,\"class\":6,\"children\":1445},\"https://mastodon.social/@GrahamFluster\",\"/@GrahamFluster@mastodon.social\",[\"Slot\",1446],{\"name\":9,\"id\":1447},55,{\"slots\":1449,\"props\":1450},[],{\"href\":1443,\"internalHref\":1444,\"children\":1451},[\"Slot\",1452],{\"name\":9,\"id\":1453},56,{\"slots\":1455,\"props\":1456},[],{\"href\":1457,\"internalHref\":1458,\"class\":22,\"children\":1459},\"https://mastodon.social/@GrahamFluster/115572506833075912\",\"/@GrahamFluster@mastodon.social/019a98be-2270-77af-8588-e3c9e9ce9233\",[\"Slot\",1460],{\"name\":9,\"id\":1461},57,{\"slots\":1463,\"props\":1464},[],{\"value\":1465,\"locale\":30},[\"Date\",\"2025-11-18T20:08:23.000Z\"],{\"slots\":1467,\"props\":1468},[],{\"href\":89,\"internalHref\":90,\"children\":1469},[\"Slot\",1470],{\"name\":9,\"id\":1471},58,{\"slots\":1473,\"props\":1474},[],{\"medium\":1475,\"class\":232},{\"postId\":1476,\"index\":10,\"type\":227,\"url\":1477,\"alt\":1478,\"width\":1479,\"height\":1480,\"thumbnailKey\":-2,\"sensitive\":42},\"019a98be-2270-77af-8588-e3c9e9ce9233\",\"https://files.mastodon.social/media_attachments/files/115/572/506/287/624/333/original/10caa2b1240c080b.jpg\",\"An orange tabby cat lays belly-up on a couch.\",3344,2310,{\"slots\":1482,\"props\":1483},[],{\"language\":30,\"post\":1484,\"class\":85,\"signedAccount\":-1},{\"id\":1476,\"iri\":1485,\"type\":36,\"visibility\":37,\"actorId\":1486,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":1487,\"language\":30,\"tags\":1488,\"emojis\":1491,\"sensitive\":42,\"repliesCount\":10,\"sharesCount\":16,\"quotesCount\":10,\"reactionsCounts\":1492,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":1457,\"updated\":1493,\"published\":1465,\"actor\":1494,\"link\":-2,\"replyTarget\":-2,\"mentions\":1522,\"media\":1523,\"shares\":1524,\"reactions\":1525},\"https://mastodon.social/users/GrahamFluster/statuses/115572506833075912\",\"0197d349-f720-727b-8ff7-802ecf805341\",\"

Pabu offers a belly trap! Do you accept?

#Cats
#CatsOfMastodon

\",{\"cats\":1489,\"catsofmastodon\":1490},\"https://mastodon.social/tags/cats\",\"https://mastodon.social/tags/catsofmastodon\",{},{},[\"Date\",\"2025-11-18T20:08:23.000Z\"],{\"id\":1486,\"iri\":1495,\"type\":47,\"username\":1496,\"instanceHost\":249,\"handleHost\":249,\"handle\":1497,\"accountId\":-2,\"name\":1498,\"bioHtml\":1499,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":1500,\"headerUrl\":1501,\"inboxUrl\":1502,\"sharedInboxUrl\":256,\"followersUrl\":1503,\"featuredUrl\":1504,\"fieldHtmls\":1505,\"emojis\":1508,\"tags\":1509,\"sensitive\":42,\"successorId\":-2,\"aliases\":1510,\"followeesCount\":1511,\"followersCount\":1512,\"postsCount\":10,\"url\":1443,\"updated\":1513,\"published\":1514,\"created\":1515,\"instance\":1516,\"followers\":1519,\"blockees\":1520,\"blockers\":1521},\"https://mastodon.social/users/GrahamFluster\",\"GrahamFluster\",\"@GrahamFluster@mastodon.social\",\"Graham Fluster\",\"

Sci-fi/Fantasy writer and serial cat poster.

My book, I Guess We're Heroes, is about a mercenary crew entangled in a plot to unleash a devastating alien weapon, and the team of scientists who first encountered the cosmic threat centuries prior.

Available in paperback, ebook, and audiobook:
https://www.amazon.com/Guess-Were-Heroes-Graham-Fluster/dp/B09YP7ZCK2

\",\"https://files.mastodon.social/accounts/avatars/109/357/755/669/227/778/original/dcbd29dde4e26142.jpg\",\"https://files.mastodon.social/accounts/headers/109/357/755/669/227/778/original/7e4ac56fd72d9a77.jpg\",\"https://mastodon.social/users/GrahamFluster/inbox\",\"https://mastodon.social/users/GrahamFluster/followers\",\"https://mastodon.social/users/GrahamFluster/collections/featured\",{\"I Guess We're Heroes\":1506,\"Kane's Journey (Promptodon post compilation)\":1507},\"https://www.amazon.com/Guess-Were-Heroes-Graham-Fluster/dp/B09YP7ZCK2\",\"https://docs.google.com/document/d/1t7le05XsDyyRf8cLnxmeYp91gz4N-_QHYYSmO8ZriWU/edit?usp=sharing\",{},{},[],117,225,[\"Date\",\"2025-07-04T02:35:29.442Z\"],[\"Date\",\"2022-11-17T00:00:00.000Z\"],[\"Date\",\"2025-07-04T02:35:29.442Z\"],{\"host\":249,\"software\":179,\"softwareVersion\":270,\"updated\":1517,\"created\":1518},[\"Date\",\"2025-11-20T16:24:41.593Z\"],[\"Date\",\"2024-12-13T09:08:56.994Z\"],[],[],[],[],[1475],[],[],{\"slots\":1527,\"props\":1528},[],{\"href\":1443,\"internalHref\":1444,\"class\":6,\"children\":1529},[\"Slot\",1530],{\"name\":9,\"id\":1531},59,{\"slots\":1533,\"props\":1534},[],{\"href\":1443,\"internalHref\":1444,\"children\":1535},[\"Slot\",1536],{\"name\":9,\"id\":1537},60,{\"slots\":1539,\"props\":1540},[],{\"href\":1541,\"internalHref\":1542,\"class\":22,\"children\":1543},\"https://mastodon.social/@GrahamFluster/115572552931424478\",\"/@GrahamFluster@mastodon.social/019a98bd-db6e-7c21-a73f-ce3b44eff047\",[\"Slot\",1544],{\"name\":9,\"id\":1545},61,{\"slots\":1547,\"props\":1548},[],{\"value\":1549,\"locale\":30},[\"Date\",\"2025-11-18T20:20:06.000Z\"],{\"slots\":1551,\"props\":1552},[],{\"href\":727,\"internalHref\":728,\"children\":1553},[\"Slot\",1554],{\"name\":9,\"id\":1555},62,{\"slots\":1557,\"props\":1558},[],{\"medium\":1559,\"class\":232},{\"postId\":1560,\"index\":10,\"type\":1561,\"url\":1562,\"alt\":1563,\"width\":1564,\"height\":1565,\"thumbnailKey\":1566,\"sensitive\":42},\"019a98bd-db6e-7c21-a73f-ce3b44eff047\",\"video/mp4\",\"https://files.mastodon.social/media_attachments/files/115/572/544/664/809/180/original/b13763d58f76f9aa.mp4\",\"A person pets a brown tabby cat who is laying on their lap.\",1920,1080,\"videos/fd8a6411-621c-4d14-956c-c29eb8072369.png\",{\"slots\":1568,\"props\":1569},[],{\"language\":30,\"post\":1570,\"class\":85,\"signedAccount\":-1},{\"id\":1560,\"iri\":1571,\"type\":36,\"visibility\":37,\"actorId\":1486,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":1572,\"language\":30,\"tags\":1573,\"emojis\":1574,\"sensitive\":42,\"repliesCount\":10,\"sharesCount\":25,\"quotesCount\":10,\"reactionsCounts\":1575,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":1541,\"updated\":1576,\"published\":1549,\"actor\":1577,\"link\":-2,\"replyTarget\":-2,\"mentions\":1591,\"media\":1592,\"shares\":1593,\"reactions\":1594},\"https://mastodon.social/users/GrahamFluster/statuses/115572552931424478\",\"

Sleepy little Puffadoodle loves her scritchies

#Cats
#CatsOfMastodon

\",{\"cats\":1489,\"catsofmastodon\":1490},{},{},[\"Date\",\"2025-11-18T20:20:06.000Z\"],{\"id\":1486,\"iri\":1495,\"type\":47,\"username\":1496,\"instanceHost\":249,\"handleHost\":249,\"handle\":1497,\"accountId\":-2,\"name\":1498,\"bioHtml\":1499,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":1500,\"headerUrl\":1501,\"inboxUrl\":1502,\"sharedInboxUrl\":256,\"followersUrl\":1503,\"featuredUrl\":1504,\"fieldHtmls\":1578,\"emojis\":1579,\"tags\":1580,\"sensitive\":42,\"successorId\":-2,\"aliases\":1581,\"followeesCount\":1511,\"followersCount\":1512,\"postsCount\":10,\"url\":1443,\"updated\":1582,\"published\":1583,\"created\":1584,\"instance\":1585,\"followers\":1588,\"blockees\":1589,\"blockers\":1590},{\"I Guess We're Heroes\":1506,\"Kane's Journey (Promptodon post compilation)\":1507},{},{},[],[\"Date\",\"2025-07-04T02:35:29.442Z\"],[\"Date\",\"2022-11-17T00:00:00.000Z\"],[\"Date\",\"2025-07-04T02:35:29.442Z\"],{\"host\":249,\"software\":179,\"softwareVersion\":270,\"updated\":1586,\"created\":1587},[\"Date\",\"2025-11-20T16:24:41.593Z\"],[\"Date\",\"2024-12-13T09:08:56.994Z\"],[],[],[],[],[1559],[],[],{\"slots\":1596,\"props\":1597},[],{\"href\":1443,\"internalHref\":1444,\"class\":6,\"children\":1598},[\"Slot\",1599],{\"name\":9,\"id\":1600},63,{\"slots\":1602,\"props\":1603},[],{\"href\":1443,\"internalHref\":1444,\"children\":1604},[\"Slot\",1605],{\"name\":9,\"id\":1606},64,{\"slots\":1608,\"props\":1609},[],{\"href\":1541,\"internalHref\":1542,\"class\":22,\"children\":1610},[\"Slot\",1611],{\"name\":9,\"id\":1612},65,{\"slots\":1614,\"props\":1615},[],{\"value\":1616,\"locale\":30},[\"Date\",\"2025-11-18T20:20:06.000Z\"],{\"slots\":1618,\"props\":1619},[],{\"href\":89,\"internalHref\":90,\"children\":1620},[\"Slot\",1621],{\"name\":9,\"id\":1622},66,{\"slots\":1624,\"props\":1625},[],{\"medium\":1626,\"class\":232},{\"postId\":1560,\"index\":10,\"type\":1561,\"url\":1562,\"alt\":1563,\"width\":1564,\"height\":1565,\"thumbnailKey\":1566,\"sensitive\":42},{\"slots\":1628,\"props\":1629},[],{\"language\":30,\"post\":1630,\"class\":85,\"signedAccount\":-1},{\"id\":1560,\"iri\":1571,\"type\":36,\"visibility\":37,\"actorId\":1486,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":1572,\"language\":30,\"tags\":1631,\"emojis\":1632,\"sensitive\":42,\"repliesCount\":10,\"sharesCount\":25,\"quotesCount\":10,\"reactionsCounts\":1633,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":1541,\"updated\":1634,\"published\":1616,\"actor\":1635,\"link\":-2,\"replyTarget\":-2,\"mentions\":1649,\"media\":1650,\"shares\":1651,\"reactions\":1652},{\"cats\":1489,\"catsofmastodon\":1490},{},{},[\"Date\",\"2025-11-18T20:20:06.000Z\"],{\"id\":1486,\"iri\":1495,\"type\":47,\"username\":1496,\"instanceHost\":249,\"handleHost\":249,\"handle\":1497,\"accountId\":-2,\"name\":1498,\"bioHtml\":1499,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":1500,\"headerUrl\":1501,\"inboxUrl\":1502,\"sharedInboxUrl\":256,\"followersUrl\":1503,\"featuredUrl\":1504,\"fieldHtmls\":1636,\"emojis\":1637,\"tags\":1638,\"sensitive\":42,\"successorId\":-2,\"aliases\":1639,\"followeesCount\":1511,\"followersCount\":1512,\"postsCount\":10,\"url\":1443,\"updated\":1640,\"published\":1641,\"created\":1642,\"instance\":1643,\"followers\":1646,\"blockees\":1647,\"blockers\":1648},{\"I Guess We're Heroes\":1506,\"Kane's Journey (Promptodon post compilation)\":1507},{},{},[],[\"Date\",\"2025-07-04T02:35:29.442Z\"],[\"Date\",\"2022-11-17T00:00:00.000Z\"],[\"Date\",\"2025-07-04T02:35:29.442Z\"],{\"host\":249,\"software\":179,\"softwareVersion\":270,\"updated\":1644,\"created\":1645},[\"Date\",\"2025-11-20T16:24:41.593Z\"],[\"Date\",\"2024-12-13T09:08:56.994Z\"],[],[],[],[],[1626],[],[],{\"slots\":1654,\"props\":1655},[],{\"href\":1656,\"internalHref\":1657,\"class\":6,\"children\":1658},\"https://mindly.social/@deliaturner\",\"/@deliaturner@mindly.social\",[\"Slot\",1659],{\"name\":9,\"id\":1660},67,{\"slots\":1662,\"props\":1663},[],{\"href\":1656,\"internalHref\":1657,\"children\":1664},[\"Slot\",1665],{\"name\":9,\"id\":1666},68,{\"slots\":1668,\"props\":1669},[],{\"href\":1670,\"internalHref\":1671,\"class\":22,\"children\":1672},\"https://mindly.social/@deliaturner/115566654067659222\",\"/@deliaturner@mindly.social/019a98bd-6f40-7e80-a31f-6fe4d346cbd0\",[\"Slot\",1673],{\"name\":9,\"id\":1674},69,{\"slots\":1676,\"props\":1677},[],{\"value\":1678,\"locale\":30},[\"Date\",\"2025-11-17T19:19:57.000Z\"],{\"slots\":1680,\"props\":1681},[],{\"href\":89,\"internalHref\":90,\"children\":1682},[\"Slot\",1683],{\"name\":9,\"id\":1684},70,{\"slots\":1686,\"props\":1687},[],{\"medium\":1688,\"class\":232},{\"postId\":1689,\"index\":10,\"type\":227,\"url\":1690,\"alt\":1691,\"width\":1692,\"height\":1693,\"thumbnailKey\":-2,\"sensitive\":42},\"019a98bd-6f40-7e80-a31f-6fe4d346cbd0\",\"https://a.mindlycdn.com/media_attachments/files/115/566/650/998/475/641/original/fcb3d34e756a59ad.jpeg\",\"A black and gray tabby cat with a relaxed expression is lying on a bed, being gently petted by a hand. A bedside table with a tissue box is visible in the background.\",2316,3088,{\"slots\":1695,\"props\":1696},[],{\"language\":30,\"post\":1697,\"class\":85,\"signedAccount\":-1},{\"id\":1689,\"iri\":1698,\"type\":36,\"visibility\":37,\"actorId\":1699,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":1700,\"language\":30,\"tags\":1701,\"emojis\":1703,\"sensitive\":42,\"repliesCount\":10,\"sharesCount\":93,\"quotesCount\":10,\"reactionsCounts\":1704,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":1670,\"updated\":1705,\"published\":1678,\"actor\":1706,\"link\":-2,\"replyTarget\":-2,\"mentions\":1736,\"media\":1737,\"shares\":1738,\"reactions\":1739},\"https://mindly.social/users/deliaturner/statuses/115566654067659222\",\"01991534-b8b8-7c3c-9fdd-6565415c20d5\",\"

Uncle Louie is in his happy place.#cats

\",{\"cats\":1702},\"https://mindly.social/tags/cats\",{},{},[\"Date\",\"2025-11-17T19:19:57.000Z\"],{\"id\":1699,\"iri\":1707,\"type\":47,\"username\":1708,\"instanceHost\":1709,\"handleHost\":1709,\"handle\":1710,\"accountId\":-2,\"name\":1711,\"bioHtml\":1712,\"automaticallyApprovesFollowers\":42,\"avatarUrl\":1713,\"headerUrl\":-2,\"inboxUrl\":1714,\"sharedInboxUrl\":1715,\"followersUrl\":1716,\"featuredUrl\":1717,\"fieldHtmls\":1718,\"emojis\":1721,\"tags\":1723,\"sensitive\":42,\"successorId\":-2,\"aliases\":1724,\"followeesCount\":1725,\"followersCount\":1511,\"postsCount\":10,\"url\":1656,\"updated\":1726,\"published\":1727,\"created\":1728,\"instance\":1729,\"followers\":1733,\"blockees\":1734,\"blockers\":1735},\"https://mindly.social/users/deliaturner\",\"deliaturner\",\"mindly.social\",\"@deliaturner@mindly.social\",\"howrawhowrue :verified:\",\"

You can buy my books. People seem to enjoy them.

\",\"https://a.mindlycdn.com/accounts/avatars/109/430/740/370/406/912/original/ef752e05b4a051d3.jpeg\",\"https://mindly.social/users/deliaturner/inbox\",\"https://mindly.social/inbox\",\"https://mindly.social/users/deliaturner/followers\",\"https://mindly.social/users/deliaturner/collections/featured\",{\"Amazon author page\":1719,\"Verification\":1720},\"https://www.amazon.com/Delia-Marshall-Turner/e/B003ZOG1VK\",\"https://www.dmturner.org/2022/12/01/trying-out-new-neighborhoods/\",{\":verified:\":1722},\"https://a.mindlycdn.com/custom_emojis/images/000/025/407/original/c203ddcf0d008401.png\",{},[],216,[\"Date\",\"2025-09-04T14:50:00.761Z\"],[\"Date\",\"2022-11-30T00:00:00.000Z\"],[\"Date\",\"2025-09-04T14:50:00.761Z\"],{\"host\":1709,\"software\":179,\"softwareVersion\":1730,\"updated\":1731,\"created\":1732},\"4.5.0\",[\"Date\",\"2025-11-17T10:44:41.506Z\"],[\"Date\",\"2025-03-16T12:02:30.611Z\"],[],[],[],[],[1688],[],[],{\"slots\":1741,\"props\":1742},[],{\"href\":1743,\"internalHref\":1744,\"class\":6,\"children\":1745},\"https://mastodon.social/@mathling\",\"/@mathling@mastodon.social\",[\"Slot\",1746],{\"name\":9,\"id\":1747},71,{\"slots\":1749,\"props\":1750},[],{\"href\":1743,\"internalHref\":1744,\"children\":1751},[\"Slot\",1752],{\"name\":9,\"id\":1753},72,{\"slots\":1755,\"props\":1756},[],{\"href\":1757,\"internalHref\":1758,\"class\":22,\"children\":1759},\"https://mastodon.social/@mathling/115572671950536741\",\"/@mathling@mastodon.social/019a98bc-bf14-7d28-824c-e6470311e25b\",[\"Slot\",1760],{\"name\":9,\"id\":1761},73,{\"slots\":1763,\"props\":1764},[],{\"value\":1765,\"locale\":30},[\"Date\",\"2025-11-18T20:50:22.000Z\"],{\"slots\":1767,\"props\":1768},[],{\"href\":1769,\"internalHref\":1770,\"children\":1771},\"https://social.treehouse.systems/@jnkrtech\",\"/@jnkrtech@treehouse.systems\",[\"Slot\",1772],{\"name\":9,\"id\":1773},74,{\"slots\":1775,\"props\":1776},[],{\"language\":30,\"post\":1777,\"class\":85,\"signedAccount\":-1},{\"id\":1778,\"iri\":1779,\"type\":36,\"visibility\":37,\"actorId\":1780,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":1781,\"language\":30,\"tags\":1782,\"emojis\":1783,\"sensitive\":42,\"repliesCount\":10,\"sharesCount\":16,\"quotesCount\":10,\"reactionsCounts\":1784,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":1757,\"updated\":1785,\"published\":1765,\"actor\":1786,\"link\":-2,\"replyTarget\":-2,\"mentions\":1816,\"media\":1817,\"shares\":1818,\"reactions\":1819},\"019a98bc-bf14-7d28-824c-e6470311e25b\",\"https://mastodon.social/users/mathling/statuses/115572671950536741\",\"01976581-cf31-7cd7-9971-58bb8cc323c7\",\"

So real talk, all you folks bloviating about "lazy devs relying on Cloudflare" to protect from bot swarms:

What is my option, eh? I have a small website. My hosting provider's answer to the botswarms is "use Cloudflare". Best I can manage on my own is to toss 403s at all of China. It lowers bandwidth suckage, but isn't really an answer. I'm limited in what I can install.

Every suggestion I get is: self-host and install <FOSS thing>.

There has GOT to be a better answer.

*crickets*

\",{},{},{},[\"Date\",\"2025-11-18T20:50:22.000Z\"],{\"id\":1780,\"iri\":1787,\"type\":47,\"username\":1788,\"instanceHost\":249,\"handleHost\":249,\"handle\":1789,\"accountId\":-2,\"name\":1790,\"bioHtml\":1791,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":1792,\"headerUrl\":1793,\"inboxUrl\":1794,\"sharedInboxUrl\":256,\"followersUrl\":1795,\"featuredUrl\":1796,\"fieldHtmls\":1797,\"emojis\":1802,\"tags\":1803,\"sensitive\":42,\"successorId\":-2,\"aliases\":1804,\"followeesCount\":1805,\"followersCount\":1806,\"postsCount\":10,\"url\":1743,\"updated\":1807,\"published\":1808,\"created\":1809,\"instance\":1810,\"followers\":1813,\"blockees\":1814,\"blockers\":1815},\"https://mastodon.social/users/mathling\",\"mathling\",\"@mathling@mastodon.social\",\"Mary Holstege\",\"

Retired software engineer. Now I write programs to make art.

Will natter on about tech in general with forays into linguistics, football, cooking, politics, climate, and random stuff.

Maker of jam. Petter of cats. Viewer of stars.

she/her or they/them

RSS feed: https://mathling.com/art-rss.xml

\",\"https://files.mastodon.social/accounts/avatars/109/252/578/714/128/328/original/79e1283225e84770.gif\",\"https://files.mastodon.social/accounts/headers/109/252/578/714/128/328/original/46d210be88e7abc8.jpg\",\"https://mastodon.social/users/mathling/inbox\",\"https://mastodon.social/users/mathling/followers\",\"https://mastodon.social/users/mathling/collections/featured\",{\"Personal\":1798,\"RedBubble (Merch! Prints!)\":1799,\"DeviantArt (Bit out of date)\":1800,\"Twitter (not anymore)\":1801},\"https://www.mathling.com/\",\"https://www.redbubble.com/people/holstege\",\"https://www.deviantart.com/lingmath/gallery\",\"https://wwwhttps://twitter.com/mathling.mathling.com/\",{},{},[],748,607,[\"Date\",\"2025-06-12T18:58:15.475Z\"],[\"Date\",\"2022-10-29T00:00:00.000Z\"],[\"Date\",\"2025-06-12T18:58:15.475Z\"],{\"host\":249,\"software\":179,\"softwareVersion\":270,\"updated\":1811,\"created\":1812},[\"Date\",\"2025-11-20T16:24:41.593Z\"],[\"Date\",\"2024-12-13T09:08:56.994Z\"],[],[],[],[],[],[],[],{\"slots\":1821,\"props\":1822},[],{\"href\":1823,\"internalHref\":1824,\"class\":6,\"children\":1825},\"https://abyssdomain.expert/@filippo\",\"/@filippo@abyssdomain.expert\",[\"Slot\",1826],{\"name\":9,\"id\":1827},75,{\"slots\":1829,\"props\":1830},[],{\"href\":1823,\"internalHref\":1824,\"children\":1831},[\"Slot\",1832],{\"name\":9,\"id\":1833},76,{\"slots\":1835,\"props\":1836},[],{\"href\":1837,\"internalHref\":1838,\"class\":22,\"children\":1839},\"https://abyssdomain.expert/@filippo/115572662143794411\",\"/@filippo@abyssdomain.expert/019a98bc-da68-75ae-86d5-0aab4b6215e7\",[\"Slot\",1840],{\"name\":9,\"id\":1841},77,{\"slots\":1843,\"props\":1844},[],{\"value\":1845,\"locale\":30},[\"Date\",\"2025-11-18T20:47:53.000Z\"],{\"slots\":1847,\"props\":1848},[],{\"href\":1849,\"internalHref\":1850,\"children\":1851},\"https://hachyderm.io/@fasterthanlime\",\"/@fasterthanlime@hachyderm.io\",[\"Slot\",1852],{\"name\":9,\"id\":1853},78,{\"slots\":1855,\"props\":1856},[],{\"language\":30,\"post\":1857,\"class\":85,\"signedAccount\":-1},{\"id\":1858,\"iri\":1859,\"type\":36,\"visibility\":37,\"actorId\":1860,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":1861,\"language\":30,\"tags\":1862,\"emojis\":1863,\"sensitive\":42,\"repliesCount\":10,\"sharesCount\":16,\"quotesCount\":10,\"reactionsCounts\":1864,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":1837,\"updated\":1865,\"published\":1845,\"actor\":1866,\"link\":-2,\"replyTarget\":-2,\"mentions\":1899,\"media\":1900,\"shares\":1901,\"reactions\":1902},\"019a98bc-da68-75ae-86d5-0aab4b6215e7\",\"https://abyssdomain.expert/users/filippo/statuses/115572662143794411\",\"0195ba77-175f-76ca-b1eb-ea9e85b56fb6\",\"

MacWhisper just transcribed a video with Parakeet v3 at 66.2x realtime on my 2022 MacBook Air.

I know technology gets better but... excuse me? 66.2x locally on a laptop!?

For context, when I bought this laptop, OpenAI's Whisper didn't exist yet.

\",{},{},{},[\"Date\",\"2025-11-18T20:47:53.000Z\"],{\"id\":1860,\"iri\":1867,\"type\":47,\"username\":1868,\"instanceHost\":1869,\"handleHost\":1869,\"handle\":1870,\"accountId\":-2,\"name\":1871,\"bioHtml\":1872,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":1873,\"headerUrl\":1874,\"inboxUrl\":1875,\"sharedInboxUrl\":1876,\"followersUrl\":1877,\"featuredUrl\":-2,\"fieldHtmls\":1878,\"emojis\":1883,\"tags\":1885,\"sensitive\":42,\"successorId\":-2,\"aliases\":1886,\"followeesCount\":1887,\"followersCount\":1888,\"postsCount\":10,\"url\":1823,\"updated\":1889,\"published\":1890,\"created\":1891,\"instance\":1892,\"followers\":1896,\"blockees\":1897,\"blockers\":1898},\"https://abyssdomain.expert/users/filippo\",\"filippo\",\"abyssdomain.expert\",\"@filippo@abyssdomain.expert\",\"Filippo Valsorda :go:\",\"

@FiloSottile elsewhere / Cryptogopher / Go crypto maintainer / Professional Open Source maintainer / RC F'13, F2'17


https://mkcert.dev / https://age-encryption.org / https://filippo.io/newsletter

🕳️ “Gaze not into the abyss, lest you become recognized as an abyss domain expert, and they expect you keep gazing into the damn thing.” —@nickm

\",\"https://cdn.masto.host/abyssdomainexpert/accounts/avatars/109/472/682/376/441/460/original/ac66d0a023e6ef25.jpeg\",\"https://cdn.masto.host/abyssdomainexpert/accounts/headers/109/472/682/376/441/460/original/cc7f64dfa955e28e.jpg\",\"https://abyssdomain.expert/users/filippo/inbox\",\"https://abyssdomain.expert/inbox\",\"https://abyssdomain.expert/users/filippo/followers\",{\"Location\":1879,\"Pronouns\":1880,\"Website\":1881,\"Twitter\":1882},\"Rome 🇮🇹\",\"he/him\",\"https://filippo.io\",\"https://twitter.com/FiloSottile\",{\":go:\":1884},\"https://cdn.masto.host/abyssdomainexpert/custom_emojis/images/000/000/996/original/7a384b63196514dc.png\",{},[],435,12509,[\"Date\",\"2025-03-21T20:48:41.824Z\"],[\"Date\",\"2022-12-07T00:00:00.000Z\"],[\"Date\",\"2025-03-21T20:48:41.824Z\"],{\"host\":1869,\"software\":179,\"softwareVersion\":1893,\"updated\":1894,\"created\":1895},\"4.3.8\",[\"Date\",\"2025-06-04T00:03:09.647Z\"],[\"Date\",\"2025-03-21T20:48:40.810Z\"],[],[],[],[],[],[],[],{\"slots\":1904,\"props\":1905},[],{\"href\":1906,\"internalHref\":1907,\"class\":6,\"children\":1908},\"https://chaosfem.tw/@erl\",\"/@erl@chaosfem.tw\",[\"Slot\",1909],{\"name\":9,\"id\":1910},79,{\"slots\":1912,\"props\":1913},[],{\"href\":1906,\"internalHref\":1907,\"children\":1914},[\"Slot\",1915],{\"name\":9,\"id\":1916},80,{\"slots\":1918,\"props\":1919},[],{\"href\":1920,\"internalHref\":1921,\"class\":22,\"children\":1922},\"https://chaosfem.tw/@erl/115566463146348125\",\"/@erl@chaosfem.tw/019a9646-6010-7082-9384-c6521258d329\",[\"Slot\",1923],{\"name\":9,\"id\":1924},81,{\"slots\":1926,\"props\":1927},[],{\"value\":1928,\"locale\":30},[\"Date\",\"2025-11-17T18:31:23.000Z\"],{\"slots\":1930,\"props\":1931},[],{\"href\":1932,\"internalHref\":1933,\"children\":1934},\"https://wandering.shop/@phildini\",\"/@phildini@wandering.shop\",[\"Slot\",1935],{\"name\":9,\"id\":1936},82,{\"slots\":1938,\"props\":1939},[],{\"medium\":1940,\"class\":232},{\"postId\":1941,\"index\":10,\"type\":227,\"url\":1942,\"alt\":1943,\"width\":1944,\"height\":1945,\"thumbnailKey\":-2,\"sensitive\":42},\"019a9646-6010-7082-9384-c6521258d329\",\"https://chaosfemtw.files.fedi.monster/media_attachments/files/115/566/456/844/776/390/original/7b624ac36f38569d.jpeg\",\"A screenshot of my notifications. The only visible notification has the heading Slurpula with the text “mother i thirst”\",750,268,{\"slots\":1947,\"props\":1948},[],{\"language\":30,\"post\":1949,\"class\":85,\"signedAccount\":-1},{\"id\":1941,\"iri\":1950,\"type\":36,\"visibility\":37,\"actorId\":1951,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":1952,\"language\":30,\"tags\":1953,\"emojis\":1954,\"sensitive\":42,\"repliesCount\":10,\"sharesCount\":1955,\"quotesCount\":10,\"reactionsCounts\":1956,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":1920,\"updated\":1957,\"published\":1928,\"actor\":1958,\"link\":-2,\"replyTarget\":-2,\"mentions\":1989,\"media\":1990,\"shares\":1991,\"reactions\":1992},\"https://chaosfem.tw/users/erl/statuses/115566463146348125\",\"01979649-ec26-768d-a410-1058e5085c62\",\"

some mornings i regret teaching my mop to speak

\",{},{},196,{},[\"Date\",\"2025-11-17T18:31:23.000Z\"],{\"id\":1951,\"iri\":1959,\"type\":47,\"username\":1960,\"instanceHost\":1961,\"handleHost\":1961,\"handle\":1962,\"accountId\":-2,\"name\":1960,\"bioHtml\":1963,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":1964,\"headerUrl\":1965,\"inboxUrl\":1966,\"sharedInboxUrl\":1967,\"followersUrl\":1968,\"featuredUrl\":1969,\"fieldHtmls\":1970,\"emojis\":1974,\"tags\":1975,\"sensitive\":42,\"successorId\":-2,\"aliases\":1976,\"followeesCount\":1977,\"followersCount\":1978,\"postsCount\":10,\"url\":1906,\"updated\":1979,\"published\":1980,\"created\":1981,\"instance\":1982,\"followers\":1986,\"blockees\":1987,\"blockers\":1988},\"https://chaosfem.tw/users/erl\",\"erl\",\"chaosfem.tw\",\"@erl@chaosfem.tw\",\"

extragalactic astronomer, looking for really big black holes
- lots of computational stuff; python, julia, fortran
- lots of observational stuff; keck, gemini, hubble, jwst

posts here are
- 30% selfies
- 30% short form public journaling about
--- 50% trans shit
--- 30% widowhood
--- 20% other things
- 15% science
- 25% miscellenea

frequently on the train
recreational cyclist
proudly trans and pan

\",\"https://chaosfemtw.files.fedi.monster/accounts/avatars/111/236/519/362/736/358/original/95d3037d98b7d5a8.jpeg\",\"https://chaosfemtw.files.fedi.monster/accounts/headers/111/236/519/362/736/358/original/cdc7ee90f6199bb9.png\",\"https://chaosfem.tw/users/erl/inbox\",\"https://chaosfem.tw/inbox\",\"https://chaosfem.tw/users/erl/followers\",\"https://chaosfem.tw/users/erl/collections/featured\",{\"pronouns\":1971,\"website\":1972,\"cats\":1973},\"she/her\",\"https://emilyliepold.com\",\"2\",{},{},[],98,1046,[\"Date\",\"2025-06-22T06:18:36.497Z\"],[\"Date\",\"2023-10-15T00:00:00.000Z\"],[\"Date\",\"2025-06-22T06:18:36.497Z\"],{\"host\":1961,\"software\":179,\"softwareVersion\":1983,\"updated\":1984,\"created\":1985},\"4.4.5+glitch\",[\"Date\",\"2025-11-17T11:56:31.070Z\"],[\"Date\",\"2025-03-14T10:24:40.548Z\"],[],[],[],[],[1940],[],[],{\"slots\":1994,\"props\":1995},[],{\"href\":1743,\"internalHref\":1744,\"class\":6,\"children\":1996},[\"Slot\",1997],{\"name\":9,\"id\":1998},83,{\"slots\":2000,\"props\":2001},[],{\"href\":1743,\"internalHref\":1744,\"children\":2002},[\"Slot\",2003],{\"name\":9,\"id\":911},{\"slots\":2005,\"props\":2006},[],{\"href\":1757,\"internalHref\":1758,\"class\":22,\"children\":2007},[\"Slot\",2008],{\"name\":9,\"id\":2009},85,{\"slots\":2011,\"props\":2012},[],{\"value\":2013,\"locale\":30},[\"Date\",\"2025-11-18T20:50:22.000Z\"],{\"slots\":2015,\"props\":2016},[],{\"language\":30,\"post\":2017,\"class\":85,\"signedAccount\":-1},{\"id\":1778,\"iri\":1779,\"type\":36,\"visibility\":37,\"actorId\":1780,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":1781,\"language\":30,\"tags\":2018,\"emojis\":2019,\"sensitive\":42,\"repliesCount\":10,\"sharesCount\":16,\"quotesCount\":10,\"reactionsCounts\":2020,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":1757,\"updated\":2021,\"published\":2013,\"actor\":2022,\"link\":-2,\"sharedPost\":-2,\"replyTarget\":-2,\"mentions\":2036,\"media\":2037,\"shares\":2038,\"reactions\":2039},{},{},{},[\"Date\",\"2025-11-18T20:50:22.000Z\"],{\"id\":1780,\"iri\":1787,\"type\":47,\"username\":1788,\"instanceHost\":249,\"handleHost\":249,\"handle\":1789,\"accountId\":-2,\"name\":1790,\"bioHtml\":1791,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":1792,\"headerUrl\":1793,\"inboxUrl\":1794,\"sharedInboxUrl\":256,\"followersUrl\":1795,\"featuredUrl\":1796,\"fieldHtmls\":2023,\"emojis\":2024,\"tags\":2025,\"sensitive\":42,\"successorId\":-2,\"aliases\":2026,\"followeesCount\":1805,\"followersCount\":1806,\"postsCount\":10,\"url\":1743,\"updated\":2027,\"published\":2028,\"created\":2029,\"instance\":2030,\"followers\":2033,\"blockees\":2034,\"blockers\":2035},{\"Personal\":1798,\"RedBubble (Merch! Prints!)\":1799,\"DeviantArt (Bit out of date)\":1800,\"Twitter (not anymore)\":1801},{},{},[],[\"Date\",\"2025-06-12T18:58:15.475Z\"],[\"Date\",\"2022-10-29T00:00:00.000Z\"],[\"Date\",\"2025-06-12T18:58:15.475Z\"],{\"host\":249,\"software\":179,\"softwareVersion\":270,\"updated\":2031,\"created\":2032},[\"Date\",\"2025-11-20T16:24:41.593Z\"],[\"Date\",\"2024-12-13T09:08:56.994Z\"],[],[],[],[],[],[],[],{\"slots\":2041,\"props\":2042},[],{\"href\":2043,\"internalHref\":2044,\"class\":6,\"children\":2045},\"https://mitra.social/users/silverpill\",\"/@silverpill@mitra.social\",[\"Slot\",2046],{\"name\":9,\"id\":2047},86,{\"slots\":2049,\"props\":2050},[],{\"href\":2043,\"internalHref\":2044,\"children\":2051},[\"Slot\",2052],{\"name\":9,\"id\":2053},87,{\"slots\":2055,\"props\":2056},[],{\"href\":2057,\"internalHref\":2058,\"class\":22,\"children\":2059},\"https://mitra.social/objects/019a98bb-8a0b-456e-402d-50f6660d1156\",\"/@silverpill@mitra.social/019a98bc-4182-7c5f-8f96-8f757f7181d0\",[\"Slot\",2060],{\"name\":9,\"id\":2061},88,{\"slots\":2063,\"props\":2064},[],{\"value\":2065,\"locale\":30},[\"Date\",\"2025-11-18T20:50:18.761Z\"],{\"slots\":2067,\"props\":2068},[],{\"language\":30,\"post\":2069,\"class\":85,\"signedAccount\":-1},{\"id\":2070,\"iri\":2057,\"type\":36,\"visibility\":37,\"actorId\":2071,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":2072,\"language\":-2,\"tags\":2073,\"emojis\":2075,\"sensitive\":42,\"repliesCount\":10,\"sharesCount\":10,\"quotesCount\":10,\"reactionsCounts\":2076,\"reactionsCount\":10,\"linkId\":2077,\"linkUrl\":2078,\"url\":-2,\"updated\":2079,\"published\":2065,\"actor\":2080,\"link\":2105,\"sharedPost\":-2,\"replyTarget\":-2,\"mentions\":2114,\"media\":2115,\"shares\":2116,\"reactions\":2117},\"019a98bc-4182-7c5f-8f96-8f757f7181d0\",\"0193dfde-d7b6-7027-a610-d4736d8e1b4b\",\"

Following the discussion in issue #710, I added a “Security considerations” section to FEP-521a:

https://codeberg.org/fediverse/fep/pulls/731

It describes the best practices for handling secret keys.

#fep_521a

\",{\"fep_521a\":2074},\"https://mitra.social/collections/tags/fep_521a\",{},{},\"019a98bc-411e-779e-bb7f-715a349fafa1\",\"https://codeberg.org/fediverse/fep/issues/710\",[\"Date\",\"2025-11-18T20:50:18.761Z\"],{\"id\":2071,\"iri\":2043,\"type\":47,\"username\":2081,\"instanceHost\":2082,\"handleHost\":2082,\"handle\":2083,\"accountId\":-2,\"name\":2081,\"bioHtml\":2084,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":2085,\"headerUrl\":-2,\"inboxUrl\":2086,\"sharedInboxUrl\":-2,\"followersUrl\":2087,\"featuredUrl\":-2,\"fieldHtmls\":2088,\"emojis\":2089,\"tags\":2090,\"sensitive\":42,\"successorId\":-2,\"aliases\":2091,\"followeesCount\":2092,\"followersCount\":2093,\"postsCount\":10,\"url\":2043,\"updated\":2094,\"published\":2095,\"created\":2096,\"instance\":2097,\"followers\":2102,\"blockees\":2103,\"blockers\":2104},\"silverpill\",\"mitra.social\",\"@silverpill@mitra.social\",\"

Developer of ActivityPub-based micro-blogging and content subscription platform Mitra. Working on Fediverse standards: https://codeberg.org/silverpill/feps

\",\"https://mitra.social/media/6a785bf7dd05f61c3590e8935aa49156a499ac30fd1e402f79e7e164adb36e2c.png\",\"https://mitra.social/users/silverpill/inbox\",\"https://mitra.social/users/silverpill/followers\",{},{},{},[],640,1077,[\"Date\",\"2025-10-17T15:44:12.624Z\"],[\"Date\",\"2021-11-06T21:08:57.441Z\"],[\"Date\",\"2024-12-19T17:02:23.673Z\"],{\"host\":2082,\"software\":2098,\"softwareVersion\":2099,\"updated\":2100,\"created\":2101},\"mitra\",\"4.13.2-dev\",[\"Date\",\"2025-11-19T23:47:33.916Z\"],[\"Date\",\"2024-12-19T17:02:22.513Z\"],[],[],[],{\"id\":2077,\"url\":2078,\"title\":2106,\"siteName\":2107,\"type\":2108,\"description\":2109,\"author\":-2,\"imageUrl\":2110,\"imageAlt\":2111,\"imageType\":-2,\"imageWidth\":517,\"imageHeight\":1186,\"creatorId\":-2,\"created\":2112,\"scraped\":2113,\"creator\":-2},\"FEP-521a: Consider base-64-url, not base-58-btc, as the required codec\",\"Codeberg.org\",\"object\",\"Converting to/from base-256 (raw \\\"binary\\\" octets) and base-N is easy to do in constant-time if N is a power of 2. See: RFC 4648 for power-of-2 codecs.\\n\\n58 isn't a power of 2, which makes implementing any variant of base58 in constant-time a nightmare.\\n\\nSure, you can avoid the table look-up all th...\",\"https://codeberg.org/fediverse/fep/issues/710/summary-card\",\"Summary card of an issue titled \\\"FEP-521a: Consider base-64-url, not base-58-btc, as the required codec\\\" in repository fediverse/fep\",[\"Date\",\"2025-11-18T20:51:05.733Z\"],[\"Date\",\"2025-11-18T20:51:05.733Z\"],[],[],[],[],{\"slots\":2119,\"props\":2120},[],{\"href\":2121,\"internalHref\":2122,\"class\":6,\"children\":2123},\"https://beige.party/@slowbiex\",\"/@slowbiex@beige.party\",[\"Slot\",2124],{\"name\":9,\"id\":2125},89,{\"slots\":2127,\"props\":2128},[],{\"href\":2121,\"internalHref\":2122,\"children\":2129},[\"Slot\",2130],{\"name\":9,\"id\":2131},90,{\"slots\":2133,\"props\":2134},[],{\"href\":2135,\"internalHref\":2136,\"class\":22,\"children\":2137},\"https://beige.party/@slowbiex/115572671436439135\",\"/@slowbiex@beige.party/019a98bc-071e-707e-95ed-b5a98ea50f8c\",[\"Slot\",2138],{\"name\":9,\"id\":2139},91,{\"slots\":2141,\"props\":2142},[],{\"value\":2143,\"locale\":30},[\"Date\",\"2025-11-18T20:50:14.000Z\"],{\"slots\":2145,\"props\":2146},[],{\"language\":30,\"post\":2147,\"class\":85,\"signedAccount\":-1},{\"id\":2148,\"iri\":2149,\"type\":36,\"visibility\":37,\"actorId\":2150,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":2151,\"language\":321,\"tags\":2152,\"emojis\":2153,\"sensitive\":42,\"repliesCount\":10,\"sharesCount\":10,\"quotesCount\":10,\"reactionsCounts\":2154,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":2135,\"updated\":2155,\"published\":2143,\"actor\":2156,\"link\":-2,\"sharedPost\":-2,\"replyTarget\":-2,\"mentions\":2191,\"media\":2192,\"shares\":2193,\"reactions\":2194},\"019a98bc-071e-707e-95ed-b5a98ea50f8c\",\"https://beige.party/users/slowbiex/statuses/115572671436439135\",\"01979d70-3248-71a1-ba37-78eae7c40731\",\"

Für tödliche Männergrippe bekommt man problemlos ne telefonische Krankschreibung. Aber für KI-Gedöns durch die Geschäftsleitung noch nicht, oder?

\",{},{},{},[\"Date\",\"2025-11-18T20:50:14.000Z\"],{\"id\":2150,\"iri\":2157,\"type\":47,\"username\":2158,\"instanceHost\":2159,\"handleHost\":2159,\"handle\":2160,\"accountId\":-2,\"name\":2161,\"bioHtml\":2162,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":2163,\"headerUrl\":2164,\"inboxUrl\":2165,\"sharedInboxUrl\":2166,\"followersUrl\":2167,\"featuredUrl\":2168,\"fieldHtmls\":2169,\"emojis\":2174,\"tags\":2176,\"sensitive\":42,\"successorId\":-2,\"aliases\":2177,\"followeesCount\":2179,\"followersCount\":2180,\"postsCount\":10,\"url\":2121,\"updated\":2181,\"published\":2182,\"created\":2183,\"instance\":2184,\"followers\":2188,\"blockees\":2189,\"blockers\":2190},\"https://beige.party/users/slowbiex\",\"slowbiex\",\"beige.party\",\"@slowbiex@beige.party\",\"Andreas S. :verified_paw:\",\"

Gscheidhaferl und Genussmensch, Oststeiermark und München (via California).
linksgrün und stolz darauf.
You may say you to me.

\",\"https://media.beige.party/accounts/avatars/111/602/644/956/323/190/original/6dedca9ebe3c6d1d.jpeg\",\"https://media.beige.party/accounts/headers/111/602/644/956/323/190/original/e2dd2fbc156b7529.jpeg\",\"https://beige.party/users/slowbiex/inbox\",\"https://beige.party/inbox\",\"https://beige.party/users/slowbiex/followers\",\"https://beige.party/users/slowbiex/collections/featured\",{\"Music\":2170,\"Books\":2171,\"Animals\":2172,\"pixelfed\":2173},\"Metal, Prog, Rock, Funk, Jazz, Aliensingersongwriter\",\"yes plz\",\"cats and birds\",\"https://pixelfed.de/slowbiex\",{\":verified_paw:\":2175},\"https://media.beige.party/custom_emojis/images/000/062/498/original/b8862d9280eedf43.png\",{},[2178],\"https://muenchen.social/users/slowbiex\",571,320,[\"Date\",\"2025-06-23T15:37:45.290Z\"],[\"Date\",\"2023-12-18T00:00:00.000Z\"],[\"Date\",\"2025-06-23T15:37:45.290Z\"],{\"host\":2159,\"software\":179,\"softwareVersion\":2185,\"updated\":2186,\"created\":2187},\"4.4.7\",[\"Date\",\"2025-11-18T17:58:06.148Z\"],[\"Date\",\"2024-12-13T09:06:50.637Z\"],[],[],[],[],[],[],[],{\"slots\":2196,\"props\":2197},[],{\"href\":2198,\"internalHref\":2199,\"class\":6,\"children\":2200},\"https://wandering.shop/@cstross\",\"/@cstross@wandering.shop\",[\"Slot\",2201],{\"name\":9,\"id\":2202},92,{\"slots\":2204,\"props\":2205},[],{\"href\":2198,\"internalHref\":2199,\"children\":2206},[\"Slot\",2207],{\"name\":9,\"id\":2208},93,{\"slots\":2210,\"props\":2211},[],{\"href\":2212,\"internalHref\":2213,\"class\":22,\"children\":2214},\"https://wandering.shop/@cstross/115571628279172618\",\"/@cstross@wandering.shop/019a98bb-88a6-7245-9fac-3e7d00811a8d\",[\"Slot\",2215],{\"name\":9,\"id\":2216},94,{\"slots\":2218,\"props\":2219},[],{\"value\":2220,\"locale\":30},[\"Date\",\"2025-11-18T16:24:57.000Z\"],{\"slots\":2222,\"props\":2223},[],{\"href\":2224,\"internalHref\":2225,\"class\":6,\"children\":2226},\"https://mastodon.nz/@Salty\",\"/@Salty@mastodon.nz\",[\"Slot\",2227],{\"name\":9,\"id\":2228},95,{\"slots\":2230,\"props\":2231},[],{\"href\":2224,\"internalHref\":2225,\"children\":2232},[\"Slot\",2233],{\"name\":9,\"id\":2234},96,{\"slots\":2236,\"props\":2237},[],{\"href\":2238,\"internalHref\":2239,\"class\":22,\"children\":2240},\"https://mastodon.nz/@Salty/115572647324249621\",\"/@Salty@mastodon.nz/019a98bb-88b4-75b6-9698-df84ff2ce6f7\",[\"Slot\",2241],{\"name\":9,\"id\":2242},97,{\"slots\":2244,\"props\":2245},[],{\"value\":2246,\"locale\":30},[\"Date\",\"2025-11-18T20:44:06.000Z\"],{\"slots\":2248,\"props\":2249},[],{\"href\":2250,\"internalHref\":2251,\"children\":2252},\"https://23.social/@leyrer\",\"/@leyrer@23.social\",[\"Slot\",2253],{\"name\":9,\"id\":1977},{\"slots\":2255,\"props\":2256},[],{\"language\":30,\"post\":2257,\"class\":85,\"signedAccount\":-1},{\"id\":2258,\"iri\":2259,\"type\":36,\"visibility\":37,\"actorId\":2260,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":2261,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":2262,\"language\":30,\"tags\":2263,\"emojis\":2264,\"sensitive\":42,\"repliesCount\":10,\"sharesCount\":16,\"quotesCount\":10,\"reactionsCounts\":2265,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":2238,\"updated\":2266,\"published\":2246,\"actor\":2267,\"link\":-2,\"replyTarget\":2293,\"mentions\":2347,\"media\":2357,\"shares\":2358,\"reactions\":2359},\"019a98bb-88b4-75b6-9698-df84ff2ce6f7\",\"https://mastodon.nz/users/Salty/statuses/115572647324249621\",\"0195e4a9-a15f-7c2c-8015-04a9e3c114c0\",\"019a98bb-88a6-7245-9fac-3e7d00811a8d\",\"

@cstross Some people, faced with an AI problem, think to themselves "I know, I'll use regular expressions." Now they have 99 problems but the beach ain't one was a song made famous by JAI-Z. Would you like me to summarise his biography for you?

\",{},{},{},[\"Date\",\"2025-11-18T20:44:06.000Z\"],{\"id\":2260,\"iri\":2268,\"type\":47,\"username\":2269,\"instanceHost\":2270,\"handleHost\":2270,\"handle\":2271,\"accountId\":-2,\"name\":2272,\"bioHtml\":2273,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":2274,\"headerUrl\":-2,\"inboxUrl\":2275,\"sharedInboxUrl\":2276,\"followersUrl\":2277,\"featuredUrl\":-2,\"fieldHtmls\":2278,\"emojis\":2279,\"tags\":2280,\"sensitive\":42,\"successorId\":-2,\"aliases\":2281,\"followeesCount\":2282,\"followersCount\":2283,\"postsCount\":10,\"url\":2224,\"updated\":2284,\"published\":2285,\"created\":2286,\"instance\":2287,\"followers\":2290,\"blockees\":2291,\"blockers\":2292},\"https://mastodon.nz/users/Salty\",\"Salty\",\"mastodon.nz\",\"@Salty@mastodon.nz\",\"Simon Green\",\"

Pōhuehue, NZ. I suppose you’d call me a leftie.

\",\"https://static.mastodon.nz/accounts/avatars/109/287/848/109/096/248/original/c258bc263e0ff0ef.png\",\"https://mastodon.nz/users/Salty/inbox\",\"https://mastodon.nz/inbox\",\"https://mastodon.nz/users/Salty/followers\",{},{},{},[],285,242,[\"Date\",\"2025-03-30T01:27:57.025Z\"],[\"Date\",\"2022-11-04T00:00:00.000Z\"],[\"Date\",\"2025-03-30T01:27:57.025Z\"],{\"host\":2270,\"software\":179,\"softwareVersion\":1730,\"updated\":2288,\"created\":2289},[\"Date\",\"2025-11-10T07:54:33.024Z\"],[\"Date\",\"2024-12-23T05:04:00.371Z\"],[],[],[],{\"id\":2261,\"iri\":2294,\"type\":36,\"visibility\":37,\"actorId\":2295,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":2296,\"language\":30,\"tags\":2297,\"emojis\":2298,\"sensitive\":42,\"repliesCount\":10,\"sharesCount\":197,\"quotesCount\":10,\"reactionsCounts\":2299,\"reactionsCount\":10,\"linkId\":2300,\"linkUrl\":2301,\"url\":2212,\"updated\":2302,\"published\":2220,\"actor\":2303,\"link\":2336,\"mentions\":2345,\"media\":2346},\"https://wandering.shop/users/cstross/statuses/115571628279172618\",\"0195951e-8146-79a0-825f-c11e223d641e\",\"

Failure mode: I hope they're using a sensible regexp to implement this otherwise we could end up discussing scocaineling boats.

EDIT: Oops, and it had better not apply it recursively, either, or we're in a heap of cocococococococ...
https://app.wafrn.net/fediverse/post/f8e0623a-e036-4661-9b38-9379567c97ae

\",{},{},{},\"019a98bb-889b-758d-8090-60253e636bf4\",\"https://app.wafrn.net/fediverse/post/f8e0623a-e036-4661-9b38-9379567c97ae\",[\"Date\",\"2025-11-18T16:29:21.000Z\"],{\"id\":2295,\"iri\":2304,\"type\":47,\"username\":2305,\"instanceHost\":2306,\"handleHost\":2306,\"handle\":2307,\"accountId\":-2,\"name\":2308,\"bioHtml\":2309,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":2310,\"headerUrl\":2311,\"inboxUrl\":2312,\"sharedInboxUrl\":2313,\"followersUrl\":2314,\"featuredUrl\":2315,\"fieldHtmls\":2316,\"emojis\":2321,\"tags\":2322,\"sensitive\":42,\"successorId\":-2,\"aliases\":2323,\"followeesCount\":2325,\"followersCount\":2326,\"postsCount\":10,\"url\":2198,\"updated\":2327,\"published\":2328,\"created\":2329,\"instance\":2330,\"followers\":2333,\"blockees\":2334,\"blockers\":2335},\"https://wandering.shop/users/cstross\",\"cstross\",\"wandering.shop\",\"@cstross@wandering.shop\",\"Charlie Stross\",\"

Scottish resident SF/F author (he/him/they/them). Three times Hugo Award winner, 30+ novels in print. Does not play well with Nazis. Abolish the monarchy!

Born in a world with 320ppm atmospheric CO2, 3.3 billion people.

@cstross.bsky.social on Bluesky

blog at: https://www.antipope.org/charlie/blog-static/

FOLLOW REQUESTS: don't expect a reciprocal follow. And I will reject requests from folks with no profile and/or no tooting history.

\",\"https://stockroom.wandering.shop/accounts/avatars/109/292/968/329/781/669/original/f6ee3645fb20f7a1.jpeg\",\"https://stockroom.wandering.shop/accounts/headers/109/292/968/329/781/669/original/8ba1c4b317004639.jpeg\",\"https://wandering.shop/users/cstross/inbox\",\"https://wandering.shop/inbox\",\"https://wandering.shop/users/cstross/followers\",\"https://wandering.shop/users/cstross/collections/featured\",{\"Blog\":2317,\"Twitter\":2318,\"Facebook\":2319,\"Bluesky\":2320},\"https://www.antipope.org/charlie/blog-static/\",\"deleted: used to be @cstross\",\"don't go there!\",\"@cstross.bsky.social\",{},{},[2324],\"https://mstdn.social/users/cstross\",1633,26805,[\"Date\",\"2025-03-14T14:45:59.240Z\"],[\"Date\",\"2022-11-05T00:00:00.000Z\"],[\"Date\",\"2025-03-14T14:45:59.240Z\"],{\"host\":2306,\"software\":179,\"softwareVersion\":353,\"updated\":2331,\"created\":2332},[\"Date\",\"2025-11-20T09:29:44.576Z\"],[\"Date\",\"2024-12-13T09:08:16.335Z\"],[],[],[],{\"id\":2300,\"url\":2301,\"title\":2337,\"siteName\":2338,\"type\":-2,\"description\":2339,\"author\":-2,\"imageUrl\":2340,\"imageAlt\":-2,\"imageType\":-2,\"imageWidth\":2341,\"imageHeight\":2342,\"creatorId\":-2,\"created\":2343,\"scraped\":2344,\"creator\":-2},\"vozercozer (vozercozer@app.wafrn.net)\",\"app.wafrn.net\",\"dude, I didn’t even fucking add that there. I love this place :neocat_laugh_256:\",\"https://new.media.wafrn.net/media/1763479335393_629601ea5386568eb6ca86b803ceac435132f7bc_processed.webp\",1290,459,[\"Date\",\"2025-11-18T20:50:18.412Z\"],[\"Date\",\"2025-11-18T20:50:18.412Z\"],[],[],[2348],{\"postId\":2258,\"actorId\":2295,\"actor\":2349},{\"id\":2295,\"iri\":2304,\"type\":47,\"username\":2305,\"instanceHost\":2306,\"handleHost\":2306,\"handle\":2307,\"accountId\":-2,\"name\":2308,\"bioHtml\":2309,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":2310,\"headerUrl\":2311,\"inboxUrl\":2312,\"sharedInboxUrl\":2313,\"followersUrl\":2314,\"featuredUrl\":2315,\"fieldHtmls\":2350,\"emojis\":2351,\"tags\":2352,\"sensitive\":42,\"successorId\":-2,\"aliases\":2353,\"followeesCount\":2325,\"followersCount\":2326,\"postsCount\":10,\"url\":2198,\"updated\":2354,\"published\":2355,\"created\":2356},{\"Blog\":2317,\"Twitter\":2318,\"Facebook\":2319,\"Bluesky\":2320},{},{},[2324],[\"Date\",\"2025-03-14T14:45:59.240Z\"],[\"Date\",\"2022-11-05T00:00:00.000Z\"],[\"Date\",\"2025-03-14T14:45:59.240Z\"],[],[],[],{\"slots\":2361,\"props\":2362},[],{\"href\":440,\"internalHref\":441,\"class\":6,\"children\":2363},[\"Slot\",2364],{\"name\":9,\"id\":2365},99,{\"slots\":2367,\"props\":2368},[],{\"href\":440,\"internalHref\":441,\"children\":2369},[\"Slot\",2370],{\"name\":9,\"id\":2371},100,{\"slots\":2373,\"props\":2374},[],{\"href\":2375,\"internalHref\":2376,\"class\":22,\"children\":2377},\"https://social.lansky.name/@hn50/115572670934352069\",\"/@hn50@social.lansky.name/019a98bb-fc37-76c7-b67e-c40b1aa4896d\",[\"Slot\",2378],{\"name\":9,\"id\":2379},101,{\"slots\":2381,\"props\":2382},[],{\"value\":2383,\"locale\":30},[\"Date\",\"2025-11-18T20:50:07.000Z\"],{\"slots\":2385,\"props\":2386},[],{\"language\":30,\"post\":2387,\"class\":85,\"signedAccount\":-1},{\"id\":2388,\"iri\":2389,\"type\":36,\"visibility\":37,\"actorId\":476,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":2390,\"language\":30,\"tags\":2391,\"emojis\":2393,\"sensitive\":42,\"repliesCount\":10,\"sharesCount\":10,\"quotesCount\":10,\"reactionsCounts\":2394,\"reactionsCount\":10,\"linkId\":2395,\"linkUrl\":2396,\"url\":2375,\"updated\":2397,\"published\":2383,\"actor\":2398,\"link\":2412,\"sharedPost\":-2,\"replyTarget\":-2,\"mentions\":2419,\"media\":2420,\"shares\":2421,\"reactions\":2422},\"019a98bb-fc37-76c7-b67e-c40b1aa4896d\",\"https://social.lansky.name/users/hn50/statuses/115572670934352069\",\"

Show HN: Guts – convert Golang types to TypeScript

Link: https://github.com/coder/guts
Discussion: https://news.ycombinator.com/item?id=45969708

#typescript

\",{\"typescript\":2392},\"https://social.lansky.name/tags/typescript\",{},{},\"019a98bb-fbe3-795a-9b46-f2bd7a7f9cea\",\"https://github.com/coder/guts\",[\"Date\",\"2025-11-18T20:50:07.000Z\"],{\"id\":476,\"iri\":485,\"type\":486,\"username\":487,\"instanceHost\":488,\"handleHost\":488,\"handle\":489,\"accountId\":-2,\"name\":490,\"bioHtml\":491,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":492,\"headerUrl\":-2,\"inboxUrl\":493,\"sharedInboxUrl\":494,\"followersUrl\":-2,\"featuredUrl\":-2,\"fieldHtmls\":2399,\"emojis\":2400,\"tags\":2401,\"sensitive\":42,\"successorId\":-2,\"aliases\":2402,\"followeesCount\":16,\"followersCount\":499,\"postsCount\":10,\"url\":440,\"updated\":2403,\"published\":2404,\"created\":2405,\"instance\":2406,\"followers\":2409,\"blockees\":2410,\"blockers\":2411},{},{},{},[],[\"Date\",\"2025-02-16T16:49:01.647Z\"],[\"Date\",\"2020-06-09T00:00:00.000Z\"],[\"Date\",\"2025-02-16T16:49:01.647Z\"],{\"host\":488,\"software\":179,\"softwareVersion\":504,\"updated\":2407,\"created\":2408},[\"Date\",\"2025-07-25T00:50:49.577Z\"],[\"Date\",\"2025-02-16T16:49:00.739Z\"],[],[],[],{\"id\":2395,\"url\":2396,\"title\":2413,\"siteName\":2414,\"type\":2108,\"description\":2415,\"author\":-2,\"imageUrl\":2416,\"imageAlt\":2415,\"imageType\":-2,\"imageWidth\":517,\"imageHeight\":1186,\"creatorId\":-2,\"created\":2417,\"scraped\":2418,\"creator\":-2},\"GitHub - coder/guts: Guts is a code generator that converts Golang types to Typescript. Useful for keeping types in sync between the front and backend.\",\"GitHub\",\"Guts is a code generator that converts Golang types to Typescript. Useful for keeping types in sync between the front and backend. - coder/guts\",\"https://opengraph.githubassets.com/3a90bc72625f9ca9392427e9f15805ca33d929f9f795fc7865dfd1cc84859ea2/coder/guts\",[\"Date\",\"2025-11-18T20:50:47.995Z\"],[\"Date\",\"2025-11-18T20:50:47.995Z\"],[],[],[],[],{\"slots\":2424,\"props\":2425},[],{\"href\":2426,\"internalHref\":2427,\"class\":6,\"children\":2428},\"https://misskey.io/@sakuragoka_dr\",\"/@sakuragoka_dr@misskey.io\",[\"Slot\",2429],{\"name\":9,\"id\":2430},102,{\"slots\":2432,\"props\":2433},[],{\"href\":2426,\"internalHref\":2427,\"children\":2434},[\"Slot\",2435],{\"name\":9,\"id\":2436},103,{\"slots\":2438,\"props\":2439},[],{\"href\":2440,\"internalHref\":2441,\"class\":22,\"children\":2442},\"https://misskey.io/notes/af8m32ona1vl006q\",\"/@sakuragoka_dr@misskey.io/019a98d8-715d-7aa9-a002-49a702763b95\",[\"Slot\",2443],{\"name\":9,\"id\":2444},104,{\"slots\":2446,\"props\":2447},[],{\"value\":2448,\"locale\":30},[\"Date\",\"2025-11-18T20:50:00.407Z\"],{\"slots\":2450,\"props\":2451},[],{\"language\":30,\"post\":2452,\"class\":85,\"signedAccount\":-1},{\"id\":2453,\"iri\":2440,\"type\":36,\"visibility\":37,\"actorId\":2454,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":2455,\"language\":-2,\"tags\":2456,\"emojis\":2457,\"sensitive\":42,\"repliesCount\":10,\"sharesCount\":10,\"quotesCount\":10,\"reactionsCounts\":2459,\"reactionsCount\":16,\"linkId\":-2,\"linkUrl\":-2,\"url\":-2,\"updated\":2460,\"published\":2448,\"actor\":2461,\"link\":-2,\"sharedPost\":-2,\"replyTarget\":-2,\"mentions\":2495,\"media\":2496,\"shares\":2497,\"reactions\":2498},\"019a98d8-715d-7aa9-a002-49a702763b95\",\"01961e27-c756-797d-8e44-0e1d1ba0faf2\",\"

​:ohapoyoo:​

\",{},{\":ohapoyoo:\":2458},\"https://media.misskeyusercontent.com/io/ba3f80b4-6e44-4c79-a2ac-0bd451450c27.png\",{\"01961d94-6811-7add-b6bf-326426841be8\":16},[\"Date\",\"2025-11-18T20:50:00.407Z\"],{\"id\":2454,\"iri\":2462,\"type\":47,\"username\":2463,\"instanceHost\":49,\"handleHost\":49,\"handle\":2464,\"accountId\":-2,\"name\":2465,\"bioHtml\":2466,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":2467,\"headerUrl\":2468,\"inboxUrl\":2469,\"sharedInboxUrl\":57,\"followersUrl\":2470,\"featuredUrl\":-2,\"fieldHtmls\":2471,\"emojis\":2478,\"tags\":2483,\"sensitive\":42,\"successorId\":-2,\"aliases\":2484,\"followeesCount\":2485,\"followersCount\":2486,\"postsCount\":10,\"url\":2426,\"updated\":2487,\"published\":-2,\"created\":2488,\"instance\":2489,\"followers\":2492,\"blockees\":2493,\"blockers\":2494},\"https://misskey.io/users/9go3irerxg\",\"sakuragoka_dr\",\"@sakuragoka_dr@misskey.io\",\"さくらがおか🔞\",\"

無断転載、無断使用、AI学習禁止

成人してます
​:oneechan:​と​:oppai:​が好きな
純愛派どすけべえっちっち絵師です
​:blobcatartist:​
えっちな話題とえっちなものをよく流すしうるさいのでフォローする際はお気をつけてください
18歳未満はフォローしないでね
​:blobglassesdown:​
アステシアはいいぞ!!!!!!!!!!

- The cherry blossom hill -

\",\"https://media.misskeyusercontent.com/io/webpublic-a1c4cb94-16b4-4212-8fbe-19aac71386ca.png\",\"https://media.misskeyusercontent.com/io/10062e91-5c83-4ac6-ba53-5bd824dfec5c.png\",\"https://misskey.io/users/9go3irerxg/inbox\",\"https://misskey.io/users/9go3irerxg/followers\",{\":twitter:\":2472,\":pixiv:\":2473,\"ふぁんぼ\":2474,\"絵\":2475,\"すけべ絵\":2476,\"うちの子\":2477},\"https://twitter.com/sakuragaoka_dr\",\"https://www.pixiv.net/users/64238219\",\"https://sakuragaoka555.fanbox.cc/\",\"https://misskey.io/clips/9gpk5pv068\",\"https://misskey.io/clips/9ik2xzi437\",\"https://misskey.io/clips/9pn7kpj74k6e04t8\",{\":oppai:\":2479,\":pixiv:\":65,\":twitter:\":66,\":oneechan:\":2480,\":blobcatartist:\":2481,\":blobglassesdown:\":2482},\"https://media.misskeyusercontent.com/misskey/fcc1dc70-431f-41b2-a085-1eecd48f3ac6.png\",\"https://media.misskeyusercontent.com/emoji/oneechan.png\",\"https://media.misskeyusercontent.com/emoji/blobcatartist.png\",\"https://media.misskeyusercontent.com/emoji/blobglassesdown.png\",{},[],796,1038,[\"Date\",\"2025-04-10T05:24:05.670Z\"],[\"Date\",\"2025-04-10T05:24:05.670Z\"],{\"host\":49,\"software\":74,\"softwareVersion\":75,\"updated\":2490,\"created\":2491},[\"Date\",\"2025-11-20T14:44:18.905Z\"],[\"Date\",\"2024-12-13T09:14:04.772Z\"],[],[],[],[],[],[],[],{\"slots\":2500,\"props\":2501},[],{\"href\":1849,\"internalHref\":1850,\"class\":6,\"children\":2502},[\"Slot\",2503],{\"name\":9,\"id\":2504},105,{\"slots\":2506,\"props\":2507},[],{\"href\":1849,\"internalHref\":1850,\"children\":2508},[\"Slot\",2509],{\"name\":9,\"id\":2510},106,{\"slots\":2512,\"props\":2513},[],{\"href\":2514,\"internalHref\":2515,\"class\":22,\"children\":2516},\"https://hachyderm.io/@fasterthanlime/115572668999978393\",\"/@fasterthanlime@hachyderm.io/019a98ba-f554-750f-8800-c860394e4006\",[\"Slot\",2517],{\"name\":9,\"id\":2518},107,{\"slots\":2520,\"props\":2521},[],{\"value\":2522,\"locale\":30},[\"Date\",\"2025-11-18T20:49:37.000Z\"],{\"slots\":2524,\"props\":2525},[],{\"language\":30,\"post\":2526,\"class\":85,\"signedAccount\":-1},{\"id\":2527,\"iri\":2528,\"type\":36,\"visibility\":37,\"actorId\":2529,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":2530,\"language\":30,\"tags\":2531,\"emojis\":2532,\"sensitive\":42,\"repliesCount\":10,\"sharesCount\":10,\"quotesCount\":10,\"reactionsCounts\":2533,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":2514,\"updated\":2534,\"published\":2522,\"actor\":2535,\"link\":-2,\"sharedPost\":-2,\"replyTarget\":-2,\"mentions\":2568,\"media\":2569,\"shares\":2570,\"reactions\":2571},\"019a98ba-f554-750f-8800-c860394e4006\",\"https://hachyderm.io/users/fasterthanlime/statuses/115572668999978393\",\"019581a7-ecf2-7af0-8365-300905edf7be\",\"

gemini 3.0 review: it's still a worse coder than I

\",{},{},{},[\"Date\",\"2025-11-18T20:49:37.000Z\"],{\"id\":2529,\"iri\":2536,\"type\":47,\"username\":2537,\"instanceHost\":2538,\"handleHost\":2538,\"handle\":2539,\"accountId\":-2,\"name\":2540,\"bioHtml\":2541,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":2542,\"headerUrl\":2543,\"inboxUrl\":2544,\"sharedInboxUrl\":2545,\"followersUrl\":2546,\"featuredUrl\":2547,\"fieldHtmls\":2548,\"emojis\":2553,\"tags\":2554,\"sensitive\":42,\"successorId\":-2,\"aliases\":2555,\"followeesCount\":2557,\"followersCount\":2558,\"postsCount\":10,\"url\":1849,\"updated\":2559,\"published\":2560,\"created\":2561,\"instance\":2562,\"followers\":2565,\"blockees\":2566,\"blockers\":2567},\"https://hachyderm.io/users/fasterthanlime\",\"fasterthanlime\",\"hachyderm.io\",\"@fasterthanlime@hachyderm.io\",\"amos\",\"

hi, I'm amos! 🍃 they/them 🫐 open-source witch & maker of snappy videos and articles at https://bearcove.eu ✨ be kind, be curious

\",\"https://media.hachyderm.io/accounts/avatars/109/970/092/754/769/854/original/dcb13e22e96d780d.png\",\"https://media.hachyderm.io/accounts/headers/109/970/092/754/769/854/original/720522da3569ac18.jpg\",\"https://hachyderm.io/users/fasterthanlime/inbox\",\"https://hachyderm.io/inbox\",\"https://hachyderm.io/users/fasterthanlime/followers\",\"https://hachyderm.io/users/fasterthanlime/collections/featured\",{\"articles\":2549,\"pronouns\":2550,\"github\":2551,\"youtube\":2552},\"https://fasterthanli.me\",\"they/them\",\"https://github.com/fasterthanlime\",\"https://youtube.com/@fasterthanlime\",{},{},[2556],\"https://octodon.social/users/fasterthanlime\",668,13729,[\"Date\",\"2025-03-10T20:03:40.919Z\"],[\"Date\",\"2023-03-05T00:00:00.000Z\"],[\"Date\",\"2025-03-10T20:03:40.919Z\"],{\"host\":2538,\"software\":179,\"softwareVersion\":353,\"updated\":2563,\"created\":2564},[\"Date\",\"2025-11-20T13:20:06.559Z\"],[\"Date\",\"2025-02-24T02:39:59.945Z\"],[],[],[],[],[],[],[],{\"slots\":2573,\"props\":2574},[],{\"href\":2575,\"internalHref\":2576,\"class\":6,\"children\":2577},\"https://mastodon.social/@3psboyd\",\"/@3psboyd@mastodon.social\",[\"Slot\",2578],{\"name\":9,\"id\":2579},108,{\"slots\":2581,\"props\":2582},[],{\"href\":2575,\"internalHref\":2576,\"children\":2583},[\"Slot\",2584],{\"name\":9,\"id\":2585},109,{\"slots\":2587,\"props\":2588},[],{\"href\":2589,\"internalHref\":2590,\"class\":22,\"children\":2591},\"https://mastodon.social/@3psboyd/115566592331302716\",\"/@3psboyd@mastodon.social/019a98ba-d5dc-7cd6-8361-f4187c0a969e\",[\"Slot\",2592],{\"name\":9,\"id\":2593},110,{\"slots\":2595,\"props\":2596},[],{\"value\":2597,\"locale\":30},[\"Date\",\"2025-11-17T19:04:15.000Z\"],{\"slots\":2599,\"props\":2600},[],{\"href\":2575,\"internalHref\":2576,\"class\":6,\"children\":2601},[\"Slot\",2602],{\"name\":9,\"id\":2603},111,{\"slots\":2605,\"props\":2606},[],{\"href\":2575,\"internalHref\":2576,\"children\":2607},[\"Slot\",2608],{\"name\":9,\"id\":2609},112,{\"slots\":2611,\"props\":2612},[],{\"href\":2613,\"internalHref\":2614,\"class\":22,\"children\":2615},\"https://mastodon.social/@3psboyd/115566832955858792\",\"/@3psboyd@mastodon.social/019a98ba-d5ed-7c4b-9f41-e14093a7a98c\",[\"Slot\",2616],{\"name\":9,\"id\":2617},113,{\"slots\":2619,\"props\":2620},[],{\"value\":2621,\"locale\":30},[\"Date\",\"2025-11-17T20:05:26.000Z\"],{\"slots\":2623,\"props\":2624},[],{\"href\":1932,\"internalHref\":1933,\"children\":2625},[\"Slot\",2626],{\"name\":9,\"id\":2627},114,{\"slots\":2629,\"props\":2630},[],{\"language\":30,\"post\":2631,\"class\":85,\"signedAccount\":-1},{\"id\":2632,\"iri\":2633,\"type\":36,\"visibility\":37,\"actorId\":2634,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":2635,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":2636,\"language\":30,\"tags\":2637,\"emojis\":2638,\"sensitive\":42,\"repliesCount\":10,\"sharesCount\":16,\"quotesCount\":10,\"reactionsCounts\":2639,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":2613,\"updated\":2640,\"published\":2621,\"actor\":2641,\"link\":-2,\"replyTarget\":2665,\"mentions\":2688,\"media\":2689,\"shares\":2690,\"reactions\":2691},\"019a98ba-d5ed-7c4b-9f41-e14093a7a98c\",\"https://mastodon.social/users/3psboyd/statuses/115566832955858792\",\"019592ca-00b1-7ecf-9112-13783c51f1ad\",\"019a98ba-d5dc-7cd6-8361-f4187c0a969e\",\"

"An outrageous stereotype, but also the most noble human who has ever lived" <- Free social media bio if anyone wants it.

\",{},{},{},[\"Date\",\"2025-11-17T20:05:26.000Z\"],{\"id\":2634,\"iri\":2642,\"type\":47,\"username\":2643,\"instanceHost\":249,\"handleHost\":249,\"handle\":2644,\"accountId\":-2,\"name\":2645,\"bioHtml\":2646,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":2647,\"headerUrl\":-2,\"inboxUrl\":2648,\"sharedInboxUrl\":256,\"followersUrl\":2649,\"featuredUrl\":-2,\"fieldHtmls\":2650,\"emojis\":2652,\"tags\":2653,\"sensitive\":42,\"successorId\":-2,\"aliases\":2654,\"followeesCount\":1827,\"followersCount\":2655,\"postsCount\":10,\"url\":2575,\"updated\":2656,\"published\":2657,\"created\":2658,\"instance\":2659,\"followers\":2662,\"blockees\":2663,\"blockers\":2664},\"https://mastodon.social/users/3psboyd\",\"3psboyd\",\"@3psboyd@mastodon.social\",\"Matt Boyd\",\"

Normal man, normal posts.

\",\"https://files.mastodon.social/accounts/avatars/000/213/129/original/3b2093adec9f5636.jpg\",\"https://mastodon.social/users/3psboyd/inbox\",\"https://mastodon.social/users/3psboyd/followers\",{\"Comics\":2651},\"http://www.threepanelsoul.com\",{},{},[],902,[\"Date\",\"2025-03-14T03:54:26.868Z\"],[\"Date\",\"2017-10-12T00:00:00.000Z\"],[\"Date\",\"2025-03-14T03:54:26.868Z\"],{\"host\":249,\"software\":179,\"softwareVersion\":270,\"updated\":2660,\"created\":2661},[\"Date\",\"2025-11-20T16:24:41.593Z\"],[\"Date\",\"2024-12-13T09:08:56.994Z\"],[],[],[],{\"id\":2635,\"iri\":2666,\"type\":36,\"visibility\":37,\"actorId\":2634,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":2667,\"language\":30,\"tags\":2668,\"emojis\":2669,\"sensitive\":42,\"repliesCount\":10,\"sharesCount\":10,\"quotesCount\":10,\"reactionsCounts\":2670,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":2589,\"updated\":2671,\"published\":2597,\"actor\":2672,\"link\":-2,\"mentions\":2686,\"media\":2687},\"https://mastodon.social/users/3psboyd/statuses/115566592331302716\",\"

I'm up to chapter 600 in One Piece and every queer character is, like, an outrageous stereotype but also the most noble human who has ever lived. Gender is wild.

\",{},{},{},[\"Date\",\"2025-11-17T19:04:15.000Z\"],{\"id\":2634,\"iri\":2642,\"type\":47,\"username\":2643,\"instanceHost\":249,\"handleHost\":249,\"handle\":2644,\"accountId\":-2,\"name\":2645,\"bioHtml\":2646,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":2647,\"headerUrl\":-2,\"inboxUrl\":2648,\"sharedInboxUrl\":256,\"followersUrl\":2649,\"featuredUrl\":-2,\"fieldHtmls\":2673,\"emojis\":2674,\"tags\":2675,\"sensitive\":42,\"successorId\":-2,\"aliases\":2676,\"followeesCount\":1827,\"followersCount\":2655,\"postsCount\":10,\"url\":2575,\"updated\":2677,\"published\":2678,\"created\":2679,\"instance\":2680,\"followers\":2683,\"blockees\":2684,\"blockers\":2685},{\"Comics\":2651},{},{},[],[\"Date\",\"2025-03-14T03:54:26.868Z\"],[\"Date\",\"2017-10-12T00:00:00.000Z\"],[\"Date\",\"2025-03-14T03:54:26.868Z\"],{\"host\":249,\"software\":179,\"softwareVersion\":270,\"updated\":2681,\"created\":2682},[\"Date\",\"2025-11-20T16:24:41.593Z\"],[\"Date\",\"2024-12-13T09:08:56.994Z\"],[],[],[],[],[],[],[],[],[],{\"slots\":2693,\"props\":2694},[],{\"href\":2695,\"internalHref\":2696,\"class\":6,\"children\":2697},\"https://infosec.exchange/@binsk\",\"/@binsk@infosec.exchange\",[\"Slot\",2698],{\"name\":9,\"id\":2699},115,{\"slots\":2701,\"props\":2702},[],{\"href\":2695,\"internalHref\":2696,\"children\":2703},[\"Slot\",2704],{\"name\":9,\"id\":2705},116,{\"slots\":2707,\"props\":2708},[],{\"href\":2709,\"internalHref\":2710,\"class\":22,\"children\":2711},\"https://infosec.exchange/@binsk/115572668452979968\",\"/@binsk@infosec.exchange/019a98cd-3cbb-76d9-bced-9ee2ba76a88a\",[\"Slot\",2712],{\"name\":9,\"id\":1511},{\"slots\":2714,\"props\":2715},[],{\"value\":2716,\"locale\":30},[\"Date\",\"2025-11-18T20:49:29.000Z\"],{\"slots\":2718,\"props\":2719},[],{\"language\":30,\"post\":2720,\"class\":85,\"signedAccount\":-1},{\"id\":2721,\"iri\":2722,\"type\":36,\"visibility\":37,\"actorId\":2723,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":2724,\"language\":30,\"tags\":2725,\"emojis\":2726,\"sensitive\":42,\"repliesCount\":10,\"sharesCount\":10,\"quotesCount\":10,\"reactionsCounts\":2727,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":2709,\"updated\":2728,\"published\":2716,\"actor\":2729,\"link\":-2,\"sharedPost\":-2,\"replyTarget\":-2,\"mentions\":2770,\"media\":2771,\"shares\":2772,\"reactions\":2773},\"019a98cd-3cbb-76d9-bced-9ee2ba76a88a\",\"https://infosec.exchange/users/binsk/statuses/115572668452979968\",\"01986686-af02-7071-aa64-ee12ac55c1f8\",\"

Sometimes I wish I could just read the comments on the video without clicking on the video. I'd rather get the consensus on it before wasting my time.

\",{},{},{},[\"Date\",\"2025-11-18T20:50:04.000Z\"],{\"id\":2723,\"iri\":2730,\"type\":47,\"username\":2731,\"instanceHost\":127,\"handleHost\":127,\"handle\":2732,\"accountId\":-2,\"name\":2733,\"bioHtml\":2734,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":2735,\"headerUrl\":2736,\"inboxUrl\":2737,\"sharedInboxUrl\":134,\"followersUrl\":2738,\"featuredUrl\":2739,\"fieldHtmls\":2740,\"emojis\":2745,\"tags\":2748,\"sensitive\":42,\"successorId\":-2,\"aliases\":2759,\"followeesCount\":2760,\"followersCount\":10,\"postsCount\":10,\"url\":2695,\"updated\":2761,\"published\":2762,\"created\":2763,\"instance\":2764,\"followers\":2767,\"blockees\":2768,\"blockers\":2769},\"https://infosec.exchange/users/binsk\",\"binsk\",\"@binsk@infosec.exchange\",\"Binsk​ ​:donor: :blobcat_tinfoilhead:\",\"

Did things in messaging, #security, #identity, #privacy, #policy, #law for places you've probably heard of. Ambivalent on the Oxford Comma, but death on the Grocer’s Apostrophe.

Slowly realizing I might actually be retired.

Posts are on a six month autodelete. I can be way chattier than the remaining posts suggest.

#ActuallyAutistic #FountainPens
#neurodivergent #WorldOfWarcraft #LEGO #coffee
#DuolingoIrish

\",\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/258/357/567/893/072/original/5ffd759a8a947bde.jpg\",\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/258/357/567/893/072/original/e15a79449721f90d.jpg\",\"https://infosec.exchange/users/binsk/inbox\",\"https://infosec.exchange/users/binsk/followers\",\"https://infosec.exchange/users/binsk/collections/featured\",{\"www\":2741,\"Pronouns\":1880,\"Iceshrimp\":2742,\"Pixelfed\":2743,\"Bookwyrm\":2744},\"https://www.binsk.net/about/\",\"https://infosec.town/@binsk\",\"https://pixelfed.social/binsk\",\"https://books.infosec.exchange/@binsk\",{\":donor:\":2746,\":blobcat_tinfoilhead:\":2747},\"https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/183/594/original/61a35b247fc91e55.png\",\"https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/533/815/original/7a38e6d3c848d980.png\",{\"#law\":2749,\"#lego\":2750,\"#coffee\":2751,\"#policy\":2752,\"#privacy\":161,\"#identity\":2753,\"#security\":165,\"#fountainpens\":2754,\"#duolingoirish\":2755,\"#neurodivergent\":2756,\"#worldofwarcraft\":2757,\"#actuallyautistic\":2758},\"https://infosec.exchange/tags/law\",\"https://infosec.exchange/tags/lego\",\"https://infosec.exchange/tags/coffee\",\"https://infosec.exchange/tags/policy\",\"https://infosec.exchange/tags/identity\",\"https://infosec.exchange/tags/fountainpens\",\"https://infosec.exchange/tags/duolingoirish\",\"https://infosec.exchange/tags/neurodivergent\",\"https://infosec.exchange/tags/worldofwarcraft\",\"https://infosec.exchange/tags/actuallyautistic\",[],159,[\"Date\",\"2025-08-01T16:45:59.428Z\"],[\"Date\",\"2022-10-30T00:00:00.000Z\"],[\"Date\",\"2025-08-01T16:45:59.428Z\"],{\"host\":127,\"software\":179,\"softwareVersion\":180,\"updated\":2765,\"created\":2766},[\"Date\",\"2025-11-18T17:21:57.203Z\"],[\"Date\",\"2025-01-21T02:58:45.166Z\"],[],[],[],[],[],[],[],{\"slots\":2775,\"props\":2776},[],{\"href\":2777,\"internalHref\":2778,\"class\":6,\"children\":2779},\"https://mastodon.social/@G_glop\",\"/@G_glop@mastodon.social\",[\"Slot\",2780],{\"name\":9,\"id\":2781},118,{\"slots\":2783,\"props\":2784},[],{\"href\":2777,\"internalHref\":2778,\"children\":2785},[\"Slot\",2786],{\"name\":9,\"id\":2787},119,{\"slots\":2789,\"props\":2790},[],{\"href\":2791,\"internalHref\":2792,\"class\":22,\"children\":2793},\"https://mastodon.social/@G_glop/115572666736814370\",\"/@G_glop@mastodon.social/019a98ba-ad16-79a6-a740-157a666ca311\",[\"Slot\",2794],{\"name\":9,\"id\":606},{\"slots\":2796,\"props\":2797},[],{\"value\":2798,\"locale\":30},[\"Date\",\"2025-11-18T20:49:03.000Z\"],{\"slots\":2800,\"props\":2801},[],{\"href\":2802,\"internalHref\":2803,\"children\":2804},\"https://mastodon.social/@whitequark\",\"/@whitequark@mastodon.social\",[\"Slot\",2805],{\"name\":9,\"id\":2806},121,{\"slots\":2808,\"props\":2809},[],{\"language\":30,\"post\":2810,\"class\":85,\"signedAccount\":-1},{\"id\":2811,\"iri\":2812,\"type\":36,\"visibility\":37,\"actorId\":2813,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":2814,\"language\":30,\"tags\":2815,\"emojis\":2816,\"sensitive\":42,\"repliesCount\":10,\"sharesCount\":16,\"quotesCount\":10,\"reactionsCounts\":2817,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":2791,\"updated\":2818,\"published\":2798,\"actor\":2819,\"link\":-2,\"replyTarget\":-2,\"mentions\":2843,\"media\":2844,\"shares\":2845,\"reactions\":2846},\"019a98ba-ad16-79a6-a740-157a666ca311\",\"https://mastodon.social/users/G_glop/statuses/115572666736814370\",\"0196ed26-8a46-7472-bcf7-f6d660dbb4f1\",\"

. o O (long distance relationship gender TOCTOU)

\",{},{},{},[\"Date\",\"2025-11-18T20:49:03.000Z\"],{\"id\":2813,\"iri\":2820,\"type\":47,\"username\":2821,\"instanceHost\":249,\"handleHost\":249,\"handle\":2822,\"accountId\":-2,\"name\":2823,\"bioHtml\":2824,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":2825,\"headerUrl\":2826,\"inboxUrl\":2827,\"sharedInboxUrl\":256,\"followersUrl\":2828,\"featuredUrl\":2829,\"fieldHtmls\":2830,\"emojis\":2831,\"tags\":2832,\"sensitive\":42,\"successorId\":-2,\"aliases\":2833,\"followeesCount\":287,\"followersCount\":423,\"postsCount\":10,\"url\":2777,\"updated\":2834,\"published\":2835,\"created\":2836,\"instance\":2837,\"followers\":2840,\"blockees\":2841,\"blockers\":2842},\"https://mastodon.social/users/G_glop\",\"G_glop\",\"@G_glop@mastodon.social\",\"Inter-Integrated Catgirl\",\"

~snippets of cat to cat communications~

\",\"https://files.mastodon.social/accounts/avatars/110/143/130/454/979/884/original/39d6934af3f15634.png\",\"https://files.mastodon.social/accounts/headers/110/143/130/454/979/884/original/08b6ad28db4606ab.png\",\"https://mastodon.social/users/G_glop/inbox\",\"https://mastodon.social/users/G_glop/followers\",\"https://mastodon.social/users/G_glop/collections/featured\",{},{},{},[],[\"Date\",\"2025-05-20T10:04:08.135Z\"],[\"Date\",\"2023-04-04T00:00:00.000Z\"],[\"Date\",\"2025-05-20T10:04:08.135Z\"],{\"host\":249,\"software\":179,\"softwareVersion\":270,\"updated\":2838,\"created\":2839},[\"Date\",\"2025-11-20T16:24:41.593Z\"],[\"Date\",\"2024-12-13T09:08:56.994Z\"],[],[],[],[],[],[],[],{\"slots\":2848,\"props\":2849},[],{\"href\":2777,\"internalHref\":2778,\"class\":6,\"children\":2850},[\"Slot\",2851],{\"name\":9,\"id\":2852},122,{\"slots\":2854,\"props\":2855},[],{\"href\":2777,\"internalHref\":2778,\"children\":2856},[\"Slot\",2857],{\"name\":9,\"id\":2858},123,{\"slots\":2860,\"props\":2861},[],{\"href\":2791,\"internalHref\":2792,\"class\":22,\"children\":2862},[\"Slot\",2863],{\"name\":9,\"id\":2864},124,{\"slots\":2866,\"props\":2867},[],{\"value\":2868,\"locale\":30},[\"Date\",\"2025-11-18T20:49:03.000Z\"],{\"slots\":2870,\"props\":2871},[],{\"language\":30,\"post\":2872,\"class\":85,\"signedAccount\":-1},{\"id\":2811,\"iri\":2812,\"type\":36,\"visibility\":37,\"actorId\":2813,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":2814,\"language\":30,\"tags\":2873,\"emojis\":2874,\"sensitive\":42,\"repliesCount\":10,\"sharesCount\":16,\"quotesCount\":10,\"reactionsCounts\":2875,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":2791,\"updated\":2876,\"published\":2868,\"actor\":2877,\"link\":-2,\"sharedPost\":-2,\"replyTarget\":-2,\"mentions\":2891,\"media\":2892,\"shares\":2893,\"reactions\":2894},{},{},{},[\"Date\",\"2025-11-18T20:49:03.000Z\"],{\"id\":2813,\"iri\":2820,\"type\":47,\"username\":2821,\"instanceHost\":249,\"handleHost\":249,\"handle\":2822,\"accountId\":-2,\"name\":2823,\"bioHtml\":2824,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":2825,\"headerUrl\":2826,\"inboxUrl\":2827,\"sharedInboxUrl\":256,\"followersUrl\":2828,\"featuredUrl\":2829,\"fieldHtmls\":2878,\"emojis\":2879,\"tags\":2880,\"sensitive\":42,\"successorId\":-2,\"aliases\":2881,\"followeesCount\":287,\"followersCount\":423,\"postsCount\":10,\"url\":2777,\"updated\":2882,\"published\":2883,\"created\":2884,\"instance\":2885,\"followers\":2888,\"blockees\":2889,\"blockers\":2890},{},{},{},[],[\"Date\",\"2025-05-20T10:04:08.135Z\"],[\"Date\",\"2023-04-04T00:00:00.000Z\"],[\"Date\",\"2025-05-20T10:04:08.135Z\"],{\"host\":249,\"software\":179,\"softwareVersion\":270,\"updated\":2886,\"created\":2887},[\"Date\",\"2025-11-20T16:24:41.593Z\"],[\"Date\",\"2024-12-13T09:08:56.994Z\"],[],[],[],[],[],[],[],{\"slots\":2896,\"props\":2897},[],{\"href\":2898,\"internalHref\":2899,\"class\":6,\"children\":2900},\"https://mastodon.world/@webstandards\",\"/@webstandards@mastodon.world\",[\"Slot\",2901],{\"name\":9,\"id\":2902},125,{\"slots\":2904,\"props\":2905},[],{\"href\":2898,\"internalHref\":2899,\"children\":2906},[\"Slot\",2907],{\"name\":9,\"id\":2908},126,{\"slots\":2910,\"props\":2911},[],{\"href\":2912,\"internalHref\":2913,\"class\":22,\"children\":2914},\"https://mastodon.world/@webstandards/115572654134393906\",\"/@webstandards@mastodon.world/019a98b9-88e8-7841-8334-cd9758beb2c0\",[\"Slot\",2915],{\"name\":9,\"id\":2916},127,{\"slots\":2918,\"props\":2919},[],{\"value\":2920,\"locale\":30},[\"Date\",\"2025-11-18T20:45:50.000Z\"],{\"slots\":2922,\"props\":2923},[],{\"href\":2924,\"internalHref\":2925,\"children\":2926},\"https://front-end.social/@sarajw\",\"/@sarajw@front-end.social\",[\"Slot\",2927],{\"name\":9,\"id\":2928},128,{\"slots\":2930,\"props\":2931},[],{\"id\":2932,\"language\":30,\"class\":2933},\"019a98b9-8859-7143-8138-82f6603d7dfc\",\"\\n mt-4 mb-2\\n \\n \",{\"slots\":2935,\"props\":2936},[],{\"language\":30,\"post\":2937,\"class\":85,\"signedAccount\":-1},{\"id\":2938,\"iri\":2939,\"type\":36,\"visibility\":37,\"actorId\":2940,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":2932,\"name\":-2,\"summary\":-2,\"contentHtml\":2941,\"language\":30,\"tags\":2942,\"emojis\":2943,\"sensitive\":42,\"repliesCount\":10,\"sharesCount\":16,\"quotesCount\":10,\"reactionsCounts\":2944,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":2912,\"updated\":2945,\"published\":2920,\"actor\":2946,\"link\":-2,\"replyTarget\":-2,\"mentions\":2974,\"media\":2975,\"shares\":2976,\"reactions\":2977},\"019a98b9-88e8-7841-8334-cd9758beb2c0\",\"https://mastodon.world/users/webstandards/statuses/115572654134393906\",\"01959415-f9cc-7b2b-8840-c5d32fc8f662\",\"

RE: https://mastodon.world/@webstandards/115570346121204841

Just over 3 hours until Early Birds End! And they are flying out today.

\",{},{},{},[\"Date\",\"2025-11-18T20:45:50.000Z\"],{\"id\":2940,\"iri\":2947,\"type\":47,\"username\":2948,\"instanceHost\":2949,\"handleHost\":2949,\"handle\":2950,\"accountId\":-2,\"name\":2951,\"bioHtml\":2952,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":2953,\"headerUrl\":-2,\"inboxUrl\":2954,\"sharedInboxUrl\":2955,\"followersUrl\":2956,\"featuredUrl\":-2,\"fieldHtmls\":2957,\"emojis\":2960,\"tags\":2961,\"sensitive\":42,\"successorId\":-2,\"aliases\":2962,\"followeesCount\":2963,\"followersCount\":2964,\"postsCount\":10,\"url\":2898,\"updated\":2965,\"published\":2966,\"created\":2967,\"instance\":2968,\"followers\":2971,\"blockees\":2972,\"blockers\":2973},\"https://mastodon.world/users/webstandards\",\"webstandards\",\"mastodon.world\",\"@webstandards@mastodon.world\",\"London Web Standards\",\"

London Web Standards brings together web professionals who are working for a better web. Our meetups provide them with an opportunity to teach, inspire, learn, network and debate.

\",\"https://s3.eu-central-2.wasabisys.com/mastodonworld/accounts/avatars/109/824/864/730/876/367/original/29271581ddfa8d89.png\",\"https://mastodon.world/users/webstandards/inbox\",\"https://mastodon.world/inbox\",\"https://mastodon.world/users/webstandards/followers\",{\"London Web Standards\":2958,\"State of the Browser\":2959},\"https://londonwebstandards.org/\",\"https://2025.stateofthebrowser.com/\",{},{},[],246,412,[\"Date\",\"2025-03-14T09:57:03.054Z\"],[\"Date\",\"2023-02-07T00:00:00.000Z\"],[\"Date\",\"2025-03-14T09:57:03.054Z\"],{\"host\":2949,\"software\":179,\"softwareVersion\":353,\"updated\":2969,\"created\":2970},[\"Date\",\"2025-11-20T11:54:37.902Z\"],[\"Date\",\"2025-02-14T14:51:11.794Z\"],[],[],[],[],[],[],[],{\"slots\":2979,\"props\":2980},[],{\"href\":1823,\"internalHref\":1824,\"class\":6,\"children\":2981},[\"Slot\",2982],{\"name\":9,\"id\":2983},129,{\"slots\":2985,\"props\":2986},[],{\"href\":1823,\"internalHref\":1824,\"children\":2987},[\"Slot\",2988],{\"name\":9,\"id\":2989},130,{\"slots\":2991,\"props\":2992},[],{\"href\":1837,\"internalHref\":1838,\"class\":22,\"children\":2993},[\"Slot\",2994],{\"name\":9,\"id\":2995},131,{\"slots\":2997,\"props\":2998},[],{\"value\":2999,\"locale\":30},[\"Date\",\"2025-11-18T20:47:53.000Z\"],{\"slots\":3001,\"props\":3002},[],{\"language\":30,\"post\":3003,\"class\":85,\"signedAccount\":-1},{\"id\":1858,\"iri\":1859,\"type\":36,\"visibility\":37,\"actorId\":1860,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":1861,\"language\":30,\"tags\":3004,\"emojis\":3005,\"sensitive\":42,\"repliesCount\":10,\"sharesCount\":16,\"quotesCount\":10,\"reactionsCounts\":3006,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":1837,\"updated\":3007,\"published\":2999,\"actor\":3008,\"link\":-2,\"sharedPost\":-2,\"replyTarget\":-2,\"mentions\":3022,\"media\":3023,\"shares\":3024,\"reactions\":3025},{},{},{},[\"Date\",\"2025-11-18T20:47:53.000Z\"],{\"id\":1860,\"iri\":1867,\"type\":47,\"username\":1868,\"instanceHost\":1869,\"handleHost\":1869,\"handle\":1870,\"accountId\":-2,\"name\":1871,\"bioHtml\":1872,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":1873,\"headerUrl\":1874,\"inboxUrl\":1875,\"sharedInboxUrl\":1876,\"followersUrl\":1877,\"featuredUrl\":-2,\"fieldHtmls\":3009,\"emojis\":3010,\"tags\":3011,\"sensitive\":42,\"successorId\":-2,\"aliases\":3012,\"followeesCount\":1887,\"followersCount\":1888,\"postsCount\":10,\"url\":1823,\"updated\":3013,\"published\":3014,\"created\":3015,\"instance\":3016,\"followers\":3019,\"blockees\":3020,\"blockers\":3021},{\"Location\":1879,\"Pronouns\":1880,\"Website\":1881,\"Twitter\":1882},{\":go:\":1884},{},[],[\"Date\",\"2025-03-21T20:48:41.824Z\"],[\"Date\",\"2022-12-07T00:00:00.000Z\"],[\"Date\",\"2025-03-21T20:48:41.824Z\"],{\"host\":1869,\"software\":179,\"softwareVersion\":1893,\"updated\":3017,\"created\":3018},[\"Date\",\"2025-06-04T00:03:09.647Z\"],[\"Date\",\"2025-03-21T20:48:40.810Z\"],[],[],[],[],[],[],[],{\"slots\":3027,\"props\":3028},[],{\"href\":3029,\"internalHref\":3030,\"class\":6,\"children\":3031},\"https://mastodon.social/@CuratedHackerNews\",\"/@CuratedHackerNews@mastodon.social\",[\"Slot\",3032],{\"name\":9,\"id\":3033},132,{\"slots\":3035,\"props\":3036},[],{\"href\":3029,\"internalHref\":3030,\"children\":3037},[\"Slot\",3038],{\"name\":9,\"id\":3039},133,{\"slots\":3041,\"props\":3042},[],{\"href\":3043,\"internalHref\":3044,\"class\":22,\"children\":3045},\"https://mastodon.social/@CuratedHackerNews/115572659078647189\",\"/@CuratedHackerNews@mastodon.social/019aa030-976f-76d2-9832-e1b67229ce4e\",[\"Slot\",3046],{\"name\":9,\"id\":3047},134,{\"slots\":3049,\"props\":3050},[],{\"value\":3051,\"locale\":30},[\"Date\",\"2025-11-18T20:47:06.000Z\"],{\"slots\":3053,\"props\":3054},[],{\"language\":30,\"post\":3055,\"class\":85,\"signedAccount\":-1},{\"id\":3056,\"iri\":3057,\"type\":36,\"visibility\":37,\"actorId\":3058,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":3059,\"language\":30,\"tags\":3060,\"emojis\":3062,\"sensitive\":42,\"repliesCount\":10,\"sharesCount\":16,\"quotesCount\":10,\"reactionsCounts\":3063,\"reactionsCount\":10,\"linkId\":3064,\"linkUrl\":3065,\"url\":3043,\"updated\":3066,\"published\":3051,\"actor\":3067,\"link\":3090,\"sharedPost\":-2,\"replyTarget\":-2,\"mentions\":3094,\"media\":3095,\"shares\":3096,\"reactions\":3097},\"019aa030-976f-76d2-9832-e1b67229ce4e\",\"https://mastodon.social/users/CuratedHackerNews/statuses/115572659078647189\",\"01979fbf-6faf-7f61-b173-d27d9797cb46\",\"

A 'small' vanilla Kubernetes install on NixOS

https://stephank.nl/p/2025-11-17-a-small-vanilla-kubernetes-install-on-nixos.html

#kubernetes

\",{\"kubernetes\":3061},\"https://mastodon.social/tags/kubernetes\",{},{},\"019a9435-035e-7e3c-8ba8-3b56c72371b9\",\"https://stephank.nl/p/2025-11-17-a-small-vanilla-kubernetes-install-on-nixos.html\",[\"Date\",\"2025-11-18T20:47:06.000Z\"],{\"id\":3058,\"iri\":3068,\"type\":486,\"username\":3069,\"instanceHost\":249,\"handleHost\":249,\"handle\":3070,\"accountId\":-2,\"name\":3071,\"bioHtml\":3072,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":3073,\"headerUrl\":-2,\"inboxUrl\":3074,\"sharedInboxUrl\":256,\"followersUrl\":3075,\"featuredUrl\":3076,\"fieldHtmls\":3077,\"emojis\":3078,\"tags\":3079,\"sensitive\":42,\"successorId\":-2,\"aliases\":3080,\"followeesCount\":10,\"followersCount\":2989,\"postsCount\":10,\"url\":3029,\"updated\":3081,\"published\":3082,\"created\":3083,\"instance\":3084,\"followers\":3087,\"blockees\":3088,\"blockers\":3089},\"https://mastodon.social/users/CuratedHackerNews\",\"CuratedHackerNews\",\"@CuratedHackerNews@mastodon.social\",\"Curated Hacker News\",\"

Hacker News RSS feed without the Corporate Media and other low SNR links.

Formerly at botsin.space

\",\"https://files.mastodon.social/accounts/avatars/114/161/422/455/909/834/original/e17915543c8f38ba.jpg\",\"https://mastodon.social/users/CuratedHackerNews/inbox\",\"https://mastodon.social/users/CuratedHackerNews/followers\",\"https://mastodon.social/users/CuratedHackerNews/collections/featured\",{},{},{},[],[\"Date\",\"2025-06-24T02:23:32.785Z\"],[\"Date\",\"2025-03-14T00:00:00.000Z\"],[\"Date\",\"2025-06-24T02:23:32.785Z\"],{\"host\":249,\"software\":179,\"softwareVersion\":270,\"updated\":3085,\"created\":3086},[\"Date\",\"2025-11-20T16:24:41.593Z\"],[\"Date\",\"2024-12-13T09:08:56.994Z\"],[],[],[],{\"id\":3064,\"url\":3065,\"title\":3091,\"siteName\":-2,\"type\":-2,\"description\":-2,\"author\":-2,\"imageUrl\":-2,\"imageAlt\":-2,\"imageType\":-2,\"imageWidth\":-2,\"imageHeight\":-2,\"creatorId\":-2,\"created\":3092,\"scraped\":3093,\"creator\":-2},\"A 'small' vanilla Kubernetes install on NixOS\",[\"Date\",\"2025-11-17T23:44:53.568Z\"],[\"Date\",\"2025-11-20T07:35:30.411Z\"],[],[],[],[],{\"slots\":3099,\"props\":3100},[],{\"href\":3101,\"internalHref\":3102,\"class\":6,\"children\":3103},\"https://social.growyourown.services/@FediVideo\",\"/@FediVideo@social.growyourown.services\",[\"Slot\",3104],{\"name\":9,\"id\":3105},135,{\"slots\":3107,\"props\":3108},[],{\"href\":3101,\"internalHref\":3102,\"children\":3109},[\"Slot\",3110],{\"name\":9,\"id\":3111},136,{\"slots\":3113,\"props\":3114},[],{\"href\":3115,\"internalHref\":3116,\"class\":22,\"children\":3117},\"https://social.growyourown.services/@FediVideo/115572658567550541\",\"/@FediVideo@social.growyourown.services/019a98bc-8473-7945-a5cb-6edf5d4cc652\",[\"Slot\",3118],{\"name\":9,\"id\":3119},137,{\"slots\":3121,\"props\":3122},[],{\"value\":3123,\"locale\":30},[\"Date\",\"2025-11-18T20:46:58.000Z\"],{\"slots\":3125,\"props\":3126},[],{\"language\":30,\"post\":3127,\"class\":85,\"signedAccount\":-1},{\"id\":3128,\"iri\":3129,\"type\":36,\"visibility\":37,\"actorId\":3130,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":3131,\"language\":30,\"tags\":3132,\"emojis\":3137,\"sensitive\":42,\"repliesCount\":10,\"sharesCount\":450,\"quotesCount\":10,\"reactionsCounts\":3138,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":3115,\"updated\":3139,\"published\":3123,\"actor\":3140,\"link\":-2,\"sharedPost\":-2,\"replyTarget\":-2,\"mentions\":3169,\"media\":3301,\"shares\":3302,\"reactions\":3303},\"019a98bc-8473-7945-a5cb-6edf5d4cc652\",\"https://social.growyourown.services/users/FediVideo/statuses/115572658567550541\",\"0195fe99-d99c-7ef2-b911-0421ddf9fb6e\",\"

#Radio accounts posting videos:

➡️ @pg4i - Amateur radio operator, especially Morse code
➡️ @n3vem - Amateur radio, amateur rocketry, radio rockets
➡️ @kd8bxp - Amateur radio, robotics, retro computing
➡️ @raek - Electronics & radio, building radio equipment
➡️ @flo - Retro tech incl radio transmitters & receivers
➡️ @vwestlife_makertube - All about classic technology including radios
➡️ @jmh59 - Railways, model trains, amateur radio

#PeerTube #AmateurRadio #HamRadio

\",{\"radio\":3133,\"hamradio\":3134,\"peertube\":3135,\"amateurradio\":3136},\"https://social.growyourown.services/tags/radio\",\"https://social.growyourown.services/tags/hamradio\",\"https://social.growyourown.services/tags/peertube\",\"https://social.growyourown.services/tags/AmateurRadio\",{},{},[\"Date\",\"2025-11-18T20:47:27.000Z\"],{\"id\":3130,\"iri\":3141,\"type\":47,\"username\":3142,\"instanceHost\":3143,\"handleHost\":3143,\"handle\":3144,\"accountId\":-2,\"name\":3145,\"bioHtml\":3146,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":3147,\"headerUrl\":3148,\"inboxUrl\":3149,\"sharedInboxUrl\":3150,\"followersUrl\":3151,\"featuredUrl\":-2,\"fieldHtmls\":3152,\"emojis\":3155,\"tags\":3156,\"sensitive\":42,\"successorId\":-2,\"aliases\":3157,\"followeesCount\":99,\"followersCount\":3158,\"postsCount\":10,\"url\":3101,\"updated\":3159,\"published\":3160,\"created\":3161,\"instance\":3162,\"followers\":3166,\"blockees\":3167,\"blockers\":3168},\"https://social.growyourown.services/users/FediVideo\",\"FediVideo\",\"social.growyourown.services\",\"@FediVideo@social.growyourown.services\",\"Fedi.Video\",\"

Boosting interesting videos & livestreams from the Fediverse 🍿

@ or DM me if you want to suggest a video or livestream 📨

Maintained by @FediThing

🎂 Account originally joined mas.to on 22nd November 2020

\",\"https://cdn.masto.host/socialgrowyourownservices/accounts/avatars/109/313/944/455/045/022/original/6f12b4d88eb32057.png\",\"https://cdn.masto.host/socialgrowyourownservices/accounts/headers/109/313/944/455/045/022/original/c3d0eaf18a402cf4.jpg\",\"https://social.growyourown.services/users/FediVideo/inbox\",\"https://social.growyourown.services/inbox\",\"https://social.growyourown.services/users/FediVideo/followers\",{\"PeerTube\":3153,\"See also\":3154},\"https://fedi.video\",\"@FediTips, @FediFollows, @FediGarden & @homegrown\",{},{},[],8464,[\"Date\",\"2025-04-04T02:20:50.463Z\"],[\"Date\",\"2022-11-09T00:00:00.000Z\"],[\"Date\",\"2025-04-04T02:20:50.463Z\"],{\"host\":3143,\"software\":179,\"softwareVersion\":3163,\"updated\":3164,\"created\":3165},\"4.3.7\",[\"Date\",\"2025-04-05T18:44:26.914Z\"],[\"Date\",\"2025-03-12T04:29:44.658Z\"],[],[],[],[3170,3190,3208,3229,3247,3265,3283],{\"postId\":3128,\"actorId\":3171,\"actor\":3172},\"019a54e2-8080-72d2-8908-f1fa7f44afad\",{\"id\":3171,\"iri\":3173,\"type\":47,\"username\":3174,\"instanceHost\":3175,\"handleHost\":3175,\"handle\":3176,\"accountId\":-2,\"name\":3177,\"bioHtml\":3178,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":3179,\"headerUrl\":-2,\"inboxUrl\":3180,\"sharedInboxUrl\":3181,\"followersUrl\":3182,\"featuredUrl\":-2,\"fieldHtmls\":3183,\"emojis\":3184,\"tags\":3185,\"sensitive\":42,\"successorId\":-2,\"aliases\":3186,\"followeesCount\":93,\"followersCount\":1299,\"postsCount\":10,\"url\":3173,\"updated\":3187,\"published\":3188,\"created\":3189},\"https://makertube.net/accounts/vwestlife_makertube\",\"vwestlife_makertube\",\"makertube.net\",\"@vwestlife_makertube@makertube.net\",\"VWestlife\",\"Demonstrations, reviews, and tutorials about computers and electronics. Also featuring stereo equipment, electronic gadgets, classic video games, cars, radio, videography, and more. If you enjoy my videos, please subscribe to my channel.\\n\\nMy Other Hangouts:\\n\\nMastodon: https://mastodon.social/@vwestlife\\n\\nReddit: https://old.reddit.com/user/vwestlife\\n\\nAudioKarma: https://audiokarma.org/forums/index.php?members/vwestlife.133769/#info\\n\\nVintage Computer Forums: https://forum.vcfed.org/index.php?members/vwestlife.6239/\\n\\nVWvortex / The Car Lounge: https://www.vwvortex.com/members/vwestlife.171536/\\n\\nSteve Hoffman music forums: https://forums.stevehoffman.tv/members/vwestlife.81452/#info\\n\\nTapeheads: https://www.tapeheads.net/members/vwestlife.29508/\\n\\nRadio Discussions: https://www.radiodiscussions.com/members/kevtronics.64600/\",\"https://makertube.net/lazy-static/avatars/218de611-e1ce-4fd9-92b3-493fbf780c2c.jpg\",\"https://makertube.net/accounts/vwestlife_makertube/inbox\",\"https://makertube.net/inbox\",\"https://makertube.net/accounts/vwestlife_makertube/followers\",{},{},{},[],[\"Date\",\"2025-11-05T16:38:41.535Z\"],[\"Date\",\"2025-01-27T10:33:27.555Z\"],[\"Date\",\"2025-11-05T16:38:41.535Z\"],{\"postId\":3128,\"actorId\":3191,\"actor\":3192},\"019a54e2-d8c9-7a39-a28b-698ba74201b9\",{\"id\":3191,\"iri\":3193,\"type\":47,\"username\":3194,\"instanceHost\":3175,\"handleHost\":3175,\"handle\":3195,\"accountId\":-2,\"name\":3196,\"bioHtml\":3197,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":3198,\"headerUrl\":-2,\"inboxUrl\":3199,\"sharedInboxUrl\":3181,\"followersUrl\":3200,\"featuredUrl\":-2,\"fieldHtmls\":3201,\"emojis\":3202,\"tags\":3203,\"sensitive\":42,\"successorId\":-2,\"aliases\":3204,\"followeesCount\":197,\"followersCount\":211,\"postsCount\":10,\"url\":3193,\"updated\":3205,\"published\":3206,\"created\":3207},\"https://makertube.net/accounts/flo\",\"flo\",\"@flo@makertube.net\",\"Florence\",\"31 year old television producer in New Brunswick, Canada. BScEE. Fan of vintage tech, prog rock, and other things. Neurodivergent. 🏳️‍🌈 🏳️‍⚧️\\n\\nMastodon:\\nhttps://tech.lgbt/@themaritimegirl\\n\\nYouTube:\\nhttps://www.youtube.com/@themaritimegirl\",\"https://makertube.net/lazy-static/avatars/445126b9-54a8-4460-b79c-d8fc4e311a25.jpg\",\"https://makertube.net/accounts/flo/inbox\",\"https://makertube.net/accounts/flo/followers\",{},{},{},[],[\"Date\",\"2025-11-05T16:39:04.136Z\"],[\"Date\",\"2025-09-01T07:16:14.883Z\"],[\"Date\",\"2025-11-05T16:39:04.136Z\"],{\"postId\":3128,\"actorId\":3209,\"actor\":3210},\"019a98bc-8b8f-7c0f-b1ab-f072a0499480\",{\"id\":3209,\"iri\":3211,\"type\":47,\"username\":3212,\"instanceHost\":3213,\"handleHost\":3213,\"handle\":3214,\"accountId\":-2,\"name\":3215,\"bioHtml\":3216,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":3217,\"headerUrl\":-2,\"inboxUrl\":3218,\"sharedInboxUrl\":3219,\"followersUrl\":3220,\"featuredUrl\":-2,\"fieldHtmls\":3221,\"emojis\":3222,\"tags\":3223,\"sensitive\":42,\"successorId\":-2,\"aliases\":3224,\"followeesCount\":422,\"followersCount\":3225,\"postsCount\":10,\"url\":3211,\"updated\":3226,\"published\":3227,\"created\":3228},\"https://spectra.video/accounts/pg4i\",\"pg4i\",\"spectra.video\",\"@pg4i@spectra.video\",\"Joop Stakenborg\",\"Hamradio operator since 1977. Interested in Morse code, portable operation and homebrewing. Callsign PG4I.\",\"https://spectra.video/lazy-static/avatars/33ae3b6e-8a45-4c30-a246-601c2a7c17e1.jpg\",\"https://spectra.video/accounts/pg4i/inbox\",\"https://spectra.video/inbox\",\"https://spectra.video/accounts/pg4i/followers\",{},{},{},[],168,[\"Date\",\"2025-11-18T20:51:24.696Z\"],[\"Date\",\"2023-09-08T00:46:32.084Z\"],[\"Date\",\"2025-11-18T20:51:24.696Z\"],{\"postId\":3128,\"actorId\":3230,\"actor\":3231},\"019a98bc-ca71-75d9-9dce-dd469dd55d63\",{\"id\":3230,\"iri\":3232,\"type\":47,\"username\":3233,\"instanceHost\":3175,\"handleHost\":3175,\"handle\":3234,\"accountId\":-2,\"name\":3235,\"bioHtml\":3236,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":3237,\"headerUrl\":-2,\"inboxUrl\":3238,\"sharedInboxUrl\":3181,\"followersUrl\":3239,\"featuredUrl\":-2,\"fieldHtmls\":3240,\"emojis\":3241,\"tags\":3242,\"sensitive\":42,\"successorId\":-2,\"aliases\":3243,\"followeesCount\":93,\"followersCount\":2131,\"postsCount\":10,\"url\":3232,\"updated\":3244,\"published\":3245,\"created\":3246},\"https://makertube.net/accounts/n3vem\",\"n3vem\",\"@n3vem@makertube.net\",\"N3VEM\",\"He/Him\\nHam radio op N3VEM. Into HF mostly, but also run a repeater, and dabble with rockets a little bit as a cross-over hobby. \\n\\nThis account is where I'll share my ham radio, model rocketry, and other random videos!\\n\\nOther info about me:\\n#UnitarianUniversalist - Respecter of the living web & justice is for everyone. \\n\\nAsk me why I don’t own a microwave. \\n\\nI have a day job, but it's not what defines me - I'd rather talk about #HamRadio, #ModelRockets, #SocialJustice, #Electronics, #DIY, #Making or anything else you are passionate about.\\n\\nMight swear a little when angry. Sorry.\",\"https://makertube.net/lazy-static/avatars/d27a62f2-4723-4df8-a459-ce51f08c2a28.jpg\",\"https://makertube.net/accounts/n3vem/inbox\",\"https://makertube.net/accounts/n3vem/followers\",{},{},{},[],[\"Date\",\"2025-11-18T20:51:40.797Z\"],[\"Date\",\"2024-06-05T14:46:44.031Z\"],[\"Date\",\"2025-11-18T20:51:40.797Z\"],{\"postId\":3128,\"actorId\":3248,\"actor\":3249},\"019a98bd-17bf-72a7-841f-2829ee226f75\",{\"id\":3248,\"iri\":3250,\"type\":47,\"username\":3251,\"instanceHost\":3175,\"handleHost\":3175,\"handle\":3252,\"accountId\":-2,\"name\":3253,\"bioHtml\":3254,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":3255,\"headerUrl\":-2,\"inboxUrl\":3256,\"sharedInboxUrl\":3181,\"followersUrl\":3257,\"featuredUrl\":-2,\"fieldHtmls\":3258,\"emojis\":3259,\"tags\":3260,\"sensitive\":42,\"successorId\":-2,\"aliases\":3261,\"followeesCount\":107,\"followersCount\":25,\"postsCount\":10,\"url\":3250,\"updated\":3262,\"published\":3263,\"created\":3264},\"https://makertube.net/accounts/kd8bxp\",\"kd8bxp\",\"@kd8bxp@makertube.net\",\"LeRoy Miller\",\"I'm a ham radio operator, my primary interesting include hobby robotics/robots, arduino, esp32, vintage electronics, video games, vintage computers (Commodore 64, TI-99/4a, Apple IIe/c). I like to share some of the projects I'm working on from time to time.\\n\\nHamShack Hotline: 11585\\nAmateure Wire: 1080\\nHams Over IP: 100181\\n\\nhttp://kd8bxp.blogspot.com\\nhttp://keybase.io/kd8bxp\\n@kd8bxp@mastodon.radio\\n\\nMoved from the peertube instance diode.zone to here.\",\"https://makertube.net/lazy-static/avatars/7e29e06b-4a6d-4f28-af8b-50c623a601cf.png\",\"https://makertube.net/accounts/kd8bxp/inbox\",\"https://makertube.net/accounts/kd8bxp/followers\",{},{},{},[],[\"Date\",\"2025-11-18T20:52:00.584Z\"],[\"Date\",\"2025-10-28T15:51:30.210Z\"],[\"Date\",\"2025-11-18T20:52:00.584Z\"],{\"postId\":3128,\"actorId\":3266,\"actor\":3267},\"019a98bd-b1dd-7837-8250-870a9d1413c4\",{\"id\":3266,\"iri\":3268,\"type\":47,\"username\":3269,\"instanceHost\":3175,\"handleHost\":3175,\"handle\":3270,\"accountId\":-2,\"name\":3271,\"bioHtml\":3272,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":3273,\"headerUrl\":-2,\"inboxUrl\":3274,\"sharedInboxUrl\":3181,\"followersUrl\":3275,\"featuredUrl\":-2,\"fieldHtmls\":3276,\"emojis\":3277,\"tags\":3278,\"sensitive\":42,\"successorId\":-2,\"aliases\":3279,\"followeesCount\":93,\"followersCount\":388,\"postsCount\":10,\"url\":3268,\"updated\":3280,\"published\":3281,\"created\":3282},\"https://makertube.net/accounts/raek\",\"raek\",\"@raek@makertube.net\",\"Rasmus SA5RJS 📺\",\"Electronics tinkerer and radio amateur\",\"https://makertube.net/lazy-static/avatars/38b187e0-2bd2-4399-8450-1f70184a1d47.png\",\"https://makertube.net/accounts/raek/inbox\",\"https://makertube.net/accounts/raek/followers\",{},{},{},[],[\"Date\",\"2025-11-18T20:52:40.030Z\"],[\"Date\",\"2024-08-08T09:03:20.202Z\"],[\"Date\",\"2025-11-18T20:52:40.030Z\"],{\"postId\":3128,\"actorId\":3284,\"actor\":3285},\"019a98be-1459-7c80-bd64-4fd72f230256\",{\"id\":3284,\"iri\":3286,\"type\":47,\"username\":3287,\"instanceHost\":3175,\"handleHost\":3175,\"handle\":3288,\"accountId\":-2,\"name\":3289,\"bioHtml\":3290,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":3291,\"headerUrl\":-2,\"inboxUrl\":3292,\"sharedInboxUrl\":3181,\"followersUrl\":3293,\"featuredUrl\":-2,\"fieldHtmls\":3294,\"emojis\":3295,\"tags\":3296,\"sensitive\":42,\"successorId\":-2,\"aliases\":3297,\"followeesCount\":16,\"followersCount\":25,\"postsCount\":10,\"url\":3286,\"updated\":3298,\"published\":3299,\"created\":3300},\"https://makertube.net/accounts/jmh59\",\"jmh59\",\"@jmh59@makertube.net\",\"JMH59\",\"Messing about on heritage railways\",\"https://makertube.net/lazy-static/avatars/41a2c0b1-b582-46ad-8fcb-72444d45d554.jpg\",\"https://makertube.net/accounts/jmh59/inbox\",\"https://makertube.net/accounts/jmh59/followers\",{},{},{},[],[\"Date\",\"2025-11-18T20:53:05.238Z\"],[\"Date\",\"2025-02-10T20:11:40.939Z\"],[\"Date\",\"2025-11-18T20:53:05.238Z\"],[],[],[],{\"slots\":3305,\"props\":3306},[],{\"href\":3307,\"internalHref\":3308,\"class\":6,\"children\":3309},\"https://misskey.io/@GomaComm\",\"/@GomaComm@misskey.io\",[\"Slot\",3310],{\"name\":9,\"id\":3311},138,{\"slots\":3313,\"props\":3314},[],{\"href\":3307,\"internalHref\":3308,\"children\":3315},[\"Slot\",3316],{\"name\":9,\"id\":3317},139,{\"slots\":3319,\"props\":3320},[],{\"href\":3321,\"internalHref\":3322,\"class\":22,\"children\":3323},\"https://misskey.io/notes/af8lyyuxa1vl003c\",\"/@GomaComm@misskey.io/019a98d8-6bf1-7f3c-bf24-a8853de80a9c\",[\"Slot\",3324],{\"name\":9,\"id\":998},{\"slots\":3326,\"props\":3327},[],{\"value\":3328,\"locale\":30},[\"Date\",\"2025-11-18T20:46:48.825Z\"],{\"slots\":3330,\"props\":3331},[],{\"language\":30,\"post\":3332,\"class\":85,\"signedAccount\":-1},{\"id\":3333,\"iri\":3321,\"type\":36,\"visibility\":37,\"actorId\":3334,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":3335,\"language\":-2,\"tags\":3336,\"emojis\":3337,\"sensitive\":42,\"repliesCount\":10,\"sharesCount\":10,\"quotesCount\":10,\"reactionsCounts\":3340,\"reactionsCount\":16,\"linkId\":-2,\"linkUrl\":-2,\"url\":-2,\"updated\":3341,\"published\":3328,\"actor\":3342,\"link\":-2,\"sharedPost\":-2,\"replyTarget\":-2,\"mentions\":3366,\"media\":3367,\"shares\":3368,\"reactions\":3369},\"019a98d8-6bf1-7f3c-bf24-a8853de80a9c\",\"01968166-de97-7c15-b38c-f9afe0eb5631\",\"

​:ohayo:​ ​:blobcatblack_nemu:​

\",{},{\":ohayo:\":3338,\":blobcatblack_nemu:\":3339},\"https://media.misskeyusercontent.com/misskey/91d7f7c3-084b-4d86-9954-065b86ee7a45.png\",\"https://media.misskeyusercontent.com/io/b08ed15e-23ad-4ed1-bb11-59db24f16fe6.png\",{\"01961d94-6811-7add-b6bf-326426841be8\":16},[\"Date\",\"2025-11-18T20:46:48.825Z\"],{\"id\":3334,\"iri\":3343,\"type\":47,\"username\":3344,\"instanceHost\":49,\"handleHost\":49,\"handle\":3345,\"accountId\":-2,\"name\":3346,\"bioHtml\":3347,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":3348,\"headerUrl\":3349,\"inboxUrl\":3350,\"sharedInboxUrl\":57,\"followersUrl\":3351,\"featuredUrl\":-2,\"fieldHtmls\":3352,\"emojis\":3353,\"tags\":3356,\"sensitive\":42,\"successorId\":-2,\"aliases\":3357,\"followeesCount\":10,\"followersCount\":10,\"postsCount\":10,\"url\":3307,\"updated\":3358,\"published\":-2,\"created\":3359,\"instance\":3360,\"followers\":3363,\"blockees\":3364,\"blockers\":3365},\"https://misskey.io/users/9lgve746pg\",\"GomaComm\",\"@GomaComm@misskey.io\",\"Goma :bunhd:\",\"

うちの子のイラスト依頼などをしています。
イラストレーターさんをフォローします。

いつも心にベルナ村のテーマを添えて
​:meowmelt:​

\",\"https://media.misskeyusercontent.com/io/68401486-6097-4059-9aa7-94bac6a11783.webp\",\"https://media.misskeyusercontent.com/io/990f9436-749a-4b78-bf64-2418ed8b9ccc.webp\",\"https://misskey.io/users/9lgve746pg/inbox\",\"https://misskey.io/users/9lgve746pg/followers\",{},{\":bunhd:\":3354,\":meowmelt:\":3355},\"https://media.misskeyusercontent.com/emoji/bunhd.png\",\"https://media.misskeyusercontent.com/emoji/meowmelt.png\",{},[],[\"Date\",\"2025-04-29T11:55:24.696Z\"],[\"Date\",\"2025-04-29T11:55:24.696Z\"],{\"host\":49,\"software\":74,\"softwareVersion\":75,\"updated\":3361,\"created\":3362},[\"Date\",\"2025-11-20T14:44:18.905Z\"],[\"Date\",\"2024-12-13T09:14:04.772Z\"],[],[],[],[],[],[],[],{\"slots\":3371,\"props\":3372},[],{\"href\":2898,\"internalHref\":2899,\"class\":6,\"children\":3373},[\"Slot\",3374],{\"name\":9,\"id\":3375},141,{\"slots\":3377,\"props\":3378},[],{\"href\":2898,\"internalHref\":2899,\"children\":3379},[\"Slot\",3380],{\"name\":9,\"id\":3381},142,{\"slots\":3383,\"props\":3384},[],{\"href\":2912,\"internalHref\":2913,\"class\":22,\"children\":3385},[\"Slot\",3386],{\"name\":9,\"id\":3387},143,{\"slots\":3389,\"props\":3390},[],{\"value\":3391,\"locale\":30},[\"Date\",\"2025-11-18T20:45:50.000Z\"],{\"slots\":3393,\"props\":3394},[],{\"id\":2932,\"language\":30,\"class\":2933},{\"slots\":3396,\"props\":3397},[],{\"language\":30,\"post\":3398,\"class\":85,\"signedAccount\":-1},{\"id\":2938,\"iri\":2939,\"type\":36,\"visibility\":37,\"actorId\":2940,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":2932,\"name\":-2,\"summary\":-2,\"contentHtml\":2941,\"language\":30,\"tags\":3399,\"emojis\":3400,\"sensitive\":42,\"repliesCount\":10,\"sharesCount\":16,\"quotesCount\":10,\"reactionsCounts\":3401,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":2912,\"updated\":3402,\"published\":3391,\"actor\":3403,\"link\":-2,\"sharedPost\":-2,\"replyTarget\":-2,\"mentions\":3417,\"media\":3418,\"shares\":3419,\"reactions\":3420},{},{},{},[\"Date\",\"2025-11-18T20:45:50.000Z\"],{\"id\":2940,\"iri\":2947,\"type\":47,\"username\":2948,\"instanceHost\":2949,\"handleHost\":2949,\"handle\":2950,\"accountId\":-2,\"name\":2951,\"bioHtml\":2952,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":2953,\"headerUrl\":-2,\"inboxUrl\":2954,\"sharedInboxUrl\":2955,\"followersUrl\":2956,\"featuredUrl\":-2,\"fieldHtmls\":3404,\"emojis\":3405,\"tags\":3406,\"sensitive\":42,\"successorId\":-2,\"aliases\":3407,\"followeesCount\":2963,\"followersCount\":2964,\"postsCount\":10,\"url\":2898,\"updated\":3408,\"published\":3409,\"created\":3410,\"instance\":3411,\"followers\":3414,\"blockees\":3415,\"blockers\":3416},{\"London Web Standards\":2958,\"State of the Browser\":2959},{},{},[],[\"Date\",\"2025-03-14T09:57:03.054Z\"],[\"Date\",\"2023-02-07T00:00:00.000Z\"],[\"Date\",\"2025-03-14T09:57:03.054Z\"],{\"host\":2949,\"software\":179,\"softwareVersion\":353,\"updated\":3412,\"created\":3413},[\"Date\",\"2025-11-20T11:54:37.902Z\"],[\"Date\",\"2025-02-14T14:51:11.794Z\"],[],[],[],[],[],[],[],{\"slots\":3422,\"props\":3423},[],{\"href\":3424,\"internalHref\":3425,\"class\":6,\"children\":3426},\"https://glasgow.social/@sue\",\"/@sue@glasgow.social\",[\"Slot\",3427],{\"name\":9,\"id\":3428},144,{\"slots\":3430,\"props\":3431},[],{\"href\":3424,\"internalHref\":3425,\"children\":3432},[\"Slot\",3433],{\"name\":9,\"id\":3434},145,{\"slots\":3436,\"props\":3437},[],{\"href\":3438,\"internalHref\":3439,\"class\":22,\"children\":3440},\"https://glasgow.social/@sue/115572649961280498\",\"/@sue@glasgow.social/019a98ea-1e44-7777-ac22-85ee77f19ac2\",[\"Slot\",3441],{\"name\":9,\"id\":3442},146,{\"slots\":3444,\"props\":3445},[],{\"value\":3446,\"locale\":30},[\"Date\",\"2025-11-18T20:44:47.000Z\"],{\"slots\":3448,\"props\":3449},[],{\"language\":30,\"post\":3450,\"class\":85,\"signedAccount\":-1},{\"id\":3451,\"iri\":3452,\"type\":36,\"visibility\":37,\"actorId\":3453,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":3454,\"language\":30,\"tags\":3455,\"emojis\":3456,\"sensitive\":42,\"repliesCount\":10,\"sharesCount\":25,\"quotesCount\":10,\"reactionsCounts\":3457,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":3438,\"updated\":3458,\"published\":3446,\"actor\":3459,\"link\":-2,\"sharedPost\":-2,\"replyTarget\":-2,\"mentions\":3489,\"media\":3490,\"shares\":3491,\"reactions\":3492},\"019a98ea-1e44-7777-ac22-85ee77f19ac2\",\"https://glasgow.social/users/sue/statuses/115572649961280498\",\"01961b6e-7fd6-7005-8bf4-373dae56c41e\",\"

On the one hand I'm glad to see the increase in understanding that software engineering isn't writing code. On the other we now have to counter the "deduction" that this means writing code is longer a valuable skill lolol. If software engineering is a more abstract skillset than writing code, how exactly do people acquire it...? Spoiler: Aye, it's by writing code.

\",{},{},{},[\"Date\",\"2025-11-18T20:44:47.000Z\"],{\"id\":3453,\"iri\":3460,\"type\":47,\"username\":3461,\"instanceHost\":3462,\"handleHost\":3462,\"handle\":3463,\"accountId\":-2,\"name\":3464,\"bioHtml\":3465,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":3466,\"headerUrl\":3467,\"inboxUrl\":3468,\"sharedInboxUrl\":3469,\"followersUrl\":3470,\"featuredUrl\":-2,\"fieldHtmls\":3471,\"emojis\":3475,\"tags\":3476,\"sensitive\":42,\"successorId\":-2,\"aliases\":3477,\"followeesCount\":3479,\"followersCount\":1564,\"postsCount\":10,\"url\":3424,\"updated\":3480,\"published\":3481,\"created\":3482,\"instance\":3483,\"followers\":3486,\"blockees\":3487,\"blockers\":3488},\"https://glasgow.social/users/sue\",\"sue\",\"glasgow.social\",\"@sue@glasgow.social\",\"Sue Smith\",\"

🎏 Writes code to help other folk learn to write code

🏊🏻‍♀️ Swimmer
🃏 Clown
🪩 Lefty smartarse
💅🏻 Still petty after cancer

\",\"https://files.glasgow.social/accounts/avatars/109/275/073/658/188/685/original/cdf3dd2cfa5e6d85.jpg\",\"https://files.glasgow.social/accounts/headers/109/275/073/658/188/685/original/0e231a6ac2548720.jpg\",\"https://glasgow.social/users/sue/inbox\",\"https://glasgow.social/inbox\",\"https://glasgow.social/users/sue/followers\",{\"Website\":3472,\"Bluesky\":3473,\"Pronouns\":3474},\"https://www.suesmith.dev\",\"https://bsky.app/profile/suesmith.lol\",\"She/Her\",{},{},[3478],\"https://mastodon.social/users/suesmith\",822,[\"Date\",\"2025-04-09T16:42:28.696Z\"],[\"Date\",\"2022-11-02T00:00:00.000Z\"],[\"Date\",\"2025-04-09T16:42:28.696Z\"],{\"host\":3462,\"software\":179,\"softwareVersion\":1259,\"updated\":3484,\"created\":3485},[\"Date\",\"2025-11-03T13:30:36.857Z\"],[\"Date\",\"2025-03-16T14:30:54.822Z\"],[],[],[],[],[],[],[],{\"slots\":3494,\"props\":3495},[],{\"href\":3496,\"internalHref\":3497,\"class\":6,\"children\":3498},\"https://bsky.brid.gy/r/https://bsky.app/profile/mintyderg.bsky.social\",\"/@mintyderg.bsky.social@bsky.brid.gy\",[\"Slot\",3499],{\"name\":9,\"id\":3500},147,{\"slots\":3502,\"props\":3503},[],{\"href\":3496,\"internalHref\":3497,\"children\":3504},[\"Slot\",3505],{\"name\":9,\"id\":3506},148,{\"slots\":3508,\"props\":3509},[],{\"href\":3510,\"internalHref\":3511,\"class\":22,\"children\":3512},\"https://bsky.brid.gy/r/https://bsky.app/profile/did:plc:4bievns3fn6ms5d3krhs4oay/post/3m5wm6fhilc2q\",\"/@mintyderg.bsky.social@bsky.brid.gy/019a98fc-e234-7a1d-ae86-adaa313beb7f\",[\"Slot\",3513],{\"name\":9,\"id\":3514},149,{\"slots\":3516,\"props\":3517},[],{\"value\":3518,\"locale\":30},[\"Date\",\"2025-11-18T20:44:45.543Z\"],{\"slots\":3520,\"props\":3521},[],{\"medium\":3522,\"class\":232},{\"postId\":3523,\"index\":10,\"type\":227,\"url\":3524,\"alt\":-2,\"width\":-2,\"height\":-2,\"thumbnailKey\":-2,\"sensitive\":42},\"019a98fc-e234-7a1d-ae86-adaa313beb7f\",\"https://puffball.us-east.host.bsky.network/xrpc/com.atproto.sync.getBlob?did=did:plc:4bievns3fn6ms5d3krhs4oay&cid=bafkreidgm2u6h7ia73lpkxjnspagf7hjqulpi7eg6pvha2m5wkbjpdkvom\",{\"slots\":3526,\"props\":3527},[],{\"language\":30,\"post\":3528,\"class\":85,\"signedAccount\":-1},{\"id\":3523,\"iri\":3529,\"type\":36,\"visibility\":37,\"actorId\":3530,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":3531,\"language\":30,\"tags\":3532,\"emojis\":3533,\"sensitive\":42,\"repliesCount\":10,\"sharesCount\":16,\"quotesCount\":10,\"reactionsCounts\":3534,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":3510,\"updated\":3535,\"published\":3518,\"actor\":3536,\"link\":-2,\"sharedPost\":-2,\"replyTarget\":-2,\"mentions\":3562,\"media\":3563,\"shares\":3564,\"reactions\":3565},\"https://bsky.brid.gy/convert/ap/at://did:plc:4bievns3fn6ms5d3krhs4oay/app.bsky.feed.post/3m5wm6fhilc2q\",\"019813f2-1477-7f1d-80d7-9e11acc55890\",\"

Don't you ever...?\\n\\n@sheath.dog@bsky.brid.gy

\",{},{},{},[\"Date\",\"2025-11-18T20:44:45.543Z\"],{\"id\":3530,\"iri\":3537,\"type\":47,\"username\":3538,\"instanceHost\":3539,\"handleHost\":3539,\"handle\":3540,\"accountId\":-2,\"name\":3541,\"bioHtml\":3542,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":3543,\"headerUrl\":3544,\"inboxUrl\":3545,\"sharedInboxUrl\":3546,\"followersUrl\":3547,\"featuredUrl\":-2,\"fieldHtmls\":3548,\"emojis\":3549,\"tags\":3550,\"sensitive\":42,\"successorId\":-2,\"aliases\":3551,\"followeesCount\":16,\"followersCount\":1109,\"postsCount\":10,\"url\":3496,\"updated\":3553,\"published\":-2,\"created\":3554,\"instance\":3555,\"followers\":3559,\"blockees\":3560,\"blockers\":3561},\"https://bsky.brid.gy/ap/did:plc:4bievns3fn6ms5d3krhs4oay\",\"mintyderg.bsky.social\",\"bsky.brid.gy\",\"@mintyderg.bsky.social@bsky.brid.gy\",\"Minty\",\"Artist, Cake muncher, Butt connoisseur.\\n\\nDM open!

🌉 bridged from mintyderg.bsky.social on Bluesky by Bridgy Fed\",\"https://puffball.us-east.host.bsky.network/xrpc/com.atproto.sync.getBlob?did=did:plc:4bievns3fn6ms5d3krhs4oay&cid=bafkreidjbcxr7s32ieeojrle53sm75mywzvh54qrsxigb3lpis2v33uw54\",\"https://puffball.us-east.host.bsky.network/xrpc/com.atproto.sync.getBlob?did=did:plc:4bievns3fn6ms5d3krhs4oay&cid=bafkreidbml4dlghg5ucwth3hp7fzgm4g7wojoa6erlxzp6cv6oplca3vvu\",\"https://bsky.brid.gy/ap/did:plc:4bievns3fn6ms5d3krhs4oay/inbox\",\"https://bsky.brid.gy/ap/sharedInbox\",\"https://bsky.brid.gy/ap/did:plc:4bievns3fn6ms5d3krhs4oay/followers\",{\"Web site\":-2},{},{},[3552],\"at://did%3Aplc%3A4bievns3fn6ms5d3krhs4oay\",[\"Date\",\"2025-07-16T15:54:48.823Z\"],[\"Date\",\"2025-07-16T15:54:48.823Z\"],{\"host\":3539,\"software\":3556,\"softwareVersion\":-2,\"updated\":3557,\"created\":3558},\"bridgy-fed\",[\"Date\",\"2025-11-20T02:52:05.738Z\"],[\"Date\",\"2024-12-13T09:08:20.528Z\"],[],[],[],[],[3522],[],[],{\"slots\":3567,\"props\":3568},[],{\"href\":1105,\"internalHref\":1106,\"class\":6,\"children\":3569},[\"Slot\",3570],{\"name\":9,\"id\":3571},150,{\"slots\":3573,\"props\":3574},[],{\"href\":1105,\"internalHref\":1106,\"children\":3575},[\"Slot\",3576],{\"name\":9,\"id\":3577},151,{\"slots\":3579,\"props\":3580},[],{\"href\":3581,\"internalHref\":3582,\"class\":22,\"children\":3583},\"https://mastodon.zunda.ninja/@zundan/115572644319924809\",\"/@zundan@mastodon.zunda.ninja/019a98b5-4104-7bec-8717-5b02f74f968a\",[\"Slot\",3584],{\"name\":9,\"id\":3585},152,{\"slots\":3587,\"props\":3588},[],{\"value\":3589,\"locale\":30},[\"Date\",\"2025-11-18T20:43:21.000Z\"],{\"slots\":3591,\"props\":3592},[],{\"language\":30,\"post\":3593,\"class\":85,\"signedAccount\":-1},{\"id\":3594,\"iri\":3595,\"type\":36,\"visibility\":37,\"actorId\":1134,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":3596,\"language\":1136,\"tags\":3597,\"emojis\":3598,\"sensitive\":42,\"repliesCount\":10,\"sharesCount\":10,\"quotesCount\":10,\"reactionsCounts\":3599,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":3581,\"updated\":3600,\"published\":3589,\"actor\":3601,\"link\":-2,\"sharedPost\":-2,\"replyTarget\":-2,\"mentions\":3615,\"media\":3616,\"shares\":3617,\"reactions\":3618},\"019a98b5-4104-7bec-8717-5b02f74f968a\",\"https://mastodon.zunda.ninja/users/zundan/statuses/115572644319924809\",\"

fprintfデバグでSEGVするようになったと思ったら第一引数を書式文字列にしてたよねw

\",{},{},{},[\"Date\",\"2025-11-18T20:43:21.000Z\"],{\"id\":1134,\"iri\":1144,\"type\":47,\"username\":1145,\"instanceHost\":1146,\"handleHost\":1146,\"handle\":1147,\"accountId\":-2,\"name\":1148,\"bioHtml\":1149,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":1150,\"headerUrl\":1151,\"inboxUrl\":1152,\"sharedInboxUrl\":1153,\"followersUrl\":1154,\"featuredUrl\":1155,\"fieldHtmls\":3602,\"emojis\":3603,\"tags\":3604,\"sensitive\":42,\"successorId\":-2,\"aliases\":3605,\"followeesCount\":1166,\"followersCount\":1167,\"postsCount\":10,\"url\":1105,\"updated\":3606,\"published\":3607,\"created\":3608,\"instance\":3609,\"followers\":3612,\"blockees\":3613,\"blockers\":3614},{\"Web\":1157,\"Keyoxide\":1158,\"GitHub\":1159,\"商品名\":1160,\"原材料\":1161,\"ビア鯖\":1162},{},{},[],[\"Date\",\"2025-03-12T02:59:15.201Z\"],[\"Date\",\"2017-04-15T00:00:00.000Z\"],[\"Date\",\"2025-03-12T02:59:15.201Z\"],{\"host\":1146,\"software\":179,\"softwareVersion\":1172,\"updated\":3610,\"created\":3611},[\"Date\",\"2025-10-31T02:31:00.625Z\"],[\"Date\",\"2025-03-12T02:59:14.548Z\"],[],[],[],[],[],[],[],{\"slots\":3620,\"props\":3621},[],{\"href\":3622,\"internalHref\":3623,\"class\":6,\"children\":3624},\"https://misskey.io/@fueda\",\"/@fueda@misskey.io\",[\"Slot\",3625],{\"name\":9,\"id\":3626},153,{\"slots\":3628,\"props\":3629},[],{\"href\":3622,\"internalHref\":3623,\"children\":3630},[\"Slot\",3631],{\"name\":9,\"id\":3632},154,{\"slots\":3634,\"props\":3635},[],{\"href\":3636,\"internalHref\":3637,\"class\":22,\"children\":3638},\"https://misskey.io/notes/af8luhub21qd0338\",\"/@fueda@misskey.io/019a98b5-2825-773f-804c-171b79ac81fc\",[\"Slot\",3639],{\"name\":9,\"id\":3640},155,{\"slots\":3642,\"props\":3643},[],{\"value\":3644,\"locale\":30},[\"Date\",\"2025-11-18T20:43:20.147Z\"],{\"slots\":3646,\"props\":3647},[],{\"medium\":3648,\"class\":232},{\"postId\":3649,\"index\":10,\"type\":3650,\"url\":3651,\"alt\":-2,\"width\":-2,\"height\":-2,\"thumbnailKey\":-2,\"sensitive\":42},\"019a98b5-2825-773f-804c-171b79ac81fc\",\"image/webp\",\"https://media.misskeyusercontent.com/io/webpublic-2ac7ad77-688b-4166-948d-0cec4e66c371.webp\",{\"slots\":3653,\"props\":3654},[],{\"language\":30,\"post\":3655,\"class\":85,\"signedAccount\":-1},{\"id\":3649,\"iri\":3636,\"type\":36,\"visibility\":37,\"actorId\":3656,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":3657,\"language\":-2,\"tags\":3658,\"emojis\":3659,\"sensitive\":42,\"repliesCount\":10,\"sharesCount\":10,\"quotesCount\":10,\"reactionsCounts\":3660,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":-2,\"updated\":3661,\"published\":3644,\"actor\":3662,\"link\":-2,\"sharedPost\":-2,\"replyTarget\":-2,\"mentions\":3688,\"media\":3689,\"shares\":3690,\"reactions\":3691},\"01965a41-7fc7-7401-aa14-9e92153bf4a2\",\"

自由を売る店、北浦和、さいたま市
Olympus E-P1 + 7Artisans 10mm F3.5

\",{},{},{},[\"Date\",\"2025-11-18T20:43:20.147Z\"],{\"id\":3656,\"iri\":3663,\"type\":47,\"username\":3664,\"instanceHost\":49,\"handleHost\":49,\"handle\":3665,\"accountId\":-2,\"name\":3664,\"bioHtml\":3666,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":3667,\"headerUrl\":3668,\"inboxUrl\":3669,\"sharedInboxUrl\":57,\"followersUrl\":3670,\"featuredUrl\":-2,\"fieldHtmls\":3671,\"emojis\":3677,\"tags\":3678,\"sensitive\":42,\"successorId\":-2,\"aliases\":3679,\"followeesCount\":2902,\"followersCount\":2518,\"postsCount\":10,\"url\":3622,\"updated\":3680,\"published\":-2,\"created\":3681,\"instance\":3682,\"followers\":3685,\"blockees\":3686,\"blockers\":3687},\"https://misskey.io/users/9sdxnqmb2w8a02gd\",\"fueda\",\"@fueda@misskey.io\",\"

埼玉で毎日写真を撮っています。
カメラ:Nikon D4s, Nikon D3300, Olympus E-3, Canon IXY 210F, Pixel 3a XL, GoPro Hero 3 White Edition
現像:ART (another Rawtherapee)

\",\"https://media.misskeyusercontent.com/io/b4a4544f-f737-44ff-ad73-1eca61fd47a9.png\",\"https://media.misskeyusercontent.com/io/b244dd00-ac58-45f4-9789-14917326de31.png\",\"https://misskey.io/users/9sdxnqmb2w8a02gd/inbox\",\"https://misskey.io/users/9sdxnqmb2w8a02gd/followers\",{\"撮った写真のまとめ\":3672,\"連絡先\":3673,\"個人サイト\":3674,\"500px\":3675,\"ART (Another RawTherapee)\":3676},\"https://misskey.io/clips/a9bxhfshkx9v0a9k\",\"hmmmm139@protonmail.com\",\"https://fueda218.github.io/\",\"https://500px.com/p/oumafu\",\"https://artraweditor.github.io/\",{},{},[],[\"Date\",\"2025-04-21T21:29:24.170Z\"],[\"Date\",\"2025-04-21T21:29:24.170Z\"],{\"host\":49,\"software\":74,\"softwareVersion\":75,\"updated\":3683,\"created\":3684},[\"Date\",\"2025-11-20T14:44:18.905Z\"],[\"Date\",\"2024-12-13T09:14:04.772Z\"],[],[],[],[],[3648],[],[],{\"slots\":3693,\"props\":3694},[],{\"href\":3695,\"internalHref\":3696,\"class\":6,\"children\":3697},\"https://bsky.brid.gy/r/https://bsky.app/profile/miizmio.bsky.social\",\"/@miizmio.bsky.social@bsky.brid.gy\",[\"Slot\",3698],{\"name\":9,\"id\":3699},156,{\"slots\":3701,\"props\":3702},[],{\"href\":3695,\"internalHref\":3696,\"children\":3703},[\"Slot\",3704],{\"name\":9,\"id\":3705},157,{\"slots\":3707,\"props\":3708},[],{\"href\":3709,\"internalHref\":3710,\"class\":22,\"children\":3711},\"https://bsky.brid.gy/r/https://bsky.app/profile/did:plc:e4ffuby4qufucfi5e6qv3ftc/post/3m5wlvfv5xs2z\",\"/@miizmio.bsky.social@bsky.brid.gy/019a9919-8930-7da5-82ae-d90dd348fa05\",[\"Slot\",3712],{\"name\":9,\"id\":3713},158,{\"slots\":3715,\"props\":3716},[],{\"value\":3717,\"locale\":30},[\"Date\",\"2025-11-18T20:39:44.004Z\"],{\"slots\":3719,\"props\":3720},[],{\"language\":30,\"post\":3721,\"class\":85,\"signedAccount\":-1},{\"id\":3722,\"iri\":3723,\"type\":36,\"visibility\":37,\"actorId\":3724,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":3725,\"language\":3726,\"tags\":3727,\"emojis\":3728,\"sensitive\":42,\"repliesCount\":10,\"sharesCount\":16,\"quotesCount\":10,\"reactionsCounts\":3729,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":3709,\"updated\":3730,\"published\":3717,\"actor\":3731,\"link\":-2,\"sharedPost\":-2,\"replyTarget\":-2,\"mentions\":3753,\"media\":3754,\"shares\":3755,\"reactions\":3756},\"019a9919-8930-7da5-82ae-d90dd348fa05\",\"https://bsky.brid.gy/convert/ap/at://did:plc:e4ffuby4qufucfi5e6qv3ftc/app.bsky.feed.post/3m5wlvfv5xs2z\",\"0195e069-c25c-7ddf-8587-d7aa97e4d263\",\"

각종 공식계정들은 좋은말로할때 블스계정 운영해라

\",\"ko\",{},{},{},[\"Date\",\"2025-11-18T20:39:44.004Z\"],{\"id\":3724,\"iri\":3732,\"type\":47,\"username\":3733,\"instanceHost\":3539,\"handleHost\":3539,\"handle\":3734,\"accountId\":-2,\"name\":3735,\"bioHtml\":3736,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":3737,\"headerUrl\":3738,\"inboxUrl\":3739,\"sharedInboxUrl\":3546,\"followersUrl\":3740,\"featuredUrl\":-2,\"fieldHtmls\":3741,\"emojis\":3742,\"tags\":3743,\"sensitive\":42,\"successorId\":-2,\"aliases\":3744,\"followeesCount\":16,\"followersCount\":93,\"postsCount\":10,\"url\":3695,\"updated\":3745,\"published\":-2,\"created\":3746,\"instance\":3747,\"followers\":3750,\"blockees\":3751,\"blockers\":3752},\"https://bsky.brid.gy/ap/did:plc:e4ffuby4qufucfi5e6qv3ftc\",\"miizmio.bsky.social\",\"@miizmio.bsky.social@bsky.brid.gy\",\"🎇밎묘/146🎇\",\"밎묘|146(일사륙) •2000년도 이전 출생자•\\n자캐위주 잡덕. 퍼충리\\n《※제 허락없이 해당 계정의 그림들을 도용하거나 AI학습에 이용하지 마십시오. Do not steal my paintings or use them for AI learning without my permission.※》

[bridged from miizmio.bsky.social on Bluesky by Bridgy Fed]\",\"https://enoki.us-east.host.bsky.network/xrpc/com.atproto.sync.getBlob?did=did:plc:e4ffuby4qufucfi5e6qv3ftc&cid=bafkreihuf2bxpstp2wycxqsdy4ab4qcnrmmvepnqzb73272xku4g2e25nm\",\"https://enoki.us-east.host.bsky.network/xrpc/com.atproto.sync.getBlob?did=did:plc:e4ffuby4qufucfi5e6qv3ftc&cid=bafkreib6yc5ucveofk3nvetneus2nxe6mdhwrfm4tqda2aeviwdklxunom\",\"https://bsky.brid.gy/ap/did:plc:e4ffuby4qufucfi5e6qv3ftc/inbox\",\"https://bsky.brid.gy/ap/did:plc:e4ffuby4qufucfi5e6qv3ftc/followers\",{\"Web site\":-2},{},{},[],[\"Date\",\"2025-03-29T05:39:42.302Z\"],[\"Date\",\"2025-03-29T05:39:42.302Z\"],{\"host\":3539,\"software\":3556,\"softwareVersion\":-2,\"updated\":3748,\"created\":3749},[\"Date\",\"2025-11-20T02:52:05.738Z\"],[\"Date\",\"2024-12-13T09:08:20.528Z\"],[],[],[],[],[],[],[],{\"slots\":3758,\"props\":3759},[],{\"href\":3760,\"internalHref\":3761,\"class\":6,\"children\":3762},\"https://chaos.social/@DrRetro\",\"/@DrRetro@chaos.social\",[\"Slot\",3763],{\"name\":9,\"id\":2760},{\"slots\":3765,\"props\":3766},[],{\"href\":3760,\"internalHref\":3761,\"children\":3767},[\"Slot\",3768],{\"name\":9,\"id\":3769},160,{\"slots\":3771,\"props\":3772},[],{\"href\":3773,\"internalHref\":3774,\"class\":22,\"children\":3775},\"https://chaos.social/@DrRetro/115572626555290429\",\"/@DrRetro@chaos.social/019a98b2-9b89-7bd2-9477-8f1632d0f2ca\",[\"Slot\",3776],{\"name\":9,\"id\":3777},161,{\"slots\":3779,\"props\":3780},[],{\"value\":3781,\"locale\":30},[\"Date\",\"2025-11-18T20:38:50.000Z\"],{\"slots\":3783,\"props\":3784},[],{\"language\":30,\"post\":3785,\"class\":85,\"signedAccount\":-1},{\"id\":3786,\"iri\":3787,\"type\":36,\"visibility\":37,\"actorId\":3788,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":3789,\"language\":321,\"tags\":3790,\"emojis\":3791,\"sensitive\":42,\"repliesCount\":10,\"sharesCount\":10,\"quotesCount\":10,\"reactionsCounts\":3792,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":3773,\"updated\":3793,\"published\":3781,\"actor\":3794,\"link\":-2,\"sharedPost\":-2,\"replyTarget\":-2,\"mentions\":3826,\"media\":3827,\"shares\":3828,\"reactions\":3829},\"019a98b2-9b89-7bd2-9477-8f1632d0f2ca\",\"https://chaos.social/users/DrRetro/statuses/115572626555290429\",\"0196eef9-9975-7311-a637-d45ec9e8ffc0\",\"

Schon mal versucht 250GB über USB3 zu schieben? Kann ich jetzt nicht wirklich als Abendunterhaltung empfehlen, sowas zieht sich ^^

\",{},{},{},[\"Date\",\"2025-11-18T20:38:50.000Z\"],{\"id\":3788,\"iri\":3795,\"type\":47,\"username\":3796,\"instanceHost\":3797,\"handleHost\":3797,\"handle\":3798,\"accountId\":-2,\"name\":3796,\"bioHtml\":3799,\"automaticallyApprovesFollowers\":42,\"avatarUrl\":3800,\"headerUrl\":3801,\"inboxUrl\":3802,\"sharedInboxUrl\":3803,\"followersUrl\":3804,\"featuredUrl\":3805,\"fieldHtmls\":3806,\"emojis\":3811,\"tags\":3812,\"sensitive\":42,\"successorId\":-2,\"aliases\":3813,\"followeesCount\":3814,\"followersCount\":3815,\"postsCount\":10,\"url\":3760,\"updated\":3816,\"published\":3817,\"created\":3818,\"instance\":3819,\"followers\":3823,\"blockees\":3824,\"blockers\":3825},\"https://chaos.social/users/DrRetro\",\"DrRetro\",\"chaos.social\",\"@DrRetro@chaos.social\",\"

Ich helfe Profis bei der Arbeit.
Sysadmin im Herzen.
Chaos Linker (sowohl politisch, als auch Tätigkeitsfelds)
Hacker
Macher
Maker
Engel
Freund
bissl potschert
Und hab eine riesige Klappe (Zitat einer guten Freundin: Aber von der guten Sorte!)

Mag Gras, Die Frau und Kaffee. Sehr.

\",\"https://assets.chaos.social/accounts/avatars/000/004/681/original/c2e05bcfd452e423.png\",\"https://assets.chaos.social/accounts/headers/000/004/681/original/52d970f7d9267dd3.png\",\"https://chaos.social/users/DrRetro/inbox\",\"https://chaos.social/inbox\",\"https://chaos.social/users/DrRetro/followers\",\"https://chaos.social/users/DrRetro/collections/featured\",{\"PRONOUN\":3807,\"languages\":3808,\"ALCOHOL\":3809,\"WEBSITE\":3810},\"('he','him')\",\"['de_DE' , 'de_AT' , 'en_US' , 'en_UK']\",\"False\",\"https://www.drretro.de\",{},{},[],776,551,[\"Date\",\"2025-05-20T18:34:17.336Z\"],[\"Date\",\"2017-04-19T00:00:00.000Z\"],[\"Date\",\"2025-05-20T18:34:17.336Z\"],{\"host\":3797,\"software\":179,\"softwareVersion\":3820,\"updated\":3821,\"created\":3822},\"4.4.8\",[\"Date\",\"2025-11-20T12:46:46.774Z\"],[\"Date\",\"2024-12-13T09:10:01.497Z\"],[],[],[],[],[],[],[],{\"slots\":3831,\"props\":3832},[],{\"href\":3833,\"internalHref\":3834,\"class\":6,\"children\":3835},\"https://mastodon.social/@cmconseils\",\"/@cmconseils@mastodon.social\",[\"Slot\",3836],{\"name\":9,\"id\":3837},162,{\"slots\":3839,\"props\":3840},[],{\"href\":3833,\"internalHref\":3834,\"children\":3841},[\"Slot\",3842],{\"name\":9,\"id\":3843},163,{\"slots\":3845,\"props\":3846},[],{\"href\":3847,\"internalHref\":3848,\"class\":22,\"children\":3849},\"https://mastodon.social/@cmconseils/115572603838258038\",\"/@cmconseils@mastodon.social/019a98b0-7e66-7917-9997-f9a39a926bf9\",[\"Slot\",3850],{\"name\":9,\"id\":3851},164,{\"slots\":3853,\"props\":3854},[],{\"value\":3855,\"locale\":30},[\"Date\",\"2025-11-18T20:33:03.000Z\"],{\"slots\":3857,\"props\":3858},[],{\"href\":89,\"internalHref\":90,\"children\":3859},[\"Slot\",3860],{\"name\":9,\"id\":3861},165,{\"slots\":3863,\"props\":3864},[],{\"medium\":3865,\"class\":232},{\"postId\":3866,\"index\":10,\"type\":516,\"url\":3867,\"alt\":3868,\"width\":3869,\"height\":3870,\"thumbnailKey\":-2,\"sensitive\":42},\"019a98b0-7e66-7917-9997-f9a39a926bf9\",\"https://files.mastodon.social/media_attachments/files/115/572/603/714/293/111/original/94019e117de48f64.png\",\"A four-panel comic titled \\\"When you have a cat.\\\" Each panel shows a line drawing of a person trying to sleep in bed, but their body is contorted around a real photo of a cat that has been superimposed onto the bed, taking up leg room or lying on the person.\",660,900,{\"slots\":3872,\"props\":3873},[],{\"language\":30,\"post\":3874,\"class\":85,\"signedAccount\":-1},{\"id\":3866,\"iri\":3875,\"type\":36,\"visibility\":37,\"actorId\":3876,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":3877,\"language\":30,\"tags\":3878,\"emojis\":3879,\"sensitive\":42,\"repliesCount\":10,\"sharesCount\":25,\"quotesCount\":10,\"reactionsCounts\":3880,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":3847,\"updated\":3881,\"published\":3855,\"actor\":3882,\"link\":-2,\"replyTarget\":-2,\"mentions\":3913,\"media\":3914,\"shares\":3915,\"reactions\":3916},\"https://mastodon.social/users/cmconseils/statuses/115572603838258038\",\"0195b6a8-eb28-75cc-aa47-36732d168fd5\",\"

very useful during winter ( i have 2)

\",{},{},{},[\"Date\",\"2025-11-18T20:33:03.000Z\"],{\"id\":3876,\"iri\":3883,\"type\":47,\"username\":3884,\"instanceHost\":249,\"handleHost\":249,\"handle\":3885,\"accountId\":-2,\"name\":3886,\"bioHtml\":3887,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":3888,\"headerUrl\":3889,\"inboxUrl\":3890,\"sharedInboxUrl\":256,\"followersUrl\":3891,\"featuredUrl\":-2,\"fieldHtmls\":3892,\"emojis\":3897,\"tags\":3900,\"sensitive\":42,\"successorId\":-2,\"aliases\":3901,\"followeesCount\":3902,\"followersCount\":3903,\"postsCount\":10,\"url\":3833,\"updated\":3904,\"published\":3905,\"created\":3906,\"instance\":3907,\"followers\":3910,\"blockees\":3911,\"blockers\":3912},\"https://mastodon.social/users/cmconseils\",\"cmconseils\",\"@cmconseils@mastodon.social\",\"Laura Manach :bongoCat:\",\"

International Social Media Consultant | French | Loves #Art, #Meme, #Photography, #Nature

\",\"https://files.mastodon.social/accounts/avatars/000/043/341/original/404f9d32cceddab4.jpg\",\"https://files.mastodon.social/accounts/headers/000/043/341/original/df6f84183c716638.gif\",\"https://mastodon.social/users/cmconseils/inbox\",\"https://mastodon.social/users/cmconseils/followers\",{\"My links\":3893,\"Favorite color\":3894,\"Mood\":3895,\"Elvish name\":3896},\"https://bento.me/lauram\",\"💜🟣🟪\",\":blobcat:\",\"Esghalis\",{\":blobcat:\":3898,\":bongoCat:\":3899},\"https://files.mastodon.social/custom_emojis/images/000/023/743/original/f31b4b0111ad8b08.png\",\"https://files.mastodon.social/custom_emojis/images/000/067/715/original/fdba57dff7576d53.png\",{},[],730,5439,[\"Date\",\"2025-03-21T03:04:38.438Z\"],[\"Date\",\"2017-04-04T00:00:00.000Z\"],[\"Date\",\"2025-03-21T03:04:38.438Z\"],{\"host\":249,\"software\":179,\"softwareVersion\":270,\"updated\":3908,\"created\":3909},[\"Date\",\"2025-11-20T16:24:41.593Z\"],[\"Date\",\"2024-12-13T09:08:56.994Z\"],[],[],[],[],[3865],[],[],{\"slots\":3918,\"props\":3919},[],{\"href\":3920,\"internalHref\":3921,\"class\":6,\"children\":3922},\"https://infosec.exchange/@0xabad1dea\",\"/@0xabad1dea@infosec.exchange\",[\"Slot\",3923],{\"name\":9,\"id\":3924},166,{\"slots\":3926,\"props\":3927},[],{\"href\":3920,\"internalHref\":3921,\"children\":3928},[\"Slot\",3929],{\"name\":9,\"id\":3930},167,{\"slots\":3932,\"props\":3933},[],{\"href\":3934,\"internalHref\":3935,\"class\":22,\"children\":3936},\"https://infosec.exchange/@0xabad1dea/115572086526058545\",\"/@0xabad1dea@infosec.exchange/019a984f-a48a-7c91-948f-c56d87afce66\",[\"Slot\",3937],{\"name\":9,\"id\":3225},{\"slots\":3939,\"props\":3940},[],{\"value\":3941,\"locale\":30},[\"Date\",\"2025-11-18T18:21:29.000Z\"],{\"slots\":3943,\"props\":3944},[],{\"href\":2250,\"internalHref\":2251,\"children\":3945},[\"Slot\",3946],{\"name\":9,\"id\":3947},169,{\"slots\":3949,\"props\":3950},[],{\"language\":30,\"post\":3951,\"class\":85,\"signedAccount\":-1},{\"id\":3952,\"iri\":3953,\"type\":36,\"visibility\":37,\"actorId\":3954,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":3955,\"language\":30,\"tags\":3956,\"emojis\":3957,\"sensitive\":42,\"repliesCount\":10,\"sharesCount\":3958,\"quotesCount\":10,\"reactionsCounts\":3959,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":3934,\"updated\":3960,\"published\":3941,\"actor\":3961,\"link\":-2,\"replyTarget\":-2,\"mentions\":3985,\"media\":3986,\"shares\":3987,\"reactions\":3988},\"019a984f-a48a-7c91-948f-c56d87afce66\",\"https://infosec.exchange/users/0xabad1dea/statuses/115572086526058545\",\"01959342-f26a-7b4f-a89d-4ec21b1e799e\",\"

I had the displeasure of reading an article in the Harvard student paper by an economics major who said in apparent seriousness that comp sci majors are wasting time on theory classes like “Introduction to Algorithms and their Limitations” when they could be learning REAL skills like prompt engineering.

Algorithms are not useless theory, you unbalanced red-red tree. They’re the entire fucking point of the degree, you empty hash bucket. Go gamble daddy’s money on a startup your buddies thought up last night, you quadratic insert operation

\",{},{},327,{},[\"Date\",\"2025-11-18T18:21:29.000Z\"],{\"id\":3954,\"iri\":3962,\"type\":47,\"username\":3963,\"instanceHost\":127,\"handleHost\":127,\"handle\":3964,\"accountId\":-2,\"name\":3965,\"bioHtml\":3966,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":3967,\"headerUrl\":-2,\"inboxUrl\":3968,\"sharedInboxUrl\":134,\"followersUrl\":3969,\"featuredUrl\":-2,\"fieldHtmls\":3970,\"emojis\":3971,\"tags\":3972,\"sensitive\":42,\"successorId\":-2,\"aliases\":3973,\"followeesCount\":3974,\"followersCount\":3975,\"postsCount\":10,\"url\":3920,\"updated\":3976,\"published\":3977,\"created\":3978,\"instance\":3979,\"followers\":3982,\"blockees\":3983,\"blockers\":3984},\"https://infosec.exchange/users/0xabad1dea\",\"0xabad1dea\",\"@0xabad1dea@infosec.exchange\",\"abadidea\",\"

the hex is silent

professional source code complainer, Pwnie Awards 2014 Best Song, will decipher ancient writing systems for free

English: native; Nederlands: nog niet helemaal vloeiend; 中文:我是宝宝

Amsterdam

\",\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/287/004/308/114/569/original/602782bbf5d0d8fe.png\",\"https://infosec.exchange/users/0xabad1dea/inbox\",\"https://infosec.exchange/users/0xabad1dea/followers\",{\"pronouns\":1971},{},{},[],239,12334,[\"Date\",\"2025-03-14T06:06:33.068Z\"],[\"Date\",\"2022-11-04T00:00:00.000Z\"],[\"Date\",\"2025-03-14T06:06:33.068Z\"],{\"host\":127,\"software\":179,\"softwareVersion\":180,\"updated\":3980,\"created\":3981},[\"Date\",\"2025-11-18T17:21:57.203Z\"],[\"Date\",\"2025-01-21T02:58:45.166Z\"],[],[],[],[],[],[],[],{\"slots\":3990,\"props\":3991},[],{\"href\":3992,\"internalHref\":3993,\"class\":6,\"children\":3994},\"https://k.lapy.link/@moegomii\",\"/@moegomii@k.lapy.link\",[\"Slot\",3995],{\"name\":9,\"id\":3996},170,{\"slots\":3998,\"props\":3999},[],{\"href\":3992,\"internalHref\":3993,\"children\":4000},[\"Slot\",4001],{\"name\":9,\"id\":4002},171,{\"slots\":4004,\"props\":4005},[],{\"href\":4006,\"internalHref\":4007,\"class\":22,\"children\":4008},\"https://k.lapy.link/notes/af8lmqp352\",\"/@moegomii@k.lapy.link/019a9bfb-a334-72a8-88e9-28440118a22c\",[\"Slot\",4009],{\"name\":9,\"id\":4010},172,{\"slots\":4012,\"props\":4013},[],{\"value\":4014,\"locale\":30},[\"Date\",\"2025-11-18T20:37:18.375Z\"],{\"slots\":4016,\"props\":4017},[],{\"language\":30,\"post\":4018,\"class\":85,\"signedAccount\":-1},{\"id\":4019,\"iri\":4006,\"type\":36,\"visibility\":37,\"actorId\":4020,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":4021,\"language\":-2,\"tags\":4022,\"emojis\":4023,\"sensitive\":42,\"repliesCount\":10,\"sharesCount\":10,\"quotesCount\":10,\"reactionsCounts\":4024,\"reactionsCount\":16,\"linkId\":-2,\"linkUrl\":-2,\"url\":-2,\"updated\":4025,\"published\":4014,\"actor\":4026,\"link\":-2,\"sharedPost\":-2,\"replyTarget\":-2,\"mentions\":4057,\"media\":4058,\"shares\":4059,\"reactions\":4060},\"019a9bfb-a334-72a8-88e9-28440118a22c\",\"019a9bfb-87a8-77fc-b264-38e1e16ce779\",\"

英語は苦手なのじゃ

\",{},{},{\"019a9bfb-a341-7d95-a7a5-6aeff426b71d\":16},[\"Date\",\"2025-11-18T20:37:18.375Z\"],{\"id\":4020,\"iri\":4027,\"type\":47,\"username\":4028,\"instanceHost\":4029,\"handleHost\":4029,\"handle\":4030,\"accountId\":-2,\"name\":4031,\"bioHtml\":4032,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":4033,\"headerUrl\":4034,\"inboxUrl\":4035,\"sharedInboxUrl\":4036,\"followersUrl\":4037,\"featuredUrl\":-2,\"fieldHtmls\":4038,\"emojis\":4041,\"tags\":4045,\"sensitive\":42,\"successorId\":-2,\"aliases\":4046,\"followeesCount\":10,\"followersCount\":10,\"postsCount\":10,\"url\":3992,\"updated\":4047,\"published\":-2,\"created\":4048,\"instance\":4049,\"followers\":4054,\"blockees\":4055,\"blockers\":4056},\"https://k.lapy.link/users/9sucm06153\",\"moegomii\",\"k.lapy.link\",\"@moegomii@k.lapy.link\",\"모에고미(燃えごみ)\",\"

こんにちは안녕하세요
환경에 따라서는 애니메이션이 흔들릴 수 있습니다.
저는 한국어가 전혀 할 수 없은 일본 사람이에요
韓国語ができないのに来てしまった人
​:ja_suspicious_japanese:​韩国语を書きます
고ㅣ상한 한국o-l를 써요~
글 정정을 환영해요!

\",\"https://s3.lapy.link/klapy/webpublic-51db717d-fa91-40fa-8d8d-86f4f335c9ec.webp\",\"https://s3.lapy.link/klapy/webpublic-2b7e125a-c416-4628-8f60-eebeaa61a886.png\",\"https://k.lapy.link/users/9sucm06153/inbox\",\"https://k.lapy.link/inbox\",\"https://k.lapy.link/users/9sucm06153/followers\",{\":misskey12::io:\":4039,\"Language Skills\":4040},\"?[저가 언제나 있는 곳](https://misskey.io/@TenkeiMann)\",\"あ: Native; EN: Little bit; 한: 모르겠어요\",{\":io:\":4042,\":misskey12:\":4043,\":ja_suspicious_japanese:\":4044},\"https://s3.lapy.link/klapy/890dd3a7-25be-4be8-8a01-4261535b03ff.png\",\"https://misskeylapy.s3.amazonaws.com/null/012b5da2-a858-40f8-a54b-812f76026062.png\",\"https://s3.lapy.link/klapy/33aee748-52f9-444f-b4a3-43d3aca7de3f.png\",{},[],[\"Date\",\"2025-11-19T11:59:04.104Z\"],[\"Date\",\"2025-11-19T11:59:04.104Z\"],{\"host\":4029,\"software\":4050,\"softwareVersion\":4051,\"updated\":4052,\"created\":4053},\"cherrypick\",\"4.17.0\",[\"Date\",\"2025-11-20T12:57:25.689Z\"],[\"Date\",\"2024-12-13T09:13:23.320Z\"],[],[],[],[],[],[],[],{\"slots\":4062,\"props\":4063},[],{\"href\":3992,\"internalHref\":3993,\"class\":6,\"children\":4064},[\"Slot\",4065],{\"name\":9,\"id\":4066},173,{\"slots\":4068,\"props\":4069},[],{\"href\":3992,\"internalHref\":3993,\"children\":4070},[\"Slot\",4071],{\"name\":9,\"id\":4072},174,{\"slots\":4074,\"props\":4075},[],{\"href\":4076,\"internalHref\":4077,\"class\":22,\"children\":4078},\"https://k.lapy.link/notes/af8lmaoo51\",\"/@moegomii@k.lapy.link/019a9bfb-87b4-7d72-be85-c9c656bf75c6\",[\"Slot\",4079],{\"name\":9,\"id\":4080},175,{\"slots\":4082,\"props\":4083},[],{\"value\":4084,\"locale\":30},[\"Date\",\"2025-11-18T20:36:57.624Z\"],{\"slots\":4086,\"props\":4087},[],{\"language\":30,\"post\":4088,\"class\":85,\"signedAccount\":-1},{\"id\":4089,\"iri\":4076,\"type\":36,\"visibility\":37,\"actorId\":4020,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":4090,\"language\":-2,\"tags\":4091,\"emojis\":4092,\"sensitive\":42,\"repliesCount\":10,\"sharesCount\":10,\"quotesCount\":10,\"reactionsCounts\":4093,\"reactionsCount\":16,\"linkId\":-2,\"linkUrl\":-2,\"url\":-2,\"updated\":4094,\"published\":4084,\"actor\":4095,\"link\":-2,\"sharedPost\":-2,\"replyTarget\":-2,\"mentions\":4108,\"media\":4109,\"shares\":4110,\"reactions\":4111},\"019a9bfb-87b4-7d72-be85-c9c656bf75c6\",\"

here should i use japanese rather than english? it more helps understanding the real meaning?

\",{},{},{\"🔁\":16},[\"Date\",\"2025-11-18T20:36:57.624Z\"],{\"id\":4020,\"iri\":4027,\"type\":47,\"username\":4028,\"instanceHost\":4029,\"handleHost\":4029,\"handle\":4030,\"accountId\":-2,\"name\":4031,\"bioHtml\":4032,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":4033,\"headerUrl\":4034,\"inboxUrl\":4035,\"sharedInboxUrl\":4036,\"followersUrl\":4037,\"featuredUrl\":-2,\"fieldHtmls\":4096,\"emojis\":4097,\"tags\":4098,\"sensitive\":42,\"successorId\":-2,\"aliases\":4099,\"followeesCount\":10,\"followersCount\":10,\"postsCount\":10,\"url\":3992,\"updated\":4100,\"published\":-2,\"created\":4101,\"instance\":4102,\"followers\":4105,\"blockees\":4106,\"blockers\":4107},{\":misskey12::io:\":4039,\"Language Skills\":4040},{\":io:\":4042,\":misskey12:\":4043,\":ja_suspicious_japanese:\":4044},{},[],[\"Date\",\"2025-11-19T11:59:04.104Z\"],[\"Date\",\"2025-11-19T11:59:04.104Z\"],{\"host\":4029,\"software\":4050,\"softwareVersion\":4051,\"updated\":4103,\"created\":4104},[\"Date\",\"2025-11-20T12:57:25.689Z\"],[\"Date\",\"2024-12-13T09:13:23.320Z\"],[],[],[],[],[],[],[],{\"slots\":4113,\"props\":4114},[],{\"href\":4115,\"internalHref\":4116,\"class\":6,\"children\":4117},\"https://tech.lgbt/@mildsunrise\",\"/@mildsunrise@tech.lgbt\",[\"Slot\",4118],{\"name\":9,\"id\":4119},176,{\"slots\":4121,\"props\":4122},[],{\"href\":4115,\"internalHref\":4116,\"children\":4123},[\"Slot\",4124],{\"name\":9,\"id\":4125},177,{\"slots\":4127,\"props\":4128},[],{\"href\":4129,\"internalHref\":4130,\"class\":22,\"children\":4131},\"https://tech.lgbt/@mildsunrise/115570654871328860\",\"/@mildsunrise@tech.lgbt/019a9702-8347-73f8-8ca5-56f7f0f5485c\",[\"Slot\",4132],{\"name\":9,\"id\":4133},178,{\"slots\":4135,\"props\":4136},[],{\"value\":4137,\"locale\":30},[\"Date\",\"2025-11-18T12:17:24.000Z\"],{\"slots\":4139,\"props\":4140},[],{\"href\":4115,\"internalHref\":4116,\"class\":6,\"children\":4141},[\"Slot\",4142],{\"name\":9,\"id\":4143},179,{\"slots\":4145,\"props\":4146},[],{\"href\":4115,\"internalHref\":4116,\"children\":4147},[\"Slot\",4148],{\"name\":9,\"id\":4149},180,{\"slots\":4151,\"props\":4152},[],{\"href\":4153,\"internalHref\":4154,\"class\":22,\"children\":4155},\"https://tech.lgbt/@mildsunrise/115570678864178623\",\"/@mildsunrise@tech.lgbt/019a9702-8356-757c-ab68-cf883d162e8e\",[\"Slot\",4156],{\"name\":9,\"id\":4157},181,{\"slots\":4159,\"props\":4160},[],{\"value\":4161,\"locale\":30},[\"Date\",\"2025-11-18T12:23:30.000Z\"],{\"slots\":4163,\"props\":4164},[],{\"href\":4165,\"internalHref\":4166,\"children\":4167},\"https://mastodon.social/@haeckerfelix\",\"/@haeckerfelix@mastodon.social\",[\"Slot\",4168],{\"name\":9,\"id\":4169},182,{\"slots\":4171,\"props\":4172},[],{\"medium\":4173,\"class\":232},{\"postId\":4174,\"index\":10,\"type\":516,\"url\":4175,\"alt\":4176,\"width\":4177,\"height\":4178,\"thumbnailKey\":-2,\"sensitive\":42},\"019a9702-8356-757c-ab68-cf883d162e8e\",\"https://media.tech.lgbt/media_attachments/files/115/570/676/872/463/464/original/b84414cd372aff6c.png\",\"The #1 programmer excuse for legitimately slacking off: \\\"Cloudflare is down\\\"\",826,720,{\"slots\":4180,\"props\":4181},[],{\"language\":30,\"post\":4182,\"class\":85,\"signedAccount\":-1},{\"id\":4174,\"iri\":4183,\"type\":36,\"visibility\":37,\"actorId\":4184,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":4185,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":670,\"language\":30,\"tags\":4186,\"emojis\":4187,\"sensitive\":42,\"repliesCount\":10,\"sharesCount\":4188,\"quotesCount\":10,\"reactionsCounts\":4189,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":4153,\"updated\":4190,\"published\":4161,\"actor\":4191,\"link\":-2,\"replyTarget\":4221,\"mentions\":4244,\"media\":4245,\"shares\":4246,\"reactions\":4247},\"https://tech.lgbt/users/mildsunrise/statuses/115570678864178623\",\"0195ae5e-1858-7334-b3ee-f531a9e3c6e5\",\"019a9702-8347-73f8-8ca5-56f7f0f5485c\",{},{},263,{},[\"Date\",\"2025-11-18T12:23:30.000Z\"],{\"id\":4184,\"iri\":4192,\"type\":47,\"username\":4193,\"instanceHost\":4194,\"handleHost\":4194,\"handle\":4195,\"accountId\":-2,\"name\":4196,\"bioHtml\":4197,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":4198,\"headerUrl\":4199,\"inboxUrl\":4200,\"sharedInboxUrl\":4201,\"followersUrl\":4202,\"featuredUrl\":-2,\"fieldHtmls\":4203,\"emojis\":4206,\"tags\":4208,\"sensitive\":42,\"successorId\":-2,\"aliases\":4209,\"followeesCount\":1512,\"followersCount\":4210,\"postsCount\":10,\"url\":4115,\"updated\":4211,\"published\":4212,\"created\":4213,\"instance\":4214,\"followers\":4218,\"blockees\":4219,\"blockers\":4220},\"https://tech.lgbt/users/mildsunrise\",\"mildsunrise\",\"tech.lgbt\",\"@mildsunrise@tech.lgbt\",\"Alba 🌸 :v_pat:\",\"

hi i'm a poly lesbian catgirl who loves hummus, kernels and gfs 🏳️‍⚧️

I'm pretty strict about only boosting stuff with alt text. i try not to post/boost unCWed politics

\",\"https://media.tech.lgbt/accounts/avatars/109/321/889/278/860/982/original/7d4bf014c695f09b.jpg\",\"https://media.tech.lgbt/accounts/headers/109/321/889/278/860/982/original/20d226585efa9142.jpeg\",\"https://tech.lgbt/users/mildsunrise/inbox\",\"https://tech.lgbt/inbox\",\"https://tech.lgbt/users/mildsunrise/followers\",{\"pronouns\":1971,\"website\":4204,\"age\":4205},\"https://alba.sh\",\"28\",{\":v_pat:\":4207},\"https://media.tech.lgbt/custom_emojis/images/000/299/979/original/e7140fa1681f603a.png\",{},[],785,[\"Date\",\"2025-03-19T12:25:57.082Z\"],[\"Date\",\"2022-11-10T00:00:00.000Z\"],[\"Date\",\"2025-03-19T12:25:57.082Z\"],{\"host\":4194,\"software\":179,\"softwareVersion\":4215,\"updated\":4216,\"created\":4217},\"4.5.1+glitch.techlgbt\",[\"Date\",\"2025-11-19T11:54:05.420Z\"],[\"Date\",\"2024-12-13T09:10:33.895Z\"],[],[],[],{\"id\":4185,\"iri\":4222,\"type\":36,\"visibility\":37,\"actorId\":4184,\"articleSourceId\":-2,\"noteSourceId\":-2,\"sharedPostId\":-2,\"replyTargetId\":-2,\"quotedPostId\":-2,\"name\":-2,\"summary\":-2,\"contentHtml\":4223,\"language\":30,\"tags\":4224,\"emojis\":4225,\"sensitive\":42,\"repliesCount\":10,\"sharesCount\":10,\"quotesCount\":10,\"reactionsCounts\":4226,\"reactionsCount\":10,\"linkId\":-2,\"linkUrl\":-2,\"url\":4129,\"updated\":4227,\"published\":4137,\"actor\":4228,\"link\":-2,\"mentions\":4242,\"media\":4243},\"https://tech.lgbt/users/mildsunrise/statuses/115570654871328860\",\"

has someone made the xkcd yet

\",{},{},{},[\"Date\",\"2025-11-18T12:17:24.000Z\"],{\"id\":4184,\"iri\":4192,\"type\":47,\"username\":4193,\"instanceHost\":4194,\"handleHost\":4194,\"handle\":4195,\"accountId\":-2,\"name\":4196,\"bioHtml\":4197,\"automaticallyApprovesFollowers\":53,\"avatarUrl\":4198,\"headerUrl\":4199,\"inboxUrl\":4200,\"sharedInboxUrl\":4201,\"followersUrl\":4202,\"featuredUrl\":-2,\"fieldHtmls\":4229,\"emojis\":4230,\"tags\":4231,\"sensitive\":42,\"successorId\":-2,\"aliases\":4232,\"followeesCount\":1512,\"followersCount\":4210,\"postsCount\":10,\"url\":4115,\"updated\":4233,\"published\":4234,\"created\":4235,\"instance\":4236,\"followers\":4239,\"blockees\":4240,\"blockers\":4241},{\"pronouns\":1971,\"website\":4204,\"age\":4205},{\":v_pat:\":4207},{},[],[\"Date\",\"2025-03-19T12:25:57.082Z\"],[\"Date\",\"2022-11-10T00:00:00.000Z\"],[\"Date\",\"2025-03-19T12:25:57.082Z\"],{\"host\":4194,\"software\":179,\"softwareVersion\":4215,\"updated\":4237,\"created\":4238},[\"Date\",\"2025-11-19T11:54:05.420Z\"],[\"Date\",\"2024-12-13T09:10:33.895Z\"],[],[],[],[],[],[],[4173],[],[]]");