Compare commits
1 Commits
566a323fda
...
feature/th
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
79dc5d8860 |
8
.github/workflows/hugo_publisher.yml
vendored
@@ -36,7 +36,7 @@ jobs:
|
||||
name: Install dependencies
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
HUGO_VERSION: 0.158.0
|
||||
HUGO_VERSION: 0.155.0
|
||||
steps:
|
||||
- name: Install Hugo CLI
|
||||
run: |
|
||||
@@ -49,7 +49,7 @@ jobs:
|
||||
submodules: recursive
|
||||
|
||||
- name: Cache node modules
|
||||
uses: actions/cache@v5.0.4
|
||||
uses: actions/cache@v5.0.3
|
||||
env:
|
||||
cache-name: cache-node-modules-v1
|
||||
with:
|
||||
@@ -67,7 +67,7 @@ jobs:
|
||||
uses: actions/configure-pages@v4.0.0
|
||||
|
||||
- name: Set up Node.js
|
||||
uses: actions/setup-node@v6.3.0
|
||||
uses: actions/setup-node@v6.2.0
|
||||
with:
|
||||
node-version: 16
|
||||
|
||||
@@ -81,7 +81,7 @@ jobs:
|
||||
timezoneMacos: Europe/Rome
|
||||
|
||||
- name: Cache built website
|
||||
uses: actions/cache@v5.0.4
|
||||
uses: actions/cache@v5.0.3
|
||||
env:
|
||||
cache-name: cache-website-v1
|
||||
with:
|
||||
|
||||
3
.gitignore
vendored
@@ -189,6 +189,3 @@ build
|
||||
log_syndication.csv
|
||||
|
||||
log_feed.csv
|
||||
|
||||
assets/sass/*.css
|
||||
assets/sass/*.css.map
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
fail_fast: true
|
||||
repos:
|
||||
- repo: https://github.com/adamchainz/djade-pre-commit
|
||||
rev: "1.9.0" # Replace with the latest tag on GitHub
|
||||
rev: "1.7.0" # Replace with the latest tag on GitHub
|
||||
hooks:
|
||||
- id: djade
|
||||
args: [--target-version, "4.2"] # Replace with Django version
|
||||
- repo: https://github.com/psf/black
|
||||
rev: 26.3.1
|
||||
rev: 26.1.0
|
||||
hooks:
|
||||
- id: black
|
||||
language_version: python3.12
|
||||
|
||||
@@ -25,7 +25,6 @@ series:
|
||||
- Horror stories
|
||||
- Data and Data Tools
|
||||
- Python's Reptile Env
|
||||
- My Home Automation Lab
|
||||
reply:
|
||||
repost:
|
||||
like:
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
@import url("https://fonts.googleapis.com/css2?family=Audiowide&family=Rajdhani:wght@300;400;500;600;700&display=swap");
|
||||
@@ -1,5 +1,3 @@
|
||||
@import "_imports";
|
||||
|
||||
@import "root";
|
||||
@import "pride";
|
||||
@import "comments";
|
||||
@@ -13,4 +11,3 @@
|
||||
@import "share-button";
|
||||
@import "typewriter";
|
||||
@import "input";
|
||||
@import "xkcd";
|
||||
|
||||
@@ -13,9 +13,3 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.menu-link {
|
||||
font-family: "Audiowide", sans-serif;
|
||||
font-weight: 400;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@@ -27,30 +27,3 @@
|
||||
--blockquote-background-color: rgb(75 75 75);
|
||||
}
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: "Rajdhani", sans-serif;
|
||||
font-weight: 400;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: "Audiowide", sans-serif;
|
||||
}
|
||||
|
||||
strong {
|
||||
font-family: "Audiowide", sans-serif;
|
||||
font-weight: 400;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.footnotes {
|
||||
p {
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,18 +0,0 @@
|
||||
.xkcd-image {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.xkcd-title {
|
||||
font-family: "Audiowide", sans-serif;
|
||||
font-weight: 400;
|
||||
font-style: normal;
|
||||
font-size: 1.5em;
|
||||
}
|
||||
|
||||
.xkcd-subtitle {
|
||||
font-size: 0.8rem;
|
||||
color: #666;
|
||||
margin-top: 0.5rem;
|
||||
}
|
||||
@@ -12,8 +12,8 @@ repost: null
|
||||
rsvp: null
|
||||
tags:
|
||||
- dnd
|
||||
- self-hosting
|
||||
- selfhosting
|
||||
title: Response to Response Dnd
|
||||
---
|
||||
|
||||
Thanks, I will testing it and I will share something if is a good thing for my dnd group
|
||||
Thanks, I will testing it and I will share something if is a good thing for my dnd group
|
||||
@@ -19,7 +19,7 @@ After my [other post]({{< relref "post/2020/ssl-check-with-a-script/index.md" >}
|
||||
|
||||
We need to check when the domain expire (DNS Lookup), we need to check if the server are up and the SSL certificate. This is a problem because we need to launch the same commands every day for multiple server every day and some time we forgot a domain or a url and we don't check it for days. And if something boom we need to fix it with *zero down time* so we need to do some sysadmin work.
|
||||
|
||||
{{< xkcd 705 >}}
|
||||

|
||||
|
||||
So, for our task, we need :
|
||||
|
||||
|
||||
|
After Width: | Height: | Size: 1.7 MiB |
@@ -0,0 +1,37 @@
|
||||
---
|
||||
title: "And Now I Start Tinkering With Hardware"
|
||||
date: 2025-06-02T00:21:52+02:00
|
||||
draft: true
|
||||
feature_link: "https://www.midjourney.com/home/"
|
||||
feature_text: "by IA Midjourney"
|
||||
description: Some idea to start some software-hardware software
|
||||
isStarred: false
|
||||
tags:
|
||||
- hacking
|
||||
- coding
|
||||
- micropython
|
||||
categories:
|
||||
- tinkering
|
||||
images:
|
||||
keywords:
|
||||
series:
|
||||
reply:
|
||||
repost:
|
||||
like:
|
||||
rsvp:
|
||||
bookmark:
|
||||
|
||||
comments:
|
||||
host: mastodon.social
|
||||
username: fundor333
|
||||
id:
|
||||
---
|
||||
|
||||
[Programming hardware displays the easy way - using MicroPython and LVGL](https://2025.pycon.it/en/event/programming-hardware-displays-the-easy-way-using-micropython-and-lvgl)
|
||||
|
||||
[Buying a Seven Year Old Refurbished Kobo eReader](https://eclecticpassions.net/blog/refurbished-ereader-kobo-aura-one/)
|
||||
|
||||
[SSH into KOreader (Kobo eReader) from macOS](https://www.burgeonlab.com/2024/ssh-into-koreader-kobo-ereader-from-macos/)
|
||||
|
||||
[Booting DietPi from SSD on a Raspberry Pi 4B 8GB](https://www.burgeonlab.com/2023/booting-dietpi-from-ssd-on-a-raspberry-pi-4b-8gb/)
|
||||
nh
|
||||
|
Before Width: | Height: | Size: 1.0 MiB |
|
Before Width: | Height: | Size: 102 KiB |
|
Before Width: | Height: | Size: 3.8 MiB |
|
Before Width: | Height: | Size: 1.3 MiB |
|
Before Width: | Height: | Size: 3.3 MiB |
@@ -1,182 +0,0 @@
|
||||
---
|
||||
title: Starting My Home Automation Experiment
|
||||
date: 2026-03-30 08:46:01+02:00
|
||||
feature_link: https://www.midjourney.com/home/
|
||||
feature_text: by IA Midjourney
|
||||
description: I am starting a Home Automation in my home and this is how I start it
|
||||
tags:
|
||||
- home-automation
|
||||
- hacking
|
||||
- self-hosting
|
||||
- raspberry-pi
|
||||
- home-assistant
|
||||
categories:
|
||||
- tinkering
|
||||
series:
|
||||
- My Home Automation Lab
|
||||
syndication:
|
||||
- https://mastodon.social/@fundor333/116318298830055707
|
||||
comments:
|
||||
host: mastodon.social
|
||||
username: fundor333
|
||||
id: '116318298830055707'
|
||||
---
|
||||
|
||||
And some time ago I installed the __*FIBER*__[^1] in my home and I want to use in the best way, so I start to rework all my local network and I think about adding some home automation.
|
||||
|
||||
[^1]: I pay a company to install it and I clean after.
|
||||
|
||||
{{< xkcd 1931 >}}
|
||||
|
||||
## What do I need?
|
||||
|
||||
First I search for understand what I need to have for build my personal home automation. So serching on the web I found I need:
|
||||
|
||||
- A brain/core/server for coordinate all the stuffs
|
||||
- A software for the brain, for the automation and other stuff
|
||||
- A router for adding the brain to the network for update and other stuff
|
||||
- Dongle/sensor/tech for connectivity with the sensors and smart stuff (one for protocol)
|
||||
- The smart stuff (light bulb, sensor, timer, endpoint api...)
|
||||
|
||||
So I need to choose which protocol I want in my home... And I don't know...
|
||||
|
||||
So I change the point of view:
|
||||
|
||||
- I want to use good smart stuff but I don't want to pay too much
|
||||
- I want something Open Source so I am not bind to a company
|
||||
- I want something offline or/and on MY HOME SERVER
|
||||
|
||||
### The protocols
|
||||
|
||||
Searching for the protocols I choose Thread[^thread-standard] and Zigbee[^zigbee].
|
||||
One reason is because they are the most used protocol for communication and more easy to find online (Amazon) and offline (Ikea and othe local shop).
|
||||
|
||||
For starting I will implement only Thread because the more easy tech for me are all Matter over Thread so I start with Thread.
|
||||
|
||||
From the infographic I found, I need to implement Matter[^matter-standard] also because Matter is the top stuff for an Home Assistant.
|
||||

|
||||
|
||||
[^matter-standard]: [Matter Standard](https://csa-iot.org/all-solutions/matter/)
|
||||
[^thread-standard]: [Thread Standard](https://threadgroup.org/)
|
||||
[^zigbee]: [Zigbee Standard](https://csa-iot.org/all-solutions/zigbee/)
|
||||
|
||||
### The software
|
||||
|
||||
Now I want a software, Open Source, which I can support Thread and Matter (and also Zigbee) and I found a software (Open Source) wich support all I need: Home Assistant[^home-assistant].
|
||||
|
||||
It support Matter[^matter-home-assistant], Thread[^thread-home-assistant] and Zigbee[^zigbee-home-automation] and I can put it in a RaspberryPi or other server.
|
||||
|
||||
[^home-assistant]: [Home Assistant](https://www.home-assistant.io/)
|
||||
[^matter-home-assistant]: [Home Assistant Matter](https://www.home-assistant.io/integrations/matter/)
|
||||
[^thread-home-assistant]: [Home Assistant Thread](https://www.home-assistant.io/integrations/thread/)
|
||||
[^zigbee-home-automation]: [Zigbee Home Automation](https://www.home-assistant.io/integrations/zha/)
|
||||
|
||||
## Hardware
|
||||
|
||||
So I start to make a list of what I have and what I need.
|
||||
Some things I buy online, some things come from some tech market and some come form the shoes box of my old stuff...
|
||||
|
||||
I only write about the real things but if I use cable or other "standard stuff" I don't write about it.
|
||||
So yes I bought some usb extention and some network cable but they aren't important for this post.
|
||||
|
||||
### Core/Brain Stuff
|
||||
|
||||
First I need the Brain for the project
|
||||
|
||||

|
||||
|
||||
From what I read in the Home Assistant[^home-assistant] documentation I need some type of server with some gadget connected to them.
|
||||
|
||||
So I search and got a RaspberryPi 4B[^raspberry].
|
||||

|
||||
|
||||
[^raspberry]: [RaspberryPi 4B](https://www.raspberrypi.com/products/raspberry-pi-4-model-b/)
|
||||
|
||||
I also bought a microSD with 64GB of memory (I am on a budget for this project) as an Hard Disk for the "server".
|
||||
|
||||
Searching in my closet and in some shoes boxes I found a case[^case] for RaspberryPi with active cooling system (and LGB light)
|
||||
|
||||
[^case]: [Raspberry Pi 4B Case from Owootecc](https://www.amazon.it/dp/B07YJGWPQL)
|
||||
|
||||
So I flash the microSD with the Home Assistant software. Thanks to the Raspberry Pi Software[^iso] choosing the right iso and flash it in the SD was a walk in the park.
|
||||
|
||||
[^iso]: [Raspberry Pi software](https://www.raspberrypi.com/software/)
|
||||
|
||||
After the flashing I set it up and add to my local network and check for update.
|
||||
|
||||
So the brain is ready!
|
||||
|
||||
### Sensor form Ikea
|
||||
|
||||
I went to Ikea for some stuff and some Swedish meatballs and I came back with an Ikea Alpstuga[^ikea].
|
||||
|
||||

|
||||
|
||||
It is a timer, air sensor with CO2 and PM2.5 sensor and output all of them and an Air Quality value.
|
||||
|
||||
[^ikea]: [Ikea Alpstuga](https://www.ikea.com/it/it/p/alpstuga-sensore-della-qualita-dellaria-smart-50604187/)
|
||||
|
||||
The only bad thing about it is the color but for the price I don't complain.
|
||||
|
||||
So after coming home I found it didn't work.
|
||||
|
||||

|
||||
|
||||
As is the RaspberryPi 4B do not support Thread or Zigbee without some type of specialized antenna...
|
||||
I was understanding that the software use the wifi module of the RaspberryPi as a Zigbee/Thread emitter/reciver but no so I search on Amazon for the dongle for Thread.
|
||||
|
||||
### Antenna
|
||||
|
||||
I bought a Usb dongle[^antenna] for connecting the RaspberryPi and the other gadget in the house (for now only the Ikea one)
|
||||
|
||||
[^antenna]: [SONOFF Zigbee 3.0 USB Dongle Plus MG24](https://www.amazon.it/dp/B0FMJD288B)
|
||||
|
||||
[^antenna]
|
||||
|
||||
This antenna is a little special: you can flash it for changing it form Zigbee to Thread and vice versa so I start to config it.
|
||||
|
||||
#### Setup the Antenna
|
||||
|
||||
First I flash the antenna. I need to port from Zigbee to Thread[^flash_firmware] and with the online tool it was so easy I thought I did something wrong.
|
||||
|
||||
[^flash_firmware]: [Sonoff dongle flasher/](https://dongle.sonoff.tech/sonoff-dongle-flasher/)
|
||||
|
||||
After this I connect the dongle and start to config the Home Assistant.
|
||||
|
||||
First I need to have installed Thread from "Add Integration" and it showed an empty list of device. This is correct because I didn't have a Thread router installed.
|
||||
|
||||
So we add a OpenRouter. How? Installing from the officials app of mine Home Assistant.
|
||||
|
||||

|
||||
|
||||
After this I edit the config in this way (the device was auto-finded) and I set this for my device. [^note]
|
||||
|
||||
[^note]: This config work for me, it can not work for you
|
||||
|
||||

|
||||
|
||||
For checking if all was ok I went and seach in the log for the OpenThread for a specific line.
|
||||
|
||||

|
||||
|
||||
After this I went to check if the Thread integration showed the Ikea sensor and it didn't show... Why? Because I am STUPID.
|
||||
|
||||
#### Setup the last little things
|
||||
|
||||
Alpstuga (my air sensor) is not Thread, is Matter over Thread, so I need to add the thing with the Matter integration. And with this last integration the system worked!
|
||||
|
||||

|
||||
|
||||
I am happy of this system? No. Why? I have the wrong time on the Alpstuga.
|
||||
|
||||
This thing I don't understand so I search online for understand how can I fix the time on the device.
|
||||
|
||||
I find this is a common problem with the Alpstuga device and someone made a Hacs[^hacs] plugin[^matter-time-synk] wich add a cron and a button for sync the Home Assistant's clock. I also add the plugin for integrate my Playstation Network in my Home Assistant[^psnetwork].
|
||||
|
||||
[^hacs]: [Home Assistant Hacs](https://www.hacs.xyz/)
|
||||
[^matter-time-synk]: [Matter time synk](https://github.com/Loweack/Matter-Time-Sync/)
|
||||
[^psnetwork]: [PlayStation Network Home Assistant](https://www.home-assistant.io/integrations/playstation_network/)
|
||||
|
||||
## Conclusion
|
||||
|
||||
For now this is what I had done but I want to have automation (for now I don't have any) and some stuff for lower the gas bill so there will be more post about my smart home.
|
||||
|
Before Width: | Height: | Size: 74 KiB |
|
Before Width: | Height: | Size: 326 KiB |
|
Before Width: | Height: | Size: 125 KiB |
|
Before Width: | Height: | Size: 3.5 MiB |
|
Before Width: | Height: | Size: 140 KiB |
|
Before Width: | Height: | Size: 3.4 MiB |
@@ -20,7 +20,6 @@
|
||||
"keywords:\n",
|
||||
"series:\n",
|
||||
"- Data and Data Tools\n",
|
||||
"draft: true\n",
|
||||
"---"
|
||||
]
|
||||
},
|
||||
|
||||
@@ -13,7 +13,6 @@ images:
|
||||
keywords:
|
||||
series:
|
||||
- Data and Data Tools
|
||||
draft: true
|
||||
---
|
||||
|
||||
## The idea
|
||||
@@ -90,7 +89,7 @@ print(table_volumes.isnull().sum())
|
||||
Sales 0
|
||||
Year 0
|
||||
dtype: int64
|
||||
|
||||
|
||||
-*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*-
|
||||
Missing value stats for Volumes:
|
||||
Ranking 0
|
||||
@@ -129,7 +128,7 @@ print(table_volumes.info(verbose=False))
|
||||
dtypes: int64(3), str(1)
|
||||
memory usage: 106.8 KB
|
||||
None
|
||||
|
||||
|
||||
-*-
|
||||
Ranking Volume Sales Year
|
||||
0 1 One Piece 5956540 2008
|
||||
@@ -158,9 +157,9 @@ table_series[["Title","Sales","Year"]].plot(title="Manga Series")
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||

|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
Before Width: | Height: | Size: 2.4 MiB |
@@ -1,34 +0,0 @@
|
||||
---
|
||||
title: "Week Note Nº 11/2026"
|
||||
date: "2026-03-15T09:00:00+01:00"
|
||||
lastmod: "2026-03-15T09:00:00+01:00"
|
||||
tags: ["weeknote"]
|
||||
type : "weeknote"
|
||||
summary: "Personal notes for week 11 of 2026"
|
||||
description: "Personal notes for week 11 of 2026"
|
||||
draft: False
|
||||
---
|
||||
|
||||
|
||||
## Suggested Reading Links/Posts
|
||||
- [How to Use Chronodex - on MD Product](https://www.scriptionstudio.com/post/how-to-use-chronodex-on-md-product?utm_source=fundor333.com)
|
||||
- [Innamorarsi costa poco, 9,99 al mese - by Lorenzo Prattico](https://substack.com/@prattquello/p-190298226?utm_source=fundor333.com)
|
||||
|
||||
## My Links
|
||||
- [My blog](https://www.fundor333.com)
|
||||
- [My newsletter](https://newsletter.digitaltearoom.com)
|
||||
- [Support me](https://ko-fi.com/fundor333)
|
||||
|
||||
## Anime and manga's stats
|
||||
|
||||
### **Anime**
|
||||
- Total anime watched: **102**
|
||||
- Total anime watched time: **693h 10m**
|
||||
- Total anime watched episodes: **1675**
|
||||
- Top 5 anime genres: 🏷️ Action, 🏷️ Adventure, 🏷️ Fantasy, 🏷️ Supernatural, 🏷️ Drama
|
||||
|
||||
### **Manga**
|
||||
- Total manga read: **269**
|
||||
- Total manga read chapters: **27230**
|
||||
- Total manga read volumes: **612**
|
||||
- Top 5 manga genres: 🏷️ Fantasy, 🏷️ Action, 🏷️ Adventure, 🏷️ Comedy, 🏷️ Drama
|
||||
|
Before Width: | Height: | Size: 2.4 MiB |
@@ -1,34 +0,0 @@
|
||||
---
|
||||
title: "Week Note Nº 12/2026"
|
||||
date: "2026-03-22T09:00:00+01:00"
|
||||
lastmod: "2026-03-22T09:00:00+01:00"
|
||||
tags: ["weeknote"]
|
||||
type : "weeknote"
|
||||
summary: "Personal notes for week 12 of 2026"
|
||||
description: "Personal notes for week 12 of 2026"
|
||||
draft: False
|
||||
---
|
||||
|
||||
|
||||
## Suggested Reading Links/Posts
|
||||
- [Simon Collison | Return to Tokyo, Part 2](https://colly.com/journal/return-to-tokyo-part-2?utm_source=fundor333.com)
|
||||
- [| Chris Aldrich](https://boffosocko.com/2026/03/15/1957-royal-fp-typewriter-in-dodger-blue/?utm_source=fundor333.com)
|
||||
|
||||
## My Links
|
||||
- [My blog](https://www.fundor333.com)
|
||||
- [My newsletter](https://newsletter.digitaltearoom.com)
|
||||
- [Support me](https://ko-fi.com/fundor333)
|
||||
|
||||
## Anime and manga's stats
|
||||
|
||||
### **Anime**
|
||||
- Total anime watched: **105**
|
||||
- Total anime watched time: **706h 22m**
|
||||
- Total anime watched episodes: **1708**
|
||||
- Top 5 anime genres: 🏷️ Action, 🏷️ Adventure, 🏷️ Fantasy, 🏷️ Supernatural, 🏷️ Drama
|
||||
|
||||
### **Manga**
|
||||
- Total manga read: **269**
|
||||
- Total manga read chapters: **27382**
|
||||
- Total manga read volumes: **612**
|
||||
- Top 5 manga genres: 🏷️ Fantasy, 🏷️ Action, 🏷️ Adventure, 🏷️ Comedy, 🏷️ Drama
|
||||
|
Before Width: | Height: | Size: 2.4 MiB |
@@ -1,33 +0,0 @@
|
||||
---
|
||||
title: "Week Note Nº 13/2026"
|
||||
date: "2026-03-29T09:00:00+01:00"
|
||||
lastmod: "2026-03-29T09:00:00+01:00"
|
||||
tags: ["weeknote"]
|
||||
type : "weeknote"
|
||||
summary: "Personal notes for week 13 of 2026"
|
||||
description: "Personal notes for week 13 of 2026"
|
||||
draft: False
|
||||
---
|
||||
|
||||
|
||||
## New post from my blog
|
||||
- [Week Note Nº 13/2026](https://fundor333.com/weeknotes/2026/13/?utm_source=fundor333.com)
|
||||
|
||||
## My Links
|
||||
- [My blog](https://www.fundor333.com)
|
||||
- [My newsletter](https://newsletter.digitaltearoom.com)
|
||||
- [Support me](https://ko-fi.com/fundor333)
|
||||
|
||||
## Anime and manga's stats
|
||||
|
||||
### **Anime**
|
||||
- Total anime watched: **105**
|
||||
- Total anime watched time: **706h 22m**
|
||||
- Total anime watched episodes: **1708**
|
||||
- Top 5 anime genres: 🏷️ Action, 🏷️ Adventure, 🏷️ Fantasy, 🏷️ Supernatural, 🏷️ Drama
|
||||
|
||||
### **Manga**
|
||||
- Total manga read: **269**
|
||||
- Total manga read chapters: **27385**
|
||||
- Total manga read volumes: **612**
|
||||
- Top 5 manga genres: 🏷️ Fantasy, 🏷️ Action, 🏷️ Adventure, 🏷️ Comedy, 🏷️ Drama
|
||||
|
Before Width: | Height: | Size: 2.3 MiB |
@@ -1,33 +0,0 @@
|
||||
---
|
||||
title: "Week Note Nº 14/2026"
|
||||
date: "2026-03-30T09:00:00+01:00"
|
||||
lastmod: "2026-03-30T09:00:00+01:00"
|
||||
tags: ["weeknote"]
|
||||
type : "weeknote"
|
||||
summary: "Personal notes for week 14 of 2026"
|
||||
description: "Personal notes for week 14 of 2026"
|
||||
draft: False
|
||||
---
|
||||
|
||||
|
||||
## New post from my blog
|
||||
- [Week Note Nº 13/2026](https://fundor333.com/weeknotes/2026/13/?utm_source=fundor333.com)
|
||||
|
||||
## My Links
|
||||
- [My blog](https://www.fundor333.com)
|
||||
- [My newsletter](https://newsletter.digitaltearoom.com)
|
||||
- [Support me](https://ko-fi.com/fundor333)
|
||||
|
||||
## Anime and manga's stats
|
||||
|
||||
### **Anime**
|
||||
- Total anime watched: **105**
|
||||
- Total anime watched time: **706h 22m**
|
||||
- Total anime watched episodes: **1708**
|
||||
- Top 5 anime genres: 🏷️ Action, 🏷️ Adventure, 🏷️ Fantasy, 🏷️ Supernatural, 🏷️ Drama
|
||||
|
||||
### **Manga**
|
||||
- Total manga read: **269**
|
||||
- Total manga read chapters: **27385**
|
||||
- Total manga read volumes: **612**
|
||||
- Top 5 manga genres: 🏷️ Fantasy, 🏷️ Action, 🏷️ Adventure, 🏷️ Comedy, 🏷️ Drama
|
||||
@@ -1,7 +0,0 @@
|
||||
{
|
||||
"syndication": [
|
||||
"https://bsky.app/profile/fundor333.bsky.social/post/3mdgrz4agzg23",
|
||||
"https://mastodon.social/@fundor333/115969377077180224"
|
||||
],
|
||||
"source": "https://fundor333.com/micro/2026/01/making-htmx-stuffs/"
|
||||
}
|
||||
@@ -1,6 +0,0 @@
|
||||
{
|
||||
"syndication": [
|
||||
"https://mastodon.social/@fundor333/115963459189684445"
|
||||
],
|
||||
"source": "https://fundor333.com/post/2026/why-do-i-disinstall-poetry-and-use-only-uv-/"
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
{
|
||||
"syndication": [
|
||||
"https://mastodon.social/@fundor333/116318298830055707",
|
||||
"https://news.ycombinator.com/item?id=47573957"
|
||||
],
|
||||
"source": "https://fundor333.com/post/2026/starting-my-home-automation-experiment/"
|
||||
}
|
||||
@@ -1 +1 @@
|
||||
{"source": [{"type": "entry", "author": {"type": "card", "name": "\ud83d\udc0dFundor 333\ud83d\udc33\ud83d\udc68\u200d\ud83d\udcbb", "photo": "https://avatars.webmention.io/pbs.twimg.com/c3d085f0266cb157220a9e6312c26ccaeb56e5c4d2d501cf0d6426f05c36890e.jpg", "url": "https://twitter.com/fundor333"}, "url": "https://twitter.com/fundor333/status/1446460514364710916#favorited-by-2687984266", "published": null, "wm-received": "2021-10-19T12:10:15Z", "wm-id": 1293235, "wm-source": "https://brid.gy/like/twitter/fundor333/1446460514364710916/2687984266", "wm-target": "https://fundor333.com/post/2021/from-devops-to-gitops/", "wm-protocol": "webmention", "like-of": "https://fundor333.com/post/2021/from-devops-to-gitops/", "wm-property": "like-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "Simone Cortesi \ud83c\uddea\ud83c\uddfa", "photo": "https://avatars.webmention.io/pbs.twimg.com/a9aeb33d7425c8786c4d3ee84094da4dc7ee0d04a846021a61b3a9c78b49a20e.jpg", "url": "https://twitter.com/simonecortesi"}, "url": "https://twitter.com/simonecortesi/status/1450542958713966592", "published": "2021-10-19T19:22:45+00:00", "wm-received": "2021-10-19T19:37:35Z", "wm-id": 1293476, "wm-source": "https://brid.gy/comment/twitter/fundor333/1446460514364710916/1450542958713966592", "wm-target": "https://fundor333.com/post/2021/from-devops-to-gitops/", "wm-protocol": "webmention", "content": {"html": "Yo!\n<a class=\"u-mention\" href=\"https://fundor333.com/\"></a>\n<a class=\"u-mention\" href=\"https://twitter.com/fundor333\"></a>", "text": "Yo!"}, "in-reply-to": "https://fundor333.com/post/2021/from-devops-to-gitops/", "wm-property": "in-reply-to", "wm-private": false}], "stats": {"like-of": 1, "bookmark-of": 0, "mention-of": 0, "repost-of": 0, "in-reply-to": 1, "comments": [{"content": "Yo!", "link": "https://brid.gy/comment/twitter/fundor333/1446460514364710916/1450542958713966592", "author_name": "Simone Cortesi \ud83c\uddea\ud83c\uddfa", "author_photo": "https://avatars.webmention.io/pbs.twimg.com/a9aeb33d7425c8786c4d3ee84094da4dc7ee0d04a846021a61b3a9c78b49a20e.jpg", "author_url": "https://twitter.com/simonecortesi"}]}}
|
||||
{"source": [{"type": "entry", "author": {"type": "card", "name": "Simone Cortesi \ud83c\uddea\ud83c\uddfa", "photo": "https://avatars.webmention.io/pbs.twimg.com/a9aeb33d7425c8786c4d3ee84094da4dc7ee0d04a846021a61b3a9c78b49a20e.jpg", "url": "https://twitter.com/simonecortesi"}, "url": "https://twitter.com/simonecortesi/status/1450542958713966592", "published": "2021-10-19T19:22:45+00:00", "wm-received": "2021-10-19T19:37:35Z", "wm-id": 1293476, "wm-source": "https://brid.gy/comment/twitter/fundor333/1446460514364710916/1450542958713966592", "wm-target": "https://fundor333.com/post/2021/from-devops-to-gitops/", "wm-protocol": "webmention", "content": {"html": "Yo!\n<a class=\"u-mention\" href=\"https://fundor333.com/\"></a>\n<a class=\"u-mention\" href=\"https://twitter.com/fundor333\"></a>", "text": "Yo!"}, "in-reply-to": "https://fundor333.com/post/2021/from-devops-to-gitops/", "wm-property": "in-reply-to", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "\ud83d\udc0dFundor 333\ud83d\udc33\ud83d\udc68\u200d\ud83d\udcbb", "photo": "https://avatars.webmention.io/pbs.twimg.com/c3d085f0266cb157220a9e6312c26ccaeb56e5c4d2d501cf0d6426f05c36890e.jpg", "url": "https://twitter.com/fundor333"}, "url": "https://twitter.com/fundor333/status/1446460514364710916#favorited-by-2687984266", "published": null, "wm-received": "2021-10-19T12:10:15Z", "wm-id": 1293235, "wm-source": "https://brid.gy/like/twitter/fundor333/1446460514364710916/2687984266", "wm-target": "https://fundor333.com/post/2021/from-devops-to-gitops/", "wm-protocol": "webmention", "like-of": "https://fundor333.com/post/2021/from-devops-to-gitops/", "wm-property": "like-of", "wm-private": false}], "stats": {"like-of": 1, "bookmark-of": 0, "mention-of": 0, "repost-of": 0, "in-reply-to": 1, "comments": [{"content": "Yo!", "link": "https://brid.gy/comment/twitter/fundor333/1446460514364710916/1450542958713966592", "author_name": "Simone Cortesi \ud83c\uddea\ud83c\uddfa", "author_photo": "https://avatars.webmention.io/pbs.twimg.com/a9aeb33d7425c8786c4d3ee84094da4dc7ee0d04a846021a61b3a9c78b49a20e.jpg", "author_url": "https://twitter.com/simonecortesi"}]}}
|
||||
@@ -1 +1 @@
|
||||
{"source": [{"type": "entry", "author": {"type": "card", "name": "", "photo": "", "url": ""}, "url": "http://appuntistudenteschi.altervista.org/escono-dalle-fottute-pareti/", "published": null, "wm-received": "2021-10-21T21:34:13Z", "wm-id": 1294830, "wm-source": "http://appuntistudenteschi.altervista.org/escono-dalle-fottute-pareti/", "wm-target": "https://fundor333.com", "wm-protocol": "webmention", "mention-of": "https://fundor333.com", "wm-property": "mention-of", "wm-private": false, "rels": {"canonical": "http://appuntistudenteschi.altervista.org/escono-dalle-fottute-pareti/"}}, {"type": "entry", "author": {"type": "card", "name": "", "photo": "", "url": ""}, "url": "https://beatonma.org/webmentions_tester/", "published": null, "wm-received": "2025-06-15T23:09:41Z", "wm-id": 1918840, "wm-source": "https://beatonma.org/webmentions_tester/", "wm-target": "https://fundor333.com", "wm-protocol": "webmention", "mention-of": "https://fundor333.com", "wm-property": "mention-of", "wm-private": false}], "stats": {"like-of": 0, "bookmark-of": 0, "mention-of": 2, "repost-of": 0, "in-reply-to": 0, "comments": []}}
|
||||
{"source": [{"type": "entry", "author": {"type": "card", "name": "", "photo": "", "url": ""}, "url": "https://beatonma.org/webmentions_tester/", "published": null, "wm-received": "2025-06-15T23:09:41Z", "wm-id": 1918840, "wm-source": "https://beatonma.org/webmentions_tester/", "wm-target": "https://fundor333.com", "wm-protocol": "webmention", "mention-of": "https://fundor333.com", "wm-property": "mention-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "", "photo": "", "url": ""}, "url": "http://appuntistudenteschi.altervista.org/escono-dalle-fottute-pareti/", "published": null, "wm-received": "2021-10-21T21:34:13Z", "wm-id": 1294830, "wm-source": "http://appuntistudenteschi.altervista.org/escono-dalle-fottute-pareti/", "wm-target": "https://fundor333.com", "wm-protocol": "webmention", "mention-of": "https://fundor333.com", "wm-property": "mention-of", "wm-private": false, "rels": {"canonical": "http://appuntistudenteschi.altervista.org/escono-dalle-fottute-pareti/"}}], "stats": {"like-of": 0, "bookmark-of": 0, "mention-of": 2, "repost-of": 0, "in-reply-to": 0, "comments": []}}
|
||||
@@ -1 +1 @@
|
||||
{"source": [{"type": "entry", "author": {"type": "card", "name": "fundor333", "photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "url": "https://bsky.app/profile/fundor333.bsky.social"}, "url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3lsboxpu2ar26", "published": "2025-06-23T13:24:16+00:00", "wm-received": "2025-06-23T13:31:56Z", "wm-id": 1920026, "wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3lsboxpu2ar26%23bridgy-fed-create", "wm-target": "https://fundor333.com/micro/2025/06/latex-reprise/", "wm-protocol": "webmention", "content": {"html": "And now restart work with LaTeX\u2026 I love it!\n\n<a href=\"https://bsky.app/search?q=%23LaTeX\">#LaTeX</a> <a href=\"https://bsky.app/search?q=%23coding\">#coding</a> (<a href=\"https://fundor333.com/micro/2025/06/latex-reprise/\">https://fundor333.com/micro/2025/06/latex-reprise/</a>)", "text": "And now restart work with LaTeX\u2026 I love it!\n\n#LaTeX #coding (https://fundor333.com/micro/2025/06/latex-reprise/)"}, "mention-of": "https://fundor333.com/micro/2025/06/latex-reprise/", "wm-property": "mention-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "Frank M\u00fcller ????", "photo": "https://avatars.webmention.io/files.mastodon.social/1af8083fdc6e9d35fb3aa356cdae9645feb74369be0ecc0b4e47a5d609308ddb.jpg", "url": "https://mastodon.social/@themue"}, "url": "https://mastodon.social/@fundor333/114732925015070222#favorited-by-108783034613889258", "published": null, "wm-received": "2025-06-24T06:04:20Z", "wm-id": 1920182, "wm-source": "https://brid.gy/like/mastodon/@fundor333@mastodon.social/114732925015070222/108783034613889258", "wm-target": "https://fundor333.com/micro/2025/06/latex-reprise/", "wm-protocol": "webmention", "like-of": "https://fundor333.com/micro/2025/06/latex-reprise/", "wm-property": "like-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "Programming Channel", "photo": "https://avatars.webmention.io/files.mastodon.social/53dcc6ece2e0abd79a8aa637b9109d33bab0fa02e6536db85fd6c18ebc662722.png", "url": "https://newsmast.community/@programming"}, "url": "https://mastodon.social/@fundor333/114732925015070222#reblogged-by-111653091517742065", "published": null, "wm-received": "2025-06-24T00:24:22Z", "wm-id": 1920140, "wm-source": "https://brid.gy/repost/mastodon/@fundor333@mastodon.social/114732925015070222/111653091517742065", "wm-target": "https://fundor333.com/micro/2025/06/latex-reprise/", "wm-protocol": "webmention", "repost-of": "https://fundor333.com/micro/2025/06/latex-reprise/", "wm-property": "repost-of", "wm-private": false}], "stats": {"like-of": 1, "bookmark-of": 0, "mention-of": 1, "repost-of": 1, "in-reply-to": 0, "comments": [{"content": "And now restart work with LaTeX\u2026 I love it!\n\n#LaTeX #coding (https://fundor333.com/micro/2025/06/latex-reprise/)", "link": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3lsboxpu2ar26%23bridgy-fed-create", "author_name": "fundor333", "author_photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "author_url": "https://bsky.app/profile/fundor333.bsky.social"}]}}
|
||||
{"source": [{"type": "entry", "author": {"type": "card", "name": "Frank M\u00fcller ????", "photo": "https://avatars.webmention.io/files.mastodon.social/1af8083fdc6e9d35fb3aa356cdae9645feb74369be0ecc0b4e47a5d609308ddb.jpg", "url": "https://mastodon.social/@themue"}, "url": "https://mastodon.social/@fundor333/114732925015070222#favorited-by-108783034613889258", "published": null, "wm-received": "2025-06-24T06:04:20Z", "wm-id": 1920182, "wm-source": "https://brid.gy/like/mastodon/@fundor333@mastodon.social/114732925015070222/108783034613889258", "wm-target": "https://fundor333.com/micro/2025/06/latex-reprise/", "wm-protocol": "webmention", "like-of": "https://fundor333.com/micro/2025/06/latex-reprise/", "wm-property": "like-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "fundor333", "photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "url": "https://bsky.app/profile/fundor333.bsky.social"}, "url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3lsboxpu2ar26", "published": "2025-06-23T13:24:16+00:00", "wm-received": "2025-06-23T13:31:56Z", "wm-id": 1920026, "wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3lsboxpu2ar26%23bridgy-fed-create", "wm-target": "https://fundor333.com/micro/2025/06/latex-reprise/", "wm-protocol": "webmention", "content": {"html": "And now restart work with LaTeX\u2026 I love it!\n\n<a href=\"https://bsky.app/search?q=%23LaTeX\">#LaTeX</a> <a href=\"https://bsky.app/search?q=%23coding\">#coding</a> (<a href=\"https://fundor333.com/micro/2025/06/latex-reprise/\">https://fundor333.com/micro/2025/06/latex-reprise/</a>)", "text": "And now restart work with LaTeX\u2026 I love it!\n\n#LaTeX #coding (https://fundor333.com/micro/2025/06/latex-reprise/)"}, "mention-of": "https://fundor333.com/micro/2025/06/latex-reprise/", "wm-property": "mention-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "Programming Channel", "photo": "https://avatars.webmention.io/files.mastodon.social/53dcc6ece2e0abd79a8aa637b9109d33bab0fa02e6536db85fd6c18ebc662722.png", "url": "https://newsmast.community/@programming"}, "url": "https://mastodon.social/@fundor333/114732925015070222#reblogged-by-111653091517742065", "published": null, "wm-received": "2025-06-24T00:24:22Z", "wm-id": 1920140, "wm-source": "https://brid.gy/repost/mastodon/@fundor333@mastodon.social/114732925015070222/111653091517742065", "wm-target": "https://fundor333.com/micro/2025/06/latex-reprise/", "wm-protocol": "webmention", "repost-of": "https://fundor333.com/micro/2025/06/latex-reprise/", "wm-property": "repost-of", "wm-private": false}], "stats": {"like-of": 1, "bookmark-of": 0, "mention-of": 1, "repost-of": 1, "in-reply-to": 0, "comments": [{"content": "And now restart work with LaTeX\u2026 I love it!\n\n#LaTeX #coding (https://fundor333.com/micro/2025/06/latex-reprise/)", "link": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3lsboxpu2ar26%23bridgy-fed-create", "author_name": "fundor333", "author_photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "author_url": "https://bsky.app/profile/fundor333.bsky.social"}]}}
|
||||
@@ -1 +1 @@
|
||||
{"source": [{"type": "entry", "author": {"type": "card", "name": "hernantz", "photo": "https://avatars.webmention.io/files.mastodon.social/3a0dde8c7cb4b9e43f7aa1bf68ecf43c9c3056c4bd55cec849474b1b7652a445.jpg", "url": "https://fosstodon.org/@hernantz"}, "url": "https://mastodon.social/@fundor333/114689582471095983#favorited-by-109372865067686883", "published": null, "wm-received": "2025-06-15T23:12:20Z", "wm-id": 1918841, "wm-source": "https://brid.gy/like/mastodon/@fundor333@mastodon.social/114689582471095983/109372865067686883", "wm-target": "https://fundor333.com/post/2025/add-minor-things-to-django/", "wm-protocol": "webmention", "like-of": "https://fundor333.com/post/2025/add-minor-things-to-django/", "wm-property": "like-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "Jonathan Peacher", "photo": "https://avatars.webmention.io/files.mastodon.social/0b3d4dd3dbc2c078250c9c7593232f9354f4e988f4165698abb214ca27568f8e.jpg", "url": "https://fosstodon.org/@djpeacher"}, "url": "https://mastodon.social/@fundor333/114689582471095983#favorited-by-109291929777644594", "published": null, "wm-received": "2025-06-15T23:02:25Z", "wm-id": 1918838, "wm-source": "https://brid.gy/like/mastodon/@fundor333@mastodon.social/114689582471095983/109291929777644594", "wm-target": "https://fundor333.com/post/2025/add-minor-things-to-django/", "wm-protocol": "webmention", "like-of": "https://fundor333.com/post/2025/add-minor-things-to-django/", "wm-property": "like-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "Fundor333", "photo": "https://avatars.webmention.io/files.mastodon.social/36bc58e7595de593f520ba92ea9a8433b6dfde5a76f3f6d7d69755ac29007318.png", "url": "https://mastodon.social/@fundor333"}, "url": "https://mastodon.social/@fundor333/114689964896474095", "published": "2025-06-15T23:26:21+00:00", "wm-received": "2025-06-16T00:21:38Z", "wm-id": 1918848, "wm-source": "https://brid.gy/comment/mastodon/@fundor333@mastodon.social/114689582471095983/114689964896474095", "wm-target": "https://fundor333.com/post/2025/add-minor-things-to-django/", "wm-protocol": "webmention", "content": {"html": "<p>Thanks and i like the new _querystring_ tag</p><p><a href=\"https://mastodon.social/tags/django\">#<span>django</span></a> (<a href=\"https://fundor333.com/micro/2025/06/django-response/\"><span>https://</span><span>fundor333.com/micro/2025/06/dj</span><span>ango-response/</span></a>)</p>\n<a class=\"p-category\" href=\"https://mastodon.social/tags/django\">django</a>\n<a href=\"https://fundor333.com/micro/2025/06/django-response/\">Django Response | Fundor333</a>", "text": "Thanks and i like the new _querystring_ tag\n\n#django (https://fundor333.com/micro/2025/06/django-response/)\ndjango\nDjango Response | Fundor333"}, "in-reply-to": "https://fundor333.com/post/2025/add-minor-things-to-django/", "wm-property": "in-reply-to", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "Programming Channel", "photo": "https://avatars.webmention.io/files.mastodon.social/53dcc6ece2e0abd79a8aa637b9109d33bab0fa02e6536db85fd6c18ebc662722.png", "url": "https://newsmast.community/@programming"}, "url": "https://mastodon.social/@fundor333/114689582471095983#reblogged-by-111653091517742065", "published": null, "wm-received": "2025-06-16T12:34:51Z", "wm-id": 1918963, "wm-source": "https://brid.gy/repost/mastodon/@fundor333@mastodon.social/114689582471095983/111653091517742065", "wm-target": "https://fundor333.com/post/2025/add-minor-things-to-django/", "wm-protocol": "webmention", "repost-of": "https://fundor333.com/post/2025/add-minor-things-to-django/", "wm-property": "repost-of", "wm-private": false}], "stats": {"like-of": 2, "bookmark-of": 0, "mention-of": 0, "repost-of": 1, "in-reply-to": 1, "comments": [{"content": "Thanks and i like the new _querystring_ tag\n\n#django (https://fundor333.com/micro/2025/06/django-response/)\ndjango\nDjango Response | Fundor333", "link": "https://brid.gy/comment/mastodon/@fundor333@mastodon.social/114689582471095983/114689964896474095", "author_name": "Fundor333", "author_photo": "https://avatars.webmention.io/files.mastodon.social/36bc58e7595de593f520ba92ea9a8433b6dfde5a76f3f6d7d69755ac29007318.png", "author_url": "https://mastodon.social/@fundor333"}]}}
|
||||
{"source": [{"type": "entry", "author": {"type": "card", "name": "Programming Channel", "photo": "https://avatars.webmention.io/files.mastodon.social/53dcc6ece2e0abd79a8aa637b9109d33bab0fa02e6536db85fd6c18ebc662722.png", "url": "https://newsmast.community/@programming"}, "url": "https://mastodon.social/@fundor333/114689582471095983#reblogged-by-111653091517742065", "published": null, "wm-received": "2025-06-16T12:34:51Z", "wm-id": 1918963, "wm-source": "https://brid.gy/repost/mastodon/@fundor333@mastodon.social/114689582471095983/111653091517742065", "wm-target": "https://fundor333.com/post/2025/add-minor-things-to-django/", "wm-protocol": "webmention", "repost-of": "https://fundor333.com/post/2025/add-minor-things-to-django/", "wm-property": "repost-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "Jonathan Peacher", "photo": "https://avatars.webmention.io/files.mastodon.social/0b3d4dd3dbc2c078250c9c7593232f9354f4e988f4165698abb214ca27568f8e.jpg", "url": "https://fosstodon.org/@djpeacher"}, "url": "https://mastodon.social/@fundor333/114689582471095983#favorited-by-109291929777644594", "published": null, "wm-received": "2025-06-15T23:02:25Z", "wm-id": 1918838, "wm-source": "https://brid.gy/like/mastodon/@fundor333@mastodon.social/114689582471095983/109291929777644594", "wm-target": "https://fundor333.com/post/2025/add-minor-things-to-django/", "wm-protocol": "webmention", "like-of": "https://fundor333.com/post/2025/add-minor-things-to-django/", "wm-property": "like-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "Fundor333", "photo": "https://avatars.webmention.io/files.mastodon.social/36bc58e7595de593f520ba92ea9a8433b6dfde5a76f3f6d7d69755ac29007318.png", "url": "https://mastodon.social/@fundor333"}, "url": "https://mastodon.social/@fundor333/114689964896474095", "published": "2025-06-15T23:26:21+00:00", "wm-received": "2025-06-16T00:21:38Z", "wm-id": 1918848, "wm-source": "https://brid.gy/comment/mastodon/@fundor333@mastodon.social/114689582471095983/114689964896474095", "wm-target": "https://fundor333.com/post/2025/add-minor-things-to-django/", "wm-protocol": "webmention", "content": {"html": "<p>Thanks and i like the new _querystring_ tag</p><p><a href=\"https://mastodon.social/tags/django\">#<span>django</span></a> (<a href=\"https://fundor333.com/micro/2025/06/django-response/\"><span>https://</span><span>fundor333.com/micro/2025/06/dj</span><span>ango-response/</span></a>)</p>\n<a class=\"p-category\" href=\"https://mastodon.social/tags/django\">django</a>\n<a href=\"https://fundor333.com/micro/2025/06/django-response/\">Django Response | Fundor333</a>", "text": "Thanks and i like the new _querystring_ tag\n\n#django (https://fundor333.com/micro/2025/06/django-response/)\ndjango\nDjango Response | Fundor333"}, "in-reply-to": "https://fundor333.com/post/2025/add-minor-things-to-django/", "wm-property": "in-reply-to", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "hernantz", "photo": "https://avatars.webmention.io/files.mastodon.social/3a0dde8c7cb4b9e43f7aa1bf68ecf43c9c3056c4bd55cec849474b1b7652a445.jpg", "url": "https://fosstodon.org/@hernantz"}, "url": "https://mastodon.social/@fundor333/114689582471095983#favorited-by-109372865067686883", "published": null, "wm-received": "2025-06-15T23:12:20Z", "wm-id": 1918841, "wm-source": "https://brid.gy/like/mastodon/@fundor333@mastodon.social/114689582471095983/109372865067686883", "wm-target": "https://fundor333.com/post/2025/add-minor-things-to-django/", "wm-protocol": "webmention", "like-of": "https://fundor333.com/post/2025/add-minor-things-to-django/", "wm-property": "like-of", "wm-private": false}], "stats": {"like-of": 2, "bookmark-of": 0, "mention-of": 0, "repost-of": 1, "in-reply-to": 1, "comments": [{"content": "Thanks and i like the new _querystring_ tag\n\n#django (https://fundor333.com/micro/2025/06/django-response/)\ndjango\nDjango Response | Fundor333", "link": "https://brid.gy/comment/mastodon/@fundor333@mastodon.social/114689582471095983/114689964896474095", "author_name": "Fundor333", "author_photo": "https://avatars.webmention.io/files.mastodon.social/36bc58e7595de593f520ba92ea9a8433b6dfde5a76f3f6d7d69755ac29007318.png", "author_url": "https://mastodon.social/@fundor333"}]}}
|
||||
@@ -1 +1 @@
|
||||
{"source": [{"type": "entry", "author": {"type": "card", "name": "Programming Channel", "photo": "https://avatars.webmention.io/files.mastodon.social/53dcc6ece2e0abd79a8aa637b9109d33bab0fa02e6536db85fd6c18ebc662722.png", "url": "https://newsmast.community/@programming"}, "url": "https://mastodon.social/@fundor333/115107577546429660#reblogged-by-111653091517742065", "published": null, "wm-received": "2025-08-28T17:55:45Z", "wm-id": 1934243, "wm-source": "https://brid.gy/repost/mastodon/@fundor333@mastodon.social/115107577546429660/111653091517742065", "wm-target": "https://fundor333.com/micro/2025/08/at-pydatave/", "wm-protocol": "webmention", "repost-of": "https://fundor333.com/micro/2025/08/at-pydatave/", "wm-property": "repost-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "fundor333", "photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "url": "https://bsky.app/profile/fundor333.bsky.social"}, "url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3lxi342nrdu22", "published": "2025-08-28T17:00:36+00:00", "wm-received": "2025-08-28T17:31:15Z", "wm-id": 1934236, "wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3lxi342nrdu22%23bridgy-fed-create", "wm-target": "https://fundor333.com/micro/2025/08/at-pydatave/", "wm-protocol": "webmention", "photo": ["https://shiitake.us-east.host.bsky.network/xrpc/com.atproto.sync.getBlob?did=did:plc:u7piwonv4s27ysugjaa6im2q&cid=bafkreih27bbsfdzlae725xrd7sqgmepu2m5skyoq2owpr6ykuujc4ot5na"], "content": {"html": "And now I m at the PyDataVe\n\n<a href=\"https://bsky.app/search?q=%23pydata\">#pydata</a> <a href=\"https://bsky.app/search?q=%23pydatave\">#pydatave</a> <a href=\"https://bsky.app/search?q=%23python\">#python</a> (<a href=\"https://fundor333.com/micro/2025/08/at-pydatave/\">https://fundor333.com/micro/2025/08/at-pydatave/</a>)", "text": "And now I m at the PyDataVe\n\n#pydata #pydatave #python (https://fundor333.com/micro/2025/08/at-pydatave/)"}, "mention-of": "https://fundor333.com/micro/2025/08/at-pydatave/", "wm-property": "mention-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "mirsadra", "photo": "https://avatars.webmention.io/files.mastodon.social/792e793b6194a5b8f9c938b9579f049036ce9e59944e1b808f28b6464b7af88c.png", "url": "https://mastodon.social/@mirsadra"}, "url": "https://mastodon.social/@fundor333/115107577546429660#favorited-by-112972644461689445", "published": null, "wm-received": "2025-08-28T17:55:44Z", "wm-id": 1934242, "wm-source": "https://brid.gy/like/mastodon/@fundor333@mastodon.social/115107577546429660/112972644461689445", "wm-target": "https://fundor333.com/micro/2025/08/at-pydatave/", "wm-protocol": "webmention", "like-of": "https://fundor333.com/micro/2025/08/at-pydatave/", "wm-property": "like-of", "wm-private": false}], "stats": {"like-of": 1, "bookmark-of": 0, "mention-of": 1, "repost-of": 1, "in-reply-to": 0, "comments": [{"content": "And now I m at the PyDataVe\n\n#pydata #pydatave #python (https://fundor333.com/micro/2025/08/at-pydatave/)", "link": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3lxi342nrdu22%23bridgy-fed-create", "author_name": "fundor333", "author_photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "author_url": "https://bsky.app/profile/fundor333.bsky.social"}]}}
|
||||
{"source": [{"type": "entry", "author": {"type": "card", "name": "fundor333", "photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "url": "https://bsky.app/profile/fundor333.bsky.social"}, "url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3lxi342nrdu22", "published": "2025-08-28T17:00:36+00:00", "wm-received": "2025-08-28T17:31:15Z", "wm-id": 1934236, "wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3lxi342nrdu22%23bridgy-fed-create", "wm-target": "https://fundor333.com/micro/2025/08/at-pydatave/", "wm-protocol": "webmention", "photo": ["https://shiitake.us-east.host.bsky.network/xrpc/com.atproto.sync.getBlob?did=did:plc:u7piwonv4s27ysugjaa6im2q&cid=bafkreih27bbsfdzlae725xrd7sqgmepu2m5skyoq2owpr6ykuujc4ot5na"], "content": {"html": "And now I m at the PyDataVe\n\n<a href=\"https://bsky.app/search?q=%23pydata\">#pydata</a> <a href=\"https://bsky.app/search?q=%23pydatave\">#pydatave</a> <a href=\"https://bsky.app/search?q=%23python\">#python</a> (<a href=\"https://fundor333.com/micro/2025/08/at-pydatave/\">https://fundor333.com/micro/2025/08/at-pydatave/</a>)", "text": "And now I m at the PyDataVe\n\n#pydata #pydatave #python (https://fundor333.com/micro/2025/08/at-pydatave/)"}, "mention-of": "https://fundor333.com/micro/2025/08/at-pydatave/", "wm-property": "mention-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "mirsadra", "photo": "https://avatars.webmention.io/files.mastodon.social/792e793b6194a5b8f9c938b9579f049036ce9e59944e1b808f28b6464b7af88c.png", "url": "https://mastodon.social/@mirsadra"}, "url": "https://mastodon.social/@fundor333/115107577546429660#favorited-by-112972644461689445", "published": null, "wm-received": "2025-08-28T17:55:44Z", "wm-id": 1934242, "wm-source": "https://brid.gy/like/mastodon/@fundor333@mastodon.social/115107577546429660/112972644461689445", "wm-target": "https://fundor333.com/micro/2025/08/at-pydatave/", "wm-protocol": "webmention", "like-of": "https://fundor333.com/micro/2025/08/at-pydatave/", "wm-property": "like-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "Programming Channel", "photo": "https://avatars.webmention.io/files.mastodon.social/53dcc6ece2e0abd79a8aa637b9109d33bab0fa02e6536db85fd6c18ebc662722.png", "url": "https://newsmast.community/@programming"}, "url": "https://mastodon.social/@fundor333/115107577546429660#reblogged-by-111653091517742065", "published": null, "wm-received": "2025-08-28T17:55:45Z", "wm-id": 1934243, "wm-source": "https://brid.gy/repost/mastodon/@fundor333@mastodon.social/115107577546429660/111653091517742065", "wm-target": "https://fundor333.com/micro/2025/08/at-pydatave/", "wm-protocol": "webmention", "repost-of": "https://fundor333.com/micro/2025/08/at-pydatave/", "wm-property": "repost-of", "wm-private": false}], "stats": {"like-of": 1, "bookmark-of": 0, "mention-of": 1, "repost-of": 1, "in-reply-to": 0, "comments": [{"content": "And now I m at the PyDataVe\n\n#pydata #pydatave #python (https://fundor333.com/micro/2025/08/at-pydatave/)", "link": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3lxi342nrdu22%23bridgy-fed-create", "author_name": "fundor333", "author_photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "author_url": "https://bsky.app/profile/fundor333.bsky.social"}]}}
|
||||
@@ -1 +1 @@
|
||||
{"source": [{"type": "entry", "author": {"type": "card", "name": "fundor333", "photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "url": "https://bsky.app/profile/fundor333.bsky.social"}, "url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3lgszasvubq2r", "published": "2025-01-28T16:51:37+00:00", "wm-received": "2025-01-28T17:48:55Z", "wm-id": 1880902, "wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3lgszasvubq2r%23bridgy-fed-create", "wm-target": "https://fundor333.com/photos/2025/brick-and-storm/", "wm-protocol": "webmention", "content": {"html": "Brick and Storm: <a href=\"https://fundor333.com/photos/2025/brick-and-storm/\">https://fundor333.com/photos/2025/brick-and-storm/</a>", "text": "Brick and Storm: https://fundor333.com/photos/2025/brick-and-storm/"}, "mention-of": "https://fundor333.com/photos/2025/brick-and-storm/", "wm-property": "mention-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "Andrea Grandi ????", "photo": "https://avatars.webmention.io/files.mastodon.social/b32dc86fff05382c848f283bce646a3084a6312b7a3cc0f27a8da079a7d2d40c.jpg", "url": "https://mastodon.social/@andreagrandi"}, "url": "https://mastodon.social/@fundor333/113907209418985626#favorited-by-299643", "published": null, "wm-received": "2025-01-28T19:59:22Z", "wm-id": 1880921, "wm-source": "https://brid.gy/like/mastodon/@fundor333@mastodon.social/113907209418985626/299643", "wm-target": "https://fundor333.com/photos/2025/brick-and-storm/", "wm-protocol": "webmention", "like-of": "https://fundor333.com/photos/2025/brick-and-storm/", "wm-property": "like-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "fundor333", "photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "url": "https://bsky.app/profile/fundor333.bsky.social"}, "url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3lgsytoy6n625", "published": "2025-01-28T16:51:37+00:00", "wm-received": "2025-01-28T17:45:16Z", "wm-id": 1880901, "wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3lgsytoy6n625%23bridgy-fed-create", "wm-target": "https://fundor333.com/photos/2025/brick-and-storm/", "wm-protocol": "webmention", "photo": ["https://shiitake.us-east.host.bsky.network/xrpc/com.atproto.sync.getBlob?did=did:plc:u7piwonv4s27ysugjaa6im2q&cid=bafkreibck66w5xlhmxp2iwghsx2syj25vj2s6333qlnm2zyjcqbzi6a3qe"], "content": {"html": "Some brick building before the storm (<a href=\"https://fundor333.com/photos/2025/brick-and-storm/\">https://fundor333.com/photos/2025/brick-and-storm/</a>)", "text": "Some brick building before the storm (https://fundor333.com/photos/2025/brick-and-storm/)"}, "mention-of": "https://fundor333.com/photos/2025/brick-and-storm/", "wm-property": "mention-of", "wm-private": false}], "stats": {"like-of": 1, "bookmark-of": 0, "mention-of": 2, "repost-of": 0, "in-reply-to": 0, "comments": [{"content": "Brick and Storm: https://fundor333.com/photos/2025/brick-and-storm/", "link": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3lgszasvubq2r%23bridgy-fed-create", "author_name": "fundor333", "author_photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "author_url": "https://bsky.app/profile/fundor333.bsky.social"}, {"content": "Some brick building before the storm (https://fundor333.com/photos/2025/brick-and-storm/)", "link": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3lgsytoy6n625%23bridgy-fed-create", "author_name": "fundor333", "author_photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "author_url": "https://bsky.app/profile/fundor333.bsky.social"}]}}
|
||||
{"source": [{"type": "entry", "author": {"type": "card", "name": "fundor333", "photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "url": "https://bsky.app/profile/fundor333.bsky.social"}, "url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3lgsytoy6n625", "published": "2025-01-28T16:51:37+00:00", "wm-received": "2025-01-28T17:45:16Z", "wm-id": 1880901, "wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3lgsytoy6n625%23bridgy-fed-create", "wm-target": "https://fundor333.com/photos/2025/brick-and-storm/", "wm-protocol": "webmention", "photo": ["https://shiitake.us-east.host.bsky.network/xrpc/com.atproto.sync.getBlob?did=did:plc:u7piwonv4s27ysugjaa6im2q&cid=bafkreibck66w5xlhmxp2iwghsx2syj25vj2s6333qlnm2zyjcqbzi6a3qe"], "content": {"html": "Some brick building before the storm (<a href=\"https://fundor333.com/photos/2025/brick-and-storm/\">https://fundor333.com/photos/2025/brick-and-storm/</a>)", "text": "Some brick building before the storm (https://fundor333.com/photos/2025/brick-and-storm/)"}, "mention-of": "https://fundor333.com/photos/2025/brick-and-storm/", "wm-property": "mention-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "Andrea Grandi ????", "photo": "https://avatars.webmention.io/files.mastodon.social/b32dc86fff05382c848f283bce646a3084a6312b7a3cc0f27a8da079a7d2d40c.jpg", "url": "https://mastodon.social/@andreagrandi"}, "url": "https://mastodon.social/@fundor333/113907209418985626#favorited-by-299643", "published": null, "wm-received": "2025-01-28T19:59:22Z", "wm-id": 1880921, "wm-source": "https://brid.gy/like/mastodon/@fundor333@mastodon.social/113907209418985626/299643", "wm-target": "https://fundor333.com/photos/2025/brick-and-storm/", "wm-protocol": "webmention", "like-of": "https://fundor333.com/photos/2025/brick-and-storm/", "wm-property": "like-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "fundor333", "photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "url": "https://bsky.app/profile/fundor333.bsky.social"}, "url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3lgszasvubq2r", "published": "2025-01-28T16:51:37+00:00", "wm-received": "2025-01-28T17:48:55Z", "wm-id": 1880902, "wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3lgszasvubq2r%23bridgy-fed-create", "wm-target": "https://fundor333.com/photos/2025/brick-and-storm/", "wm-protocol": "webmention", "content": {"html": "Brick and Storm: <a href=\"https://fundor333.com/photos/2025/brick-and-storm/\">https://fundor333.com/photos/2025/brick-and-storm/</a>", "text": "Brick and Storm: https://fundor333.com/photos/2025/brick-and-storm/"}, "mention-of": "https://fundor333.com/photos/2025/brick-and-storm/", "wm-property": "mention-of", "wm-private": false}], "stats": {"like-of": 1, "bookmark-of": 0, "mention-of": 2, "repost-of": 0, "in-reply-to": 0, "comments": [{"content": "Some brick building before the storm (https://fundor333.com/photos/2025/brick-and-storm/)", "link": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3lgsytoy6n625%23bridgy-fed-create", "author_name": "fundor333", "author_photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "author_url": "https://bsky.app/profile/fundor333.bsky.social"}, {"content": "Brick and Storm: https://fundor333.com/photos/2025/brick-and-storm/", "link": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3lgszasvubq2r%23bridgy-fed-create", "author_name": "fundor333", "author_photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "author_url": "https://bsky.app/profile/fundor333.bsky.social"}]}}
|
||||
@@ -1 +1 @@
|
||||
{"source": [{"type": "entry", "author": {"type": "card", "name": "EchoFeed Amplify", "photo": "https://avatars.webmention.io/files.mastodon.social/dbb5ad255dc5c8d0514757f359949620b511db0af111853b0de3eb801b6582d8.png", "url": "https://beep.town/@echofeedamplify"}, "url": "https://mastodon.social/@fundor333/114587857806058272#reblogged-by-112257242328855992", "published": null, "wm-received": "2025-05-28T22:41:14Z", "wm-id": 1914207, "wm-source": "https://brid.gy/repost/mastodon/@fundor333@mastodon.social/114587857806058272/112257242328855992", "wm-target": "https://fundor333.com/micro/2025/05/question-about-echofeed/", "wm-protocol": "webmention", "repost-of": "https://fundor333.com/micro/2025/05/question-about-echofeed/", "wm-property": "repost-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "Fundor333", "photo": "https://avatars.webmention.io/files.mastodon.social/36bc58e7595de593f520ba92ea9a8433b6dfde5a76f3f6d7d69755ac29007318.png", "url": "https://mastodon.social/@fundor333"}, "url": "https://mastodon.social/@fundor333/114587877342224204", "published": "2025-05-28T22:44:09+00:00", "wm-received": "2025-05-28T23:16:15Z", "wm-id": 1914212, "wm-source": "https://brid.gy/comment/mastodon/@fundor333@mastodon.social/114587857806058272/114587877342224204", "wm-target": "https://fundor333.com/micro/2025/05/question-about-echofeed/", "wm-protocol": "webmention", "content": {"html": "<p><span class=\"h-card\"><a href=\"https://social.lol/@robb\" class=\"u-url\">@<span>robb</span></a></span> Thanks, this is the link</p><p><a href=\"https://fundor333.com/index.xml\"><span>https://</span><span>fundor333.com/index.xml</span><span></span></a></p>", "text": "@robb Thanks, this is the link\n\nhttps://fundor333.com/index.xml"}, "in-reply-to": "https://fundor333.com/micro/2025/05/question-about-echofeed/", "wm-property": "in-reply-to", "wm-private": false}], "stats": {"like-of": 0, "bookmark-of": 0, "mention-of": 0, "repost-of": 1, "in-reply-to": 1, "comments": [{"content": "@robb Thanks, this is the link\n\nhttps://fundor333.com/index.xml", "link": "https://brid.gy/comment/mastodon/@fundor333@mastodon.social/114587857806058272/114587877342224204", "author_name": "Fundor333", "author_photo": "https://avatars.webmention.io/files.mastodon.social/36bc58e7595de593f520ba92ea9a8433b6dfde5a76f3f6d7d69755ac29007318.png", "author_url": "https://mastodon.social/@fundor333"}]}}
|
||||
{"source": [{"type": "entry", "author": {"type": "card", "name": "Fundor333", "photo": "https://avatars.webmention.io/files.mastodon.social/36bc58e7595de593f520ba92ea9a8433b6dfde5a76f3f6d7d69755ac29007318.png", "url": "https://mastodon.social/@fundor333"}, "url": "https://mastodon.social/@fundor333/114587877342224204", "published": "2025-05-28T22:44:09+00:00", "wm-received": "2025-05-28T23:16:15Z", "wm-id": 1914212, "wm-source": "https://brid.gy/comment/mastodon/@fundor333@mastodon.social/114587857806058272/114587877342224204", "wm-target": "https://fundor333.com/micro/2025/05/question-about-echofeed/", "wm-protocol": "webmention", "content": {"html": "<p><span class=\"h-card\"><a href=\"https://social.lol/@robb\" class=\"u-url\">@<span>robb</span></a></span> Thanks, this is the link</p><p><a href=\"https://fundor333.com/index.xml\"><span>https://</span><span>fundor333.com/index.xml</span><span></span></a></p>", "text": "@robb Thanks, this is the link\n\nhttps://fundor333.com/index.xml"}, "in-reply-to": "https://fundor333.com/micro/2025/05/question-about-echofeed/", "wm-property": "in-reply-to", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "EchoFeed Amplify", "photo": "https://avatars.webmention.io/files.mastodon.social/dbb5ad255dc5c8d0514757f359949620b511db0af111853b0de3eb801b6582d8.png", "url": "https://beep.town/@echofeedamplify"}, "url": "https://mastodon.social/@fundor333/114587857806058272#reblogged-by-112257242328855992", "published": null, "wm-received": "2025-05-28T22:41:14Z", "wm-id": 1914207, "wm-source": "https://brid.gy/repost/mastodon/@fundor333@mastodon.social/114587857806058272/112257242328855992", "wm-target": "https://fundor333.com/micro/2025/05/question-about-echofeed/", "wm-protocol": "webmention", "repost-of": "https://fundor333.com/micro/2025/05/question-about-echofeed/", "wm-property": "repost-of", "wm-private": false}], "stats": {"like-of": 0, "bookmark-of": 0, "mention-of": 0, "repost-of": 1, "in-reply-to": 1, "comments": [{"content": "@robb Thanks, this is the link\n\nhttps://fundor333.com/index.xml", "link": "https://brid.gy/comment/mastodon/@fundor333@mastodon.social/114587857806058272/114587877342224204", "author_name": "Fundor333", "author_photo": "https://avatars.webmention.io/files.mastodon.social/36bc58e7595de593f520ba92ea9a8433b6dfde5a76f3f6d7d69755ac29007318.png", "author_url": "https://mastodon.social/@fundor333"}]}}
|
||||
@@ -1 +1 @@
|
||||
{"source": [{"type": "entry", "author": {"type": "card", "name": "fundor333", "photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "url": "https://bsky.app/profile/fundor333.bsky.social"}, "url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3ly4topvzil2n", "published": "2025-09-05T23:26:14+00:00", "wm-received": "2025-09-05T23:44:02Z", "wm-id": 1936600, "wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3ly4topvzil2n%23bridgy-fed-create", "wm-target": "https://fundor333.com/micro/2025/09/and-more-more-llm-but-this-time-at-/", "wm-protocol": "webmention", "content": {"html": "And now with the stuff from Esc Summer Camp and PyVenice I am making more testing and trying of LLM and understand what is a Stochastic parrot\n\n<a href=\"https://bsky.app/search?q=%23escsummercamp\">#escsummercamp</a> <a href=\"https://bsky.app/search?q=%23dev\">#dev</a> <a href=\"https://bsky.app/search?q=%23llm\">#llm</a> <a href=\"https://bsky.app/search?q=%23ollama\">#ollama</a> <a href=\"https://bsky.app/search?q=%23pyvenice\">#pyvenice</a> (<a href=\"https://fundor333.com/micro/2025/09/and-more-more-llm-but-this-time-at-/\">https://fundor333.com/micro/2025/09/and-more-more-llm-but-this-time-at-/</a>)", "text": "And now with the stuff from Esc Summer Camp and PyVenice I am making more testing and trying of LLM and understand what is a Stochastic parrot\n\n#escsummercamp #dev #llm #ollama #pyvenice (https://fundor333.com/micro/2025/09/and-more-more-llm-but-this-time-at-/)"}, "mention-of": "https://fundor333.com/micro/2025/09/and-more-more-llm-but-this-time-at-/", "wm-property": "mention-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "AI Channel", "photo": "https://avatars.webmention.io/files.mastodon.social/53dcc6ece2e0abd79a8aa637b9109d33bab0fa02e6536db85fd6c18ebc662722.png", "url": "https://newsmast.community/@ai"}, "url": "https://mastodon.social/@fundor333/115154343496488056#reblogged-by-111653134040839943", "published": null, "wm-received": "2025-09-06T00:09:23Z", "wm-id": 1936606, "wm-source": "https://brid.gy/repost/mastodon/@fundor333@mastodon.social/115154343496488056/111653134040839943", "wm-target": "https://fundor333.com/micro/2025/09/and-more-more-llm-but-this-time-at-/", "wm-protocol": "webmention", "repost-of": "https://fundor333.com/micro/2025/09/and-more-more-llm-but-this-time-at-/", "wm-property": "repost-of", "wm-private": false}], "stats": {"like-of": 0, "bookmark-of": 0, "mention-of": 1, "repost-of": 1, "in-reply-to": 0, "comments": [{"content": "And now with the stuff from Esc Summer Camp and PyVenice I am making more testing and trying of LLM and understand what is a Stochastic parrot\n\n#escsummercamp #dev #llm #ollama #pyvenice (https://fundor333.com/micro/2025/09/and-more-more-llm-but-this-time-at-/)", "link": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3ly4topvzil2n%23bridgy-fed-create", "author_name": "fundor333", "author_photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "author_url": "https://bsky.app/profile/fundor333.bsky.social"}]}}
|
||||
{"source": [{"type": "entry", "author": {"type": "card", "name": "AI Channel", "photo": "https://avatars.webmention.io/files.mastodon.social/53dcc6ece2e0abd79a8aa637b9109d33bab0fa02e6536db85fd6c18ebc662722.png", "url": "https://newsmast.community/@ai"}, "url": "https://mastodon.social/@fundor333/115154343496488056#reblogged-by-111653134040839943", "published": null, "wm-received": "2025-09-06T00:09:23Z", "wm-id": 1936606, "wm-source": "https://brid.gy/repost/mastodon/@fundor333@mastodon.social/115154343496488056/111653134040839943", "wm-target": "https://fundor333.com/micro/2025/09/and-more-more-llm-but-this-time-at-/", "wm-protocol": "webmention", "repost-of": "https://fundor333.com/micro/2025/09/and-more-more-llm-but-this-time-at-/", "wm-property": "repost-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "fundor333", "photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "url": "https://bsky.app/profile/fundor333.bsky.social"}, "url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3ly4topvzil2n", "published": "2025-09-05T23:26:14+00:00", "wm-received": "2025-09-05T23:44:02Z", "wm-id": 1936600, "wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3ly4topvzil2n%23bridgy-fed-create", "wm-target": "https://fundor333.com/micro/2025/09/and-more-more-llm-but-this-time-at-/", "wm-protocol": "webmention", "content": {"html": "And now with the stuff from Esc Summer Camp and PyVenice I am making more testing and trying of LLM and understand what is a Stochastic parrot\n\n<a href=\"https://bsky.app/search?q=%23escsummercamp\">#escsummercamp</a> <a href=\"https://bsky.app/search?q=%23dev\">#dev</a> <a href=\"https://bsky.app/search?q=%23llm\">#llm</a> <a href=\"https://bsky.app/search?q=%23ollama\">#ollama</a> <a href=\"https://bsky.app/search?q=%23pyvenice\">#pyvenice</a> (<a href=\"https://fundor333.com/micro/2025/09/and-more-more-llm-but-this-time-at-/\">https://fundor333.com/micro/2025/09/and-more-more-llm-but-this-time-at-/</a>)", "text": "And now with the stuff from Esc Summer Camp and PyVenice I am making more testing and trying of LLM and understand what is a Stochastic parrot\n\n#escsummercamp #dev #llm #ollama #pyvenice (https://fundor333.com/micro/2025/09/and-more-more-llm-but-this-time-at-/)"}, "mention-of": "https://fundor333.com/micro/2025/09/and-more-more-llm-but-this-time-at-/", "wm-property": "mention-of", "wm-private": false}], "stats": {"like-of": 0, "bookmark-of": 0, "mention-of": 1, "repost-of": 1, "in-reply-to": 0, "comments": [{"content": "And now with the stuff from Esc Summer Camp and PyVenice I am making more testing and trying of LLM and understand what is a Stochastic parrot\n\n#escsummercamp #dev #llm #ollama #pyvenice (https://fundor333.com/micro/2025/09/and-more-more-llm-but-this-time-at-/)", "link": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3ly4topvzil2n%23bridgy-fed-create", "author_name": "fundor333", "author_photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "author_url": "https://bsky.app/profile/fundor333.bsky.social"}]}}
|
||||
@@ -1 +1 @@
|
||||
{"source": [{"type": "entry", "author": {"type": "card", "name": "Alessandra Bilardi", "photo": "https://avatars.webmention.io/files.mastodon.social/801d8929b4bc39e1ac2cecad73ad0bdc3bf3929415171071aa9c80b83fd400ca.jpg", "url": "https://mastodon.social/@bilardi"}, "url": "https://mastodon.social/@fundor333/115107935701051886#favorited-by-115043678742919137", "published": null, "wm-received": "2025-08-30T13:18:23Z", "wm-id": 1935046, "wm-source": "https://brid.gy/like/mastodon/@fundor333@mastodon.social/115107935701051886/115043678742919137", "wm-target": "https://fundor333.com/micro/2025/08/alchool-at-pydatave/", "wm-protocol": "webmention", "like-of": "https://fundor333.com/micro/2025/08/alchool-at-pydatave/", "wm-property": "like-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "X Over Zero", "photo": "https://avatars.webmention.io/files.mastodon.social/8c21ac5d2866f05f9baafe04c35d8dc534aefc35339cbae5dabe8cea5b3971e0.jpg", "url": "https://pixelfed.social/Xover0"}, "url": "https://mastodon.social/@fundor333/115107935701051886#favorited-by-113920669604544758", "published": null, "wm-received": "2025-08-28T19:20:55Z", "wm-id": 1934252, "wm-source": "https://brid.gy/like/mastodon/@fundor333@mastodon.social/115107935701051886/113920669604544758", "wm-target": "https://fundor333.com/micro/2025/08/alchool-at-pydatave/", "wm-protocol": "webmention", "like-of": "https://fundor333.com/micro/2025/08/alchool-at-pydatave/", "wm-property": "like-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "DTR NewsLetter", "photo": "https://avatars.webmention.io/files.mastodon.social/86ca1902efd9d7b89998a494c9697378198fd7280a09a30607a824f63f53bd83.png", "url": "https://newsletter.digitaltearoom.com/"}, "url": "https://mastodon.social/@fundor333/115107935701051886#favorited-by-115056545320635643", "published": null, "wm-received": "2025-09-08T00:09:01Z", "wm-id": 1937678, "wm-source": "https://brid.gy/like/mastodon/@fundor333@mastodon.social/115107935701051886/115056545320635643", "wm-target": "https://fundor333.com/micro/2025/08/alchool-at-pydatave/", "wm-protocol": "webmention", "like-of": "https://fundor333.com/micro/2025/08/alchool-at-pydatave/", "wm-property": "like-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "Alessandra Bilardi", "photo": "https://avatars.webmention.io/files.mastodon.social/801d8929b4bc39e1ac2cecad73ad0bdc3bf3929415171071aa9c80b83fd400ca.jpg", "url": "https://mastodon.social/@bilardi"}, "url": "https://mastodon.social/@fundor333/115107935701051886#reblogged-by-115043678742919137", "published": null, "wm-received": "2025-08-30T13:18:23Z", "wm-id": 1935047, "wm-source": "https://brid.gy/repost/mastodon/@fundor333@mastodon.social/115107935701051886/115043678742919137", "wm-target": "https://fundor333.com/micro/2025/08/alchool-at-pydatave/", "wm-protocol": "webmention", "repost-of": "https://fundor333.com/micro/2025/08/alchool-at-pydatave/", "wm-property": "repost-of", "wm-private": false}], "stats": {"like-of": 3, "bookmark-of": 0, "mention-of": 0, "repost-of": 1, "in-reply-to": 0, "comments": []}}
|
||||
{"source": [{"type": "entry", "author": {"type": "card", "name": "X Over Zero", "photo": "https://avatars.webmention.io/files.mastodon.social/8c21ac5d2866f05f9baafe04c35d8dc534aefc35339cbae5dabe8cea5b3971e0.jpg", "url": "https://pixelfed.social/Xover0"}, "url": "https://mastodon.social/@fundor333/115107935701051886#favorited-by-113920669604544758", "published": null, "wm-received": "2025-08-28T19:20:55Z", "wm-id": 1934252, "wm-source": "https://brid.gy/like/mastodon/@fundor333@mastodon.social/115107935701051886/113920669604544758", "wm-target": "https://fundor333.com/micro/2025/08/alchool-at-pydatave/", "wm-protocol": "webmention", "like-of": "https://fundor333.com/micro/2025/08/alchool-at-pydatave/", "wm-property": "like-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "DTR NewsLetter", "photo": "https://avatars.webmention.io/files.mastodon.social/86ca1902efd9d7b89998a494c9697378198fd7280a09a30607a824f63f53bd83.png", "url": "https://newsletter.digitaltearoom.com/"}, "url": "https://mastodon.social/@fundor333/115107935701051886#favorited-by-115056545320635643", "published": null, "wm-received": "2025-09-08T00:09:01Z", "wm-id": 1937678, "wm-source": "https://brid.gy/like/mastodon/@fundor333@mastodon.social/115107935701051886/115056545320635643", "wm-target": "https://fundor333.com/micro/2025/08/alchool-at-pydatave/", "wm-protocol": "webmention", "like-of": "https://fundor333.com/micro/2025/08/alchool-at-pydatave/", "wm-property": "like-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "Alessandra Bilardi", "photo": "https://avatars.webmention.io/files.mastodon.social/801d8929b4bc39e1ac2cecad73ad0bdc3bf3929415171071aa9c80b83fd400ca.jpg", "url": "https://mastodon.social/@bilardi"}, "url": "https://mastodon.social/@fundor333/115107935701051886#reblogged-by-115043678742919137", "published": null, "wm-received": "2025-08-30T13:18:23Z", "wm-id": 1935047, "wm-source": "https://brid.gy/repost/mastodon/@fundor333@mastodon.social/115107935701051886/115043678742919137", "wm-target": "https://fundor333.com/micro/2025/08/alchool-at-pydatave/", "wm-protocol": "webmention", "repost-of": "https://fundor333.com/micro/2025/08/alchool-at-pydatave/", "wm-property": "repost-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "Alessandra Bilardi", "photo": "https://avatars.webmention.io/files.mastodon.social/801d8929b4bc39e1ac2cecad73ad0bdc3bf3929415171071aa9c80b83fd400ca.jpg", "url": "https://mastodon.social/@bilardi"}, "url": "https://mastodon.social/@fundor333/115107935701051886#favorited-by-115043678742919137", "published": null, "wm-received": "2025-08-30T13:18:23Z", "wm-id": 1935046, "wm-source": "https://brid.gy/like/mastodon/@fundor333@mastodon.social/115107935701051886/115043678742919137", "wm-target": "https://fundor333.com/micro/2025/08/alchool-at-pydatave/", "wm-protocol": "webmention", "like-of": "https://fundor333.com/micro/2025/08/alchool-at-pydatave/", "wm-property": "like-of", "wm-private": false}], "stats": {"like-of": 3, "bookmark-of": 0, "mention-of": 0, "repost-of": 1, "in-reply-to": 0, "comments": []}}
|
||||
@@ -1 +1 @@
|
||||
{"source": [{"type": "entry", "author": {"type": "card", "name": "", "photo": "", "url": ""}, "url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3mdgrz4agzg23", "published": "2026-01-27T22:10:03+00:00", "wm-received": "2026-01-27T22:17:49Z", "wm-id": 1971154, "wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3mdgrz4agzg23%23bridgy-fed-create-2026-01-27T22:17:45.024598+00:00", "wm-target": "https://fundor333.com/micro/2026/01/making-htmx-stuffs/", "wm-protocol": "webmention", "content": {"html": "I am developing more and more with Htmx in my Django project and I love it. I have a lot less code and more clean code with Htmx than the traditional Jinja2 stuff.\n\n<a href=\"https://fundor333.com/micro/2026/01/making-htmx-stuffs/\">https://fundor333.com/micro/2026/01/making-htmx-stuffs/</a><a href=\"https://fundor333.com/micro/2026/01/making-htmx-stuffs/\">https://fundor333.com/micro/2026/01/making-htmx-stuffs/</a>\n\n<a href=\"https://bsky.app/search?q=%23dev\">#dev</a> <a href=\"https://bsky.app/search?q=%23htmx\">#htmx</a>", "text": "I am developing more and more with Htmx in my Django project and I love it. I have a lot less code and more clean code with Htmx than the traditional Jinja2 stuff.\n\nhttps://fundor333.com/micro/2026/01/making-htmx-stuffs/https://fundor333.com/micro/2026/01/making-htmx-stuffs/\n\n#dev #htmx"}, "mention-of": "https://fundor333.com/micro/2026/01/making-htmx-stuffs/", "wm-property": "mention-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "Yawar Amin", "photo": "https://avatars.webmention.io/cdn.bsky.app/23d9c7cd5ec7d2e2b411c3f12ab20cb7900aff8e3c60d4274f98e51b6fcf926a.jpg", "url": "https://bsky.app/profile/yawaramin.bsky.social"}, "url": "https://bsky.app/profile/fundor333.bsky.social/post/3mdgrz4agzg23#liked_by_did:plc:3umy3c4qeqeesh5rkrpohh7n", "published": null, "wm-received": "2026-01-29T16:31:42Z", "wm-id": 1971630, "wm-source": "https://brid.gy/like/bluesky/did:plc:u7piwonv4s27ysugjaa6im2q/at%253A%252F%252Fdid%253Aplc%253Au7piwonv4s27ysugjaa6im2q%252Fapp.bsky.feed.post%252F3mdgrz4agzg23/did%253Aplc%253A3umy3c4qeqeesh5rkrpohh7n", "wm-target": "https://fundor333.com/micro/2026/01/making-htmx-stuffs/", "wm-protocol": "webmention", "like-of": "https://fundor333.com/micro/2026/01/making-htmx-stuffs/", "wm-property": "like-of", "wm-private": false}], "stats": {"like-of": 1, "bookmark-of": 0, "mention-of": 1, "repost-of": 0, "in-reply-to": 0, "comments": [{"content": "I am developing more and more with Htmx in my Django project and I love it. I have a lot less code and more clean code with Htmx than the traditional Jinja2 stuff.\n\nhttps://fundor333.com/micro/2026/01/making-htmx-stuffs/https://fundor333.com/micro/2026/01/making-htmx-stuffs/\n\n#dev #htmx", "link": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3mdgrz4agzg23%23bridgy-fed-create-2026-01-27T22:17:45.024598+00:00", "author_name": "", "author_photo": "", "author_url": ""}]}}
|
||||
{"source": [{"type": "entry", "author": {"type": "card", "name": "Yawar Amin", "photo": "https://avatars.webmention.io/cdn.bsky.app/23d9c7cd5ec7d2e2b411c3f12ab20cb7900aff8e3c60d4274f98e51b6fcf926a.jpg", "url": "https://bsky.app/profile/yawaramin.bsky.social"}, "url": "https://bsky.app/profile/fundor333.bsky.social/post/3mdgrz4agzg23#liked_by_did:plc:3umy3c4qeqeesh5rkrpohh7n", "published": null, "wm-received": "2026-01-29T16:31:42Z", "wm-id": 1971630, "wm-source": "https://brid.gy/like/bluesky/did:plc:u7piwonv4s27ysugjaa6im2q/at%253A%252F%252Fdid%253Aplc%253Au7piwonv4s27ysugjaa6im2q%252Fapp.bsky.feed.post%252F3mdgrz4agzg23/did%253Aplc%253A3umy3c4qeqeesh5rkrpohh7n", "wm-target": "https://fundor333.com/micro/2026/01/making-htmx-stuffs/", "wm-protocol": "webmention", "like-of": "https://fundor333.com/micro/2026/01/making-htmx-stuffs/", "wm-property": "like-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "", "photo": "", "url": ""}, "url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3mdgrz4agzg23", "published": "2026-01-27T22:10:03+00:00", "wm-received": "2026-01-27T22:17:49Z", "wm-id": 1971154, "wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3mdgrz4agzg23%23bridgy-fed-create-2026-01-27T22:17:45.024598+00:00", "wm-target": "https://fundor333.com/micro/2026/01/making-htmx-stuffs/", "wm-protocol": "webmention", "content": {"html": "I am developing more and more with Htmx in my Django project and I love it. I have a lot less code and more clean code with Htmx than the traditional Jinja2 stuff.\n\n<a href=\"https://fundor333.com/micro/2026/01/making-htmx-stuffs/\">https://fundor333.com/micro/2026/01/making-htmx-stuffs/</a><a href=\"https://fundor333.com/micro/2026/01/making-htmx-stuffs/\">https://fundor333.com/micro/2026/01/making-htmx-stuffs/</a>\n\n<a href=\"https://bsky.app/search?q=%23dev\">#dev</a> <a href=\"https://bsky.app/search?q=%23htmx\">#htmx</a>", "text": "I am developing more and more with Htmx in my Django project and I love it. I have a lot less code and more clean code with Htmx than the traditional Jinja2 stuff.\n\nhttps://fundor333.com/micro/2026/01/making-htmx-stuffs/https://fundor333.com/micro/2026/01/making-htmx-stuffs/\n\n#dev #htmx"}, "mention-of": "https://fundor333.com/micro/2026/01/making-htmx-stuffs/", "wm-property": "mention-of", "wm-private": false}], "stats": {"like-of": 1, "bookmark-of": 0, "mention-of": 1, "repost-of": 0, "in-reply-to": 0, "comments": [{"content": "I am developing more and more with Htmx in my Django project and I love it. I have a lot less code and more clean code with Htmx than the traditional Jinja2 stuff.\n\nhttps://fundor333.com/micro/2026/01/making-htmx-stuffs/https://fundor333.com/micro/2026/01/making-htmx-stuffs/\n\n#dev #htmx", "link": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3mdgrz4agzg23%23bridgy-fed-create-2026-01-27T22:17:45.024598+00:00", "author_name": "", "author_photo": "", "author_url": ""}]}}
|
||||
@@ -1 +1 @@
|
||||
{"source": [{"type": "entry", "author": {"type": "card", "name": "Debby \u202c????????:disability_flag:", "photo": "https://avatars.webmention.io/files.mastodon.social/3601f396b1c2c85fc7364338e46ded424fb3448c5e94f28e9bd434a12b706a29.png", "url": "https://hear-me.social/@debby"}, "url": "https://mastodon.social/@fundor333/115141868712801218#favorited-by-113396139377322566", "published": null, "wm-received": "2025-09-13T14:00:48Z", "wm-id": 1939536, "wm-source": "https://brid.gy/like/mastodon/@fundor333@mastodon.social/115141868712801218/113396139377322566", "wm-target": "https://fundor333.com/post/2025/generate-dataframe-summaries-with-python/", "wm-protocol": "webmention", "like-of": "https://fundor333.com/post/2025/generate-dataframe-summaries-with-python/", "wm-property": "like-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "AI Channel", "photo": "https://avatars.webmention.io/files.mastodon.social/53dcc6ece2e0abd79a8aa637b9109d33bab0fa02e6536db85fd6c18ebc662722.png", "url": "https://newsmast.community/@ai"}, "url": "https://mastodon.social/@fundor333/115141868712801218#reblogged-by-111653134040839943", "published": null, "wm-received": "2025-09-03T18:55:31Z", "wm-id": 1936074, "wm-source": "https://brid.gy/repost/mastodon/@fundor333@mastodon.social/115141868712801218/111653134040839943", "wm-target": "https://fundor333.com/post/2025/generate-dataframe-summaries-with-python/", "wm-protocol": "webmention", "repost-of": "https://fundor333.com/post/2025/generate-dataframe-summaries-with-python/", "wm-property": "repost-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "Social Sciences Channel", "photo": "https://avatars.webmention.io/files.mastodon.social/53dcc6ece2e0abd79a8aa637b9109d33bab0fa02e6536db85fd6c18ebc662722.png", "url": "https://newsmast.community/@socialsciences"}, "url": "https://mastodon.social/@fundor333/115141868712801218#reblogged-by-111811737765749325", "published": null, "wm-received": "2025-09-03T18:55:59Z", "wm-id": 1936075, "wm-source": "https://brid.gy/repost/mastodon/@fundor333@mastodon.social/115141868712801218/111811737765749325", "wm-target": "https://fundor333.com/post/2025/generate-dataframe-summaries-with-python/", "wm-protocol": "webmention", "repost-of": "https://fundor333.com/post/2025/generate-dataframe-summaries-with-python/", "wm-property": "repost-of", "wm-private": false}], "stats": {"like-of": 1, "bookmark-of": 0, "mention-of": 0, "repost-of": 2, "in-reply-to": 0, "comments": []}}
|
||||
{"source": [{"type": "entry", "author": {"type": "card", "name": "Social Sciences Channel", "photo": "https://avatars.webmention.io/files.mastodon.social/53dcc6ece2e0abd79a8aa637b9109d33bab0fa02e6536db85fd6c18ebc662722.png", "url": "https://newsmast.community/@socialsciences"}, "url": "https://mastodon.social/@fundor333/115141868712801218#reblogged-by-111811737765749325", "published": null, "wm-received": "2025-09-03T18:55:59Z", "wm-id": 1936075, "wm-source": "https://brid.gy/repost/mastodon/@fundor333@mastodon.social/115141868712801218/111811737765749325", "wm-target": "https://fundor333.com/post/2025/generate-dataframe-summaries-with-python/", "wm-protocol": "webmention", "repost-of": "https://fundor333.com/post/2025/generate-dataframe-summaries-with-python/", "wm-property": "repost-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "AI Channel", "photo": "https://avatars.webmention.io/files.mastodon.social/53dcc6ece2e0abd79a8aa637b9109d33bab0fa02e6536db85fd6c18ebc662722.png", "url": "https://newsmast.community/@ai"}, "url": "https://mastodon.social/@fundor333/115141868712801218#reblogged-by-111653134040839943", "published": null, "wm-received": "2025-09-03T18:55:31Z", "wm-id": 1936074, "wm-source": "https://brid.gy/repost/mastodon/@fundor333@mastodon.social/115141868712801218/111653134040839943", "wm-target": "https://fundor333.com/post/2025/generate-dataframe-summaries-with-python/", "wm-protocol": "webmention", "repost-of": "https://fundor333.com/post/2025/generate-dataframe-summaries-with-python/", "wm-property": "repost-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "Debby \u202c????????:disability_flag:", "photo": "https://avatars.webmention.io/files.mastodon.social/3601f396b1c2c85fc7364338e46ded424fb3448c5e94f28e9bd434a12b706a29.png", "url": "https://hear-me.social/@debby"}, "url": "https://mastodon.social/@fundor333/115141868712801218#favorited-by-113396139377322566", "published": null, "wm-received": "2025-09-13T14:00:48Z", "wm-id": 1939536, "wm-source": "https://brid.gy/like/mastodon/@fundor333@mastodon.social/115141868712801218/113396139377322566", "wm-target": "https://fundor333.com/post/2025/generate-dataframe-summaries-with-python/", "wm-protocol": "webmention", "like-of": "https://fundor333.com/post/2025/generate-dataframe-summaries-with-python/", "wm-property": "like-of", "wm-private": false}], "stats": {"like-of": 1, "bookmark-of": 0, "mention-of": 0, "repost-of": 2, "in-reply-to": 0, "comments": []}}
|
||||
@@ -1 +1 @@
|
||||
{"source": [{"type": "entry", "author": {"type": "card", "name": "fundor333", "photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "url": "https://bsky.app/profile/fundor333.bsky.social"}, "url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3luzjg34qpt2h", "published": "2025-07-28T11:41:32+00:00", "wm-received": "2025-07-28T11:46:54Z", "wm-id": 1926815, "wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3luzjg34qpt2h%23bridgy-fed-create", "wm-target": "https://fundor333.com/micro/2025/07/ghosttly/", "wm-protocol": "webmention", "content": {"html": "And reworking my dev stack with Ghostty and Catppuccin\u2026 And love the matcha color palet\n\n<a href=\"https://bsky.app/search?q=%23terminal\">#terminal</a> <a href=\"https://bsky.app/search?q=%23ghostty\">#ghostty</a> <a href=\"https://bsky.app/search?q=%23terminalporn\">#terminalporn</a> <a href=\"https://bsky.app/search?q=%23catppuccin\">#catppuccin</a> (<a href=\"https://fundor333.com/micro/2025/07/ghosttly/\">https://fundor333.com/micro/2025/07/ghosttly/</a>)", "text": "And reworking my dev stack with Ghostty and Catppuccin\u2026 And love the matcha color palet\n\n#terminal #ghostty #terminalporn #catppuccin (https://fundor333.com/micro/2025/07/ghosttly/)"}, "mention-of": "https://fundor333.com/micro/2025/07/ghosttly/", "wm-property": "mention-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "Catppuccin", "photo": "https://avatars.webmention.io/cdn.bsky.app/eb957795d07cb70d64f9f76d634e55050f6866efe0d13305dea717c544cb21c7.jpg", "url": "https://bsky.app/profile/catppuccin.com"}, "url": "https://bsky.app/profile/fundor333.bsky.social/post/3luzjg34qpt2h#liked_by_did:plc:xcdd7jjg2puf7al6qdxakpt4", "published": null, "wm-received": "2025-07-29T21:57:51Z", "wm-id": 1927165, "wm-source": "https://brid.gy/like/bluesky/did:plc:u7piwonv4s27ysugjaa6im2q/at%253A%252F%252Fdid%253Aplc%253Au7piwonv4s27ysugjaa6im2q%252Fapp.bsky.feed.post%252F3luzjg34qpt2h/did%253Aplc%253Axcdd7jjg2puf7al6qdxakpt4", "wm-target": "https://fundor333.com/micro/2025/07/ghosttly/", "wm-protocol": "webmention", "like-of": "https://fundor333.com/micro/2025/07/ghosttly/", "wm-property": "like-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "Andrea Grandi", "photo": "https://avatars.webmention.io/cdn.bsky.app/a40d5b3be04a5a2addb568ceeeb856efba8dc1b20673a37953ef402236e42f65.jpg", "url": "https://bsky.app/profile/andreagrandi.it"}, "url": "https://bsky.app/profile/andreagrandi.it/post/3luznu3xfoc2k", "published": "2025-07-28T13:06:02+00:00", "wm-received": "2025-07-28T14:20:20Z", "wm-id": 1926847, "wm-source": "https://brid.gy/comment/bluesky/did:plc:u7piwonv4s27ysugjaa6im2q/at%253A%252F%252Fdid%253Aplc%253Au7piwonv4s27ysugjaa6im2q%252Fapp.bsky.feed.post%252F3luzjg34qpt2h/at%253A%252F%252Fdid%253Aplc%253Am3zj5xhh3jmmh3t2xt223x63%252Fapp.bsky.feed.post%252F3luznu3xfoc2k", "wm-target": "https://fundor333.com/micro/2025/07/ghosttly/", "wm-protocol": "webmention", "content": {"text": "mettilo almeno uno screenshot ????"}, "in-reply-to": "https://fundor333.com/micro/2025/07/ghosttly/", "wm-property": "in-reply-to", "wm-private": false}], "stats": {"like-of": 1, "bookmark-of": 0, "mention-of": 1, "repost-of": 0, "in-reply-to": 1, "comments": [{"content": "And reworking my dev stack with Ghostty and Catppuccin\u2026 And love the matcha color palet\n\n#terminal #ghostty #terminalporn #catppuccin (https://fundor333.com/micro/2025/07/ghosttly/)", "link": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3luzjg34qpt2h%23bridgy-fed-create", "author_name": "fundor333", "author_photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "author_url": "https://bsky.app/profile/fundor333.bsky.social"}, {"content": "mettilo almeno uno screenshot ????", "link": "https://brid.gy/comment/bluesky/did:plc:u7piwonv4s27ysugjaa6im2q/at%253A%252F%252Fdid%253Aplc%253Au7piwonv4s27ysugjaa6im2q%252Fapp.bsky.feed.post%252F3luzjg34qpt2h/at%253A%252F%252Fdid%253Aplc%253Am3zj5xhh3jmmh3t2xt223x63%252Fapp.bsky.feed.post%252F3luznu3xfoc2k", "author_name": "Andrea Grandi", "author_photo": "https://avatars.webmention.io/cdn.bsky.app/a40d5b3be04a5a2addb568ceeeb856efba8dc1b20673a37953ef402236e42f65.jpg", "author_url": "https://bsky.app/profile/andreagrandi.it"}]}}
|
||||
{"source": [{"type": "entry", "author": {"type": "card", "name": "Catppuccin", "photo": "https://avatars.webmention.io/cdn.bsky.app/eb957795d07cb70d64f9f76d634e55050f6866efe0d13305dea717c544cb21c7.jpg", "url": "https://bsky.app/profile/catppuccin.com"}, "url": "https://bsky.app/profile/fundor333.bsky.social/post/3luzjg34qpt2h#liked_by_did:plc:xcdd7jjg2puf7al6qdxakpt4", "published": null, "wm-received": "2025-07-29T21:57:51Z", "wm-id": 1927165, "wm-source": "https://brid.gy/like/bluesky/did:plc:u7piwonv4s27ysugjaa6im2q/at%253A%252F%252Fdid%253Aplc%253Au7piwonv4s27ysugjaa6im2q%252Fapp.bsky.feed.post%252F3luzjg34qpt2h/did%253Aplc%253Axcdd7jjg2puf7al6qdxakpt4", "wm-target": "https://fundor333.com/micro/2025/07/ghosttly/", "wm-protocol": "webmention", "like-of": "https://fundor333.com/micro/2025/07/ghosttly/", "wm-property": "like-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "fundor333", "photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "url": "https://bsky.app/profile/fundor333.bsky.social"}, "url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3luzjg34qpt2h", "published": "2025-07-28T11:41:32+00:00", "wm-received": "2025-07-28T11:46:54Z", "wm-id": 1926815, "wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3luzjg34qpt2h%23bridgy-fed-create", "wm-target": "https://fundor333.com/micro/2025/07/ghosttly/", "wm-protocol": "webmention", "content": {"html": "And reworking my dev stack with Ghostty and Catppuccin\u2026 And love the matcha color palet\n\n<a href=\"https://bsky.app/search?q=%23terminal\">#terminal</a> <a href=\"https://bsky.app/search?q=%23ghostty\">#ghostty</a> <a href=\"https://bsky.app/search?q=%23terminalporn\">#terminalporn</a> <a href=\"https://bsky.app/search?q=%23catppuccin\">#catppuccin</a> (<a href=\"https://fundor333.com/micro/2025/07/ghosttly/\">https://fundor333.com/micro/2025/07/ghosttly/</a>)", "text": "And reworking my dev stack with Ghostty and Catppuccin\u2026 And love the matcha color palet\n\n#terminal #ghostty #terminalporn #catppuccin (https://fundor333.com/micro/2025/07/ghosttly/)"}, "mention-of": "https://fundor333.com/micro/2025/07/ghosttly/", "wm-property": "mention-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "Andrea Grandi", "photo": "https://avatars.webmention.io/cdn.bsky.app/a40d5b3be04a5a2addb568ceeeb856efba8dc1b20673a37953ef402236e42f65.jpg", "url": "https://bsky.app/profile/andreagrandi.it"}, "url": "https://bsky.app/profile/andreagrandi.it/post/3luznu3xfoc2k", "published": "2025-07-28T13:06:02+00:00", "wm-received": "2025-07-28T14:20:20Z", "wm-id": 1926847, "wm-source": "https://brid.gy/comment/bluesky/did:plc:u7piwonv4s27ysugjaa6im2q/at%253A%252F%252Fdid%253Aplc%253Au7piwonv4s27ysugjaa6im2q%252Fapp.bsky.feed.post%252F3luzjg34qpt2h/at%253A%252F%252Fdid%253Aplc%253Am3zj5xhh3jmmh3t2xt223x63%252Fapp.bsky.feed.post%252F3luznu3xfoc2k", "wm-target": "https://fundor333.com/micro/2025/07/ghosttly/", "wm-protocol": "webmention", "content": {"text": "mettilo almeno uno screenshot ????"}, "in-reply-to": "https://fundor333.com/micro/2025/07/ghosttly/", "wm-property": "in-reply-to", "wm-private": false}], "stats": {"like-of": 1, "bookmark-of": 0, "mention-of": 1, "repost-of": 0, "in-reply-to": 1, "comments": [{"content": "And reworking my dev stack with Ghostty and Catppuccin\u2026 And love the matcha color palet\n\n#terminal #ghostty #terminalporn #catppuccin (https://fundor333.com/micro/2025/07/ghosttly/)", "link": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3luzjg34qpt2h%23bridgy-fed-create", "author_name": "fundor333", "author_photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "author_url": "https://bsky.app/profile/fundor333.bsky.social"}, {"content": "mettilo almeno uno screenshot ????", "link": "https://brid.gy/comment/bluesky/did:plc:u7piwonv4s27ysugjaa6im2q/at%253A%252F%252Fdid%253Aplc%253Au7piwonv4s27ysugjaa6im2q%252Fapp.bsky.feed.post%252F3luzjg34qpt2h/at%253A%252F%252Fdid%253Aplc%253Am3zj5xhh3jmmh3t2xt223x63%252Fapp.bsky.feed.post%252F3luznu3xfoc2k", "author_name": "Andrea Grandi", "author_photo": "https://avatars.webmention.io/cdn.bsky.app/a40d5b3be04a5a2addb568ceeeb856efba8dc1b20673a37953ef402236e42f65.jpg", "author_url": "https://bsky.app/profile/andreagrandi.it"}]}}
|
||||
@@ -1 +1 @@
|
||||
{"source": [{"type": "entry", "author": {"type": "card", "name": "fundor333", "photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "url": "https://bsky.app/profile/fundor333.bsky.social"}, "url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3lsk377cdff2c", "published": "2025-06-26T21:26:43+00:00", "wm-received": "2025-06-26T21:33:19Z", "wm-id": 1920861, "wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3lsk377cdff2c%23bridgy-fed-create", "wm-target": "https://fundor333.com/micro/2025/06/why-instagram/", "wm-protocol": "webmention", "content": {"html": "E questa \u00e9 la dimostrazione che Instagram da pi\u00fa peso ai real che alle immagini\n\nAnd this is the proof that Instagram like more real than img\n\n<a href=\"https://bsky.app/search?q=%23Instagram\">#Instagram</a> (<a href=\"https://fundor333.com/micro/2025/06/why-instagram/\">https://fundor333.com/micro/2025/06/why-instagram/</a>)", "text": "E questa \u00e9 la dimostrazione che Instagram da pi\u00fa peso ai real che alle immagini\n\nAnd this is the proof that Instagram like more real than img\n\n#Instagram (https://fundor333.com/micro/2025/06/why-instagram/)"}, "mention-of": "https://fundor333.com/micro/2025/06/why-instagram/", "wm-property": "mention-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "Social Media Channel", "photo": "https://avatars.webmention.io/files.mastodon.social/53dcc6ece2e0abd79a8aa637b9109d33bab0fa02e6536db85fd6c18ebc662722.png", "url": "https://newsmast.community/@socialmedia"}, "url": "https://mastodon.social/@fundor333/114751800161413134#reblogged-by-111653185420926112", "published": null, "wm-received": "2025-06-27T14:00:30Z", "wm-id": 1921002, "wm-source": "https://brid.gy/repost/mastodon/@fundor333@mastodon.social/114751800161413134/111653185420926112", "wm-target": "https://fundor333.com/micro/2025/06/why-instagram/", "wm-protocol": "webmention", "repost-of": "https://fundor333.com/micro/2025/06/why-instagram/", "wm-property": "repost-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "Media News", "photo": "https://avatars.webmention.io/cdn.bsky.app/95c16e8600ec3a60ba197b0e9aad24bf7bff1ff8511397360cda02d4f07d1b2f.jpg", "url": "https://bsky.app/profile/medianews-rt.bsky.social"}, "url": "https://bsky.app/profile/fundor333.bsky.social/post/3lsk377cdff2c#reposted_by_did:plc:pltcigp6ksv4k4nzprn3xa5q", "published": null, "wm-received": "2025-07-16T22:04:02Z", "wm-id": 1924915, "wm-source": "https://brid.gy/repost/bluesky/did:plc:u7piwonv4s27ysugjaa6im2q/at%253A%252F%252Fdid%253Aplc%253Au7piwonv4s27ysugjaa6im2q%252Fapp.bsky.feed.post%252F3lsk377cdff2c/did%253Aplc%253Apltcigp6ksv4k4nzprn3xa5q", "wm-target": "https://fundor333.com/micro/2025/06/why-instagram/", "wm-protocol": "webmention", "repost-of": "https://fundor333.com/micro/2025/06/why-instagram/", "wm-property": "repost-of", "wm-private": false}], "stats": {"like-of": 0, "bookmark-of": 0, "mention-of": 1, "repost-of": 2, "in-reply-to": 0, "comments": [{"content": "E questa \u00e9 la dimostrazione che Instagram da pi\u00fa peso ai real che alle immagini\n\nAnd this is the proof that Instagram like more real than img\n\n#Instagram (https://fundor333.com/micro/2025/06/why-instagram/)", "link": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3lsk377cdff2c%23bridgy-fed-create", "author_name": "fundor333", "author_photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "author_url": "https://bsky.app/profile/fundor333.bsky.social"}]}}
|
||||
{"source": [{"type": "entry", "author": {"type": "card", "name": "Media News", "photo": "https://avatars.webmention.io/cdn.bsky.app/95c16e8600ec3a60ba197b0e9aad24bf7bff1ff8511397360cda02d4f07d1b2f.jpg", "url": "https://bsky.app/profile/medianews-rt.bsky.social"}, "url": "https://bsky.app/profile/fundor333.bsky.social/post/3lsk377cdff2c#reposted_by_did:plc:pltcigp6ksv4k4nzprn3xa5q", "published": null, "wm-received": "2025-07-16T22:04:02Z", "wm-id": 1924915, "wm-source": "https://brid.gy/repost/bluesky/did:plc:u7piwonv4s27ysugjaa6im2q/at%253A%252F%252Fdid%253Aplc%253Au7piwonv4s27ysugjaa6im2q%252Fapp.bsky.feed.post%252F3lsk377cdff2c/did%253Aplc%253Apltcigp6ksv4k4nzprn3xa5q", "wm-target": "https://fundor333.com/micro/2025/06/why-instagram/", "wm-protocol": "webmention", "repost-of": "https://fundor333.com/micro/2025/06/why-instagram/", "wm-property": "repost-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "Social Media Channel", "photo": "https://avatars.webmention.io/files.mastodon.social/53dcc6ece2e0abd79a8aa637b9109d33bab0fa02e6536db85fd6c18ebc662722.png", "url": "https://newsmast.community/@socialmedia"}, "url": "https://mastodon.social/@fundor333/114751800161413134#reblogged-by-111653185420926112", "published": null, "wm-received": "2025-06-27T14:00:30Z", "wm-id": 1921002, "wm-source": "https://brid.gy/repost/mastodon/@fundor333@mastodon.social/114751800161413134/111653185420926112", "wm-target": "https://fundor333.com/micro/2025/06/why-instagram/", "wm-protocol": "webmention", "repost-of": "https://fundor333.com/micro/2025/06/why-instagram/", "wm-property": "repost-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "fundor333", "photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "url": "https://bsky.app/profile/fundor333.bsky.social"}, "url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3lsk377cdff2c", "published": "2025-06-26T21:26:43+00:00", "wm-received": "2025-06-26T21:33:19Z", "wm-id": 1920861, "wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3lsk377cdff2c%23bridgy-fed-create", "wm-target": "https://fundor333.com/micro/2025/06/why-instagram/", "wm-protocol": "webmention", "content": {"html": "E questa \u00e9 la dimostrazione che Instagram da pi\u00fa peso ai real che alle immagini\n\nAnd this is the proof that Instagram like more real than img\n\n<a href=\"https://bsky.app/search?q=%23Instagram\">#Instagram</a> (<a href=\"https://fundor333.com/micro/2025/06/why-instagram/\">https://fundor333.com/micro/2025/06/why-instagram/</a>)", "text": "E questa \u00e9 la dimostrazione che Instagram da pi\u00fa peso ai real che alle immagini\n\nAnd this is the proof that Instagram like more real than img\n\n#Instagram (https://fundor333.com/micro/2025/06/why-instagram/)"}, "mention-of": "https://fundor333.com/micro/2025/06/why-instagram/", "wm-property": "mention-of", "wm-private": false}], "stats": {"like-of": 0, "bookmark-of": 0, "mention-of": 1, "repost-of": 2, "in-reply-to": 0, "comments": [{"content": "E questa \u00e9 la dimostrazione che Instagram da pi\u00fa peso ai real che alle immagini\n\nAnd this is the proof that Instagram like more real than img\n\n#Instagram (https://fundor333.com/micro/2025/06/why-instagram/)", "link": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3lsk377cdff2c%23bridgy-fed-create", "author_name": "fundor333", "author_photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "author_url": "https://bsky.app/profile/fundor333.bsky.social"}]}}
|
||||
@@ -1 +1 @@
|
||||
{"source": [{"type": "entry", "author": {"type": "card", "name": "#dnd", "photo": "https://avatars.webmention.io/files.mastodon.social/389c3751d19baff8d51a7ee152c59d41d766d1292ce942c374a5b854c1636227.png", "url": "https://hashtag.place/activitypub/account/dnd"}, "url": "https://mastodon.social/@fundor333/114627452417111937#reblogged-by-111936477065590820", "published": null, "wm-received": "2025-06-24T05:29:39Z", "wm-id": 1920172, "wm-source": "https://brid.gy/repost/mastodon/@fundor333@mastodon.social/114627452417111937/111936477065590820", "wm-target": "https://fundor333.com/micro/2025/06/dnd-colorcoding/", "wm-protocol": "webmention", "repost-of": "https://fundor333.com/micro/2025/06/dnd-colorcoding/", "wm-property": "repost-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "fundor333", "photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "url": "https://bsky.app/profile/fundor333.bsky.social"}, "url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3lroqna6rpn2o", "published": "2025-06-04T22:08:37+00:00", "wm-received": "2025-06-16T00:41:02Z", "wm-id": 1918850, "wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3lroqna6rpn2o%23bridgy-fed-create", "wm-target": "https://fundor333.com/micro/2025/06/dnd-colorcoding/", "wm-protocol": "webmention", "content": {"html": "And now I am colorcoding in the middle of the night the note from DnD\u2026 This is my new fun time!\n\n<a href=\"https://bsky.app/search?q=%23dnd\">#dnd</a> <a href=\"https://bsky.app/search?q=%23note\">#note</a> <a href=\"https://bsky.app/search?q=%23colorcoding\">#colorcoding</a> (<a href=\"https://fundor333.com/micro/2025/06/dnd-colorcoding/\">https://fundor333.com/micro/2025/06/dnd-colorcoding/</a>)", "text": "And now I am colorcoding in the middle of the night the note from DnD\u2026 This is my new fun time!\n\n#dnd #note #colorcoding (https://fundor333.com/micro/2025/06/dnd-colorcoding/)"}, "mention-of": "https://fundor333.com/micro/2025/06/dnd-colorcoding/", "wm-property": "mention-of", "wm-private": false}], "stats": {"like-of": 0, "bookmark-of": 0, "mention-of": 1, "repost-of": 1, "in-reply-to": 0, "comments": [{"content": "And now I am colorcoding in the middle of the night the note from DnD\u2026 This is my new fun time!\n\n#dnd #note #colorcoding (https://fundor333.com/micro/2025/06/dnd-colorcoding/)", "link": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3lroqna6rpn2o%23bridgy-fed-create", "author_name": "fundor333", "author_photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "author_url": "https://bsky.app/profile/fundor333.bsky.social"}]}}
|
||||
{"source": [{"type": "entry", "author": {"type": "card", "name": "fundor333", "photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "url": "https://bsky.app/profile/fundor333.bsky.social"}, "url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3lroqna6rpn2o", "published": "2025-06-04T22:08:37+00:00", "wm-received": "2025-06-16T00:41:02Z", "wm-id": 1918850, "wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3lroqna6rpn2o%23bridgy-fed-create", "wm-target": "https://fundor333.com/micro/2025/06/dnd-colorcoding/", "wm-protocol": "webmention", "content": {"html": "And now I am colorcoding in the middle of the night the note from DnD\u2026 This is my new fun time!\n\n<a href=\"https://bsky.app/search?q=%23dnd\">#dnd</a> <a href=\"https://bsky.app/search?q=%23note\">#note</a> <a href=\"https://bsky.app/search?q=%23colorcoding\">#colorcoding</a> (<a href=\"https://fundor333.com/micro/2025/06/dnd-colorcoding/\">https://fundor333.com/micro/2025/06/dnd-colorcoding/</a>)", "text": "And now I am colorcoding in the middle of the night the note from DnD\u2026 This is my new fun time!\n\n#dnd #note #colorcoding (https://fundor333.com/micro/2025/06/dnd-colorcoding/)"}, "mention-of": "https://fundor333.com/micro/2025/06/dnd-colorcoding/", "wm-property": "mention-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "#dnd", "photo": "https://avatars.webmention.io/files.mastodon.social/389c3751d19baff8d51a7ee152c59d41d766d1292ce942c374a5b854c1636227.png", "url": "https://hashtag.place/activitypub/account/dnd"}, "url": "https://mastodon.social/@fundor333/114627452417111937#reblogged-by-111936477065590820", "published": null, "wm-received": "2025-06-24T05:29:39Z", "wm-id": 1920172, "wm-source": "https://brid.gy/repost/mastodon/@fundor333@mastodon.social/114627452417111937/111936477065590820", "wm-target": "https://fundor333.com/micro/2025/06/dnd-colorcoding/", "wm-protocol": "webmention", "repost-of": "https://fundor333.com/micro/2025/06/dnd-colorcoding/", "wm-property": "repost-of", "wm-private": false}], "stats": {"like-of": 0, "bookmark-of": 0, "mention-of": 1, "repost-of": 1, "in-reply-to": 0, "comments": [{"content": "And now I am colorcoding in the middle of the night the note from DnD\u2026 This is my new fun time!\n\n#dnd #note #colorcoding (https://fundor333.com/micro/2025/06/dnd-colorcoding/)", "link": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3lroqna6rpn2o%23bridgy-fed-create", "author_name": "fundor333", "author_photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "author_url": "https://bsky.app/profile/fundor333.bsky.social"}]}}
|
||||
@@ -1 +1 @@
|
||||
{"source": [{"type": "entry", "author": {"type": "card", "name": "Gaming News", "photo": "https://avatars.webmention.io/cdn.bsky.app/d99334fbc01da03f5b5be4e8082bec3bd98e2c34d253a278a05f3636465050e7.jpg", "url": "https://bsky.app/profile/gamingnews-rt.bsky.social"}, "url": "https://bsky.app/profile/fundor333.bsky.social/post/3lybsyawasc24#reposted_by_did:plc:eqvvek25ndbzzz67mkreuqrt", "published": null, "wm-received": "2025-09-08T22:48:30Z", "wm-id": 1937818, "wm-source": "https://brid.gy/repost/bluesky/did:plc:u7piwonv4s27ysugjaa6im2q/at%253A%252F%252Fdid%253Aplc%253Au7piwonv4s27ysugjaa6im2q%252Fapp.bsky.feed.post%252F3lybsyawasc24/did%253Aplc%253Aeqvvek25ndbzzz67mkreuqrt", "wm-target": "https://fundor333.com/micro/2025/09/more-love-silksong/", "wm-protocol": "webmention", "repost-of": "https://fundor333.com/micro/2025/09/more-love-silksong/", "wm-property": "repost-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "Radiant Black", "photo": "https://avatars.webmention.io/files.mastodon.social/d3c3246410f668cf40903de22344bfb5b1ca51f9d3b3982bbdf66c47231d11d1.jpg", "url": "https://pixelfed.social/RadiantBlack"}, "url": "https://mastodon.social/@fundor333/115165553342779913#favorited-by-107957263218691901", "published": null, "wm-received": "2025-09-13T11:07:18Z", "wm-id": 1939369, "wm-source": "https://brid.gy/like/mastodon/@fundor333@mastodon.social/115165553342779913/107957263218691901", "wm-target": "https://fundor333.com/micro/2025/09/more-love-silksong/", "wm-protocol": "webmention", "like-of": "https://fundor333.com/micro/2025/09/more-love-silksong/", "wm-property": "like-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "Go4Know", "photo": "https://avatars.webmention.io/cdn.bsky.app/91f9c32145f050f22e78dd8067775fa5d041b1bd2de4dae6d27288011950341e.jpg", "url": "https://bsky.app/profile/go4know.com"}, "url": "https://bsky.app/profile/fundor333.bsky.social/post/3lybsyawasc24#liked_by_did:plc:ydqzin7kctnatbefaxcp6f7s", "published": null, "wm-received": "2025-11-08T09:53:05Z", "wm-id": 1952887, "wm-source": "https://brid.gy/like/bluesky/did:plc:u7piwonv4s27ysugjaa6im2q/at%253A%252F%252Fdid%253Aplc%253Au7piwonv4s27ysugjaa6im2q%252Fapp.bsky.feed.post%252F3lybsyawasc24/did%253Aplc%253Aydqzin7kctnatbefaxcp6f7s", "wm-target": "https://fundor333.com/micro/2025/09/more-love-silksong/", "wm-protocol": "webmention", "like-of": "https://fundor333.com/micro/2025/09/more-love-silksong/", "wm-property": "like-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "DTR NewsLetter", "photo": "https://avatars.webmention.io/files.mastodon.social/86ca1902efd9d7b89998a494c9697378198fd7280a09a30607a824f63f53bd83.png", "url": "https://newsletter.digitaltearoom.com/"}, "url": "https://mastodon.social/@fundor333/115165553342779913#favorited-by-115056545320635643", "published": null, "wm-received": "2025-09-08T00:08:58Z", "wm-id": 1937677, "wm-source": "https://brid.gy/like/mastodon/@fundor333@mastodon.social/115165553342779913/115056545320635643", "wm-target": "https://fundor333.com/micro/2025/09/more-love-silksong/", "wm-protocol": "webmention", "like-of": "https://fundor333.com/micro/2025/09/more-love-silksong/", "wm-property": "like-of", "wm-private": false}], "stats": {"like-of": 3, "bookmark-of": 0, "mention-of": 0, "repost-of": 1, "in-reply-to": 0, "comments": []}}
|
||||
{"source": [{"type": "entry", "author": {"type": "card", "name": "Go4Know", "photo": "https://avatars.webmention.io/cdn.bsky.app/91f9c32145f050f22e78dd8067775fa5d041b1bd2de4dae6d27288011950341e.jpg", "url": "https://bsky.app/profile/go4know.com"}, "url": "https://bsky.app/profile/fundor333.bsky.social/post/3lybsyawasc24#liked_by_did:plc:ydqzin7kctnatbefaxcp6f7s", "published": null, "wm-received": "2025-11-08T09:53:05Z", "wm-id": 1952887, "wm-source": "https://brid.gy/like/bluesky/did:plc:u7piwonv4s27ysugjaa6im2q/at%253A%252F%252Fdid%253Aplc%253Au7piwonv4s27ysugjaa6im2q%252Fapp.bsky.feed.post%252F3lybsyawasc24/did%253Aplc%253Aydqzin7kctnatbefaxcp6f7s", "wm-target": "https://fundor333.com/micro/2025/09/more-love-silksong/", "wm-protocol": "webmention", "like-of": "https://fundor333.com/micro/2025/09/more-love-silksong/", "wm-property": "like-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "Radiant Black", "photo": "https://avatars.webmention.io/files.mastodon.social/d3c3246410f668cf40903de22344bfb5b1ca51f9d3b3982bbdf66c47231d11d1.jpg", "url": "https://pixelfed.social/RadiantBlack"}, "url": "https://mastodon.social/@fundor333/115165553342779913#favorited-by-107957263218691901", "published": null, "wm-received": "2025-09-13T11:07:18Z", "wm-id": 1939369, "wm-source": "https://brid.gy/like/mastodon/@fundor333@mastodon.social/115165553342779913/107957263218691901", "wm-target": "https://fundor333.com/micro/2025/09/more-love-silksong/", "wm-protocol": "webmention", "like-of": "https://fundor333.com/micro/2025/09/more-love-silksong/", "wm-property": "like-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "DTR NewsLetter", "photo": "https://avatars.webmention.io/files.mastodon.social/86ca1902efd9d7b89998a494c9697378198fd7280a09a30607a824f63f53bd83.png", "url": "https://newsletter.digitaltearoom.com/"}, "url": "https://mastodon.social/@fundor333/115165553342779913#favorited-by-115056545320635643", "published": null, "wm-received": "2025-09-08T00:08:58Z", "wm-id": 1937677, "wm-source": "https://brid.gy/like/mastodon/@fundor333@mastodon.social/115165553342779913/115056545320635643", "wm-target": "https://fundor333.com/micro/2025/09/more-love-silksong/", "wm-protocol": "webmention", "like-of": "https://fundor333.com/micro/2025/09/more-love-silksong/", "wm-property": "like-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "Gaming News", "photo": "https://avatars.webmention.io/cdn.bsky.app/d99334fbc01da03f5b5be4e8082bec3bd98e2c34d253a278a05f3636465050e7.jpg", "url": "https://bsky.app/profile/gamingnews-rt.bsky.social"}, "url": "https://bsky.app/profile/fundor333.bsky.social/post/3lybsyawasc24#reposted_by_did:plc:eqvvek25ndbzzz67mkreuqrt", "published": null, "wm-received": "2025-09-08T22:48:30Z", "wm-id": 1937818, "wm-source": "https://brid.gy/repost/bluesky/did:plc:u7piwonv4s27ysugjaa6im2q/at%253A%252F%252Fdid%253Aplc%253Au7piwonv4s27ysugjaa6im2q%252Fapp.bsky.feed.post%252F3lybsyawasc24/did%253Aplc%253Aeqvvek25ndbzzz67mkreuqrt", "wm-target": "https://fundor333.com/micro/2025/09/more-love-silksong/", "wm-protocol": "webmention", "repost-of": "https://fundor333.com/micro/2025/09/more-love-silksong/", "wm-property": "repost-of", "wm-private": false}], "stats": {"like-of": 3, "bookmark-of": 0, "mention-of": 0, "repost-of": 1, "in-reply-to": 0, "comments": []}}
|
||||
@@ -1 +1 @@
|
||||
{"source": [{"type": "entry", "author": {"type": "card", "name": "Food & Drink Channel", "photo": "https://avatars.webmention.io/files.mastodon.social/53dcc6ece2e0abd79a8aa637b9109d33bab0fa02e6536db85fd6c18ebc662722.png", "url": "https://newsmast.community/@foodanddrink"}, "url": "https://mastodon.social/@fundor333/114780095389921904#reblogged-by-111653123325216795", "published": null, "wm-received": "2025-07-02T01:37:30Z", "wm-id": 1921872, "wm-source": "https://brid.gy/repost/mastodon/@fundor333@mastodon.social/114780095389921904/111653123325216795", "wm-target": "https://fundor333.com/micro/2025/07/making-a-katsudon/", "wm-protocol": "webmention", "repost-of": "https://fundor333.com/micro/2025/07/making-a-katsudon/", "wm-property": "repost-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "fundor333", "photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "url": "https://bsky.app/profile/fundor333.bsky.social"}, "url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3lswncdnhaq2g", "published": "2025-07-01T21:19:31+00:00", "wm-received": "2025-07-01T21:27:46Z", "wm-id": 1921834, "wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3lswncdnhaq2g%23bridgy-fed-create", "wm-target": "https://fundor333.com/micro/2025/07/making-a-katsudon/", "wm-protocol": "webmention", "content": {"html": "Trying cooking new food.\n\nThis is my Katsudon\n\n<a href=\"https://bsky.app/search?q=%23cooking\">#cooking</a> <a href=\"https://bsky.app/search?q=%23katsudon\">#katsudon</a> (<a href=\"https://fundor333.com/micro/2025/07/making-a-katsudon/\">https://fundor333.com/micro/2025/07/making-a-katsudon/</a>)", "text": "Trying cooking new food.\n\nThis is my Katsudon\n\n#cooking #katsudon (https://fundor333.com/micro/2025/07/making-a-katsudon/)"}, "mention-of": "https://fundor333.com/micro/2025/07/making-a-katsudon/", "wm-property": "mention-of", "wm-private": false}], "stats": {"like-of": 0, "bookmark-of": 0, "mention-of": 1, "repost-of": 1, "in-reply-to": 0, "comments": [{"content": "Trying cooking new food.\n\nThis is my Katsudon\n\n#cooking #katsudon (https://fundor333.com/micro/2025/07/making-a-katsudon/)", "link": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3lswncdnhaq2g%23bridgy-fed-create", "author_name": "fundor333", "author_photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "author_url": "https://bsky.app/profile/fundor333.bsky.social"}]}}
|
||||
{"source": [{"type": "entry", "author": {"type": "card", "name": "fundor333", "photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "url": "https://bsky.app/profile/fundor333.bsky.social"}, "url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3lswncdnhaq2g", "published": "2025-07-01T21:19:31+00:00", "wm-received": "2025-07-01T21:27:46Z", "wm-id": 1921834, "wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3lswncdnhaq2g%23bridgy-fed-create", "wm-target": "https://fundor333.com/micro/2025/07/making-a-katsudon/", "wm-protocol": "webmention", "content": {"html": "Trying cooking new food.\n\nThis is my Katsudon\n\n<a href=\"https://bsky.app/search?q=%23cooking\">#cooking</a> <a href=\"https://bsky.app/search?q=%23katsudon\">#katsudon</a> (<a href=\"https://fundor333.com/micro/2025/07/making-a-katsudon/\">https://fundor333.com/micro/2025/07/making-a-katsudon/</a>)", "text": "Trying cooking new food.\n\nThis is my Katsudon\n\n#cooking #katsudon (https://fundor333.com/micro/2025/07/making-a-katsudon/)"}, "mention-of": "https://fundor333.com/micro/2025/07/making-a-katsudon/", "wm-property": "mention-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "Food & Drink Channel", "photo": "https://avatars.webmention.io/files.mastodon.social/53dcc6ece2e0abd79a8aa637b9109d33bab0fa02e6536db85fd6c18ebc662722.png", "url": "https://newsmast.community/@foodanddrink"}, "url": "https://mastodon.social/@fundor333/114780095389921904#reblogged-by-111653123325216795", "published": null, "wm-received": "2025-07-02T01:37:30Z", "wm-id": 1921872, "wm-source": "https://brid.gy/repost/mastodon/@fundor333@mastodon.social/114780095389921904/111653123325216795", "wm-target": "https://fundor333.com/micro/2025/07/making-a-katsudon/", "wm-protocol": "webmention", "repost-of": "https://fundor333.com/micro/2025/07/making-a-katsudon/", "wm-property": "repost-of", "wm-private": false}], "stats": {"like-of": 0, "bookmark-of": 0, "mention-of": 1, "repost-of": 1, "in-reply-to": 0, "comments": [{"content": "Trying cooking new food.\n\nThis is my Katsudon\n\n#cooking #katsudon (https://fundor333.com/micro/2025/07/making-a-katsudon/)", "link": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3lswncdnhaq2g%23bridgy-fed-create", "author_name": "fundor333", "author_photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "author_url": "https://bsky.app/profile/fundor333.bsky.social"}]}}
|
||||
@@ -1 +1 @@
|
||||
{"source": [{"type": "entry", "author": {"type": "card", "name": "Scarlett Harper | neuroscience", "photo": "https://avatars.webmention.io/files.mastodon.social/8346713c7274cabf40c7777858d6e57133c6b6b2af681add147686aa08da14ac.jpg", "url": "https://mastodon.social/@ScarlettHarper"}, "url": "https://mastodon.social/@fundor333/115127694046646073#favorited-by-115123792789948208", "published": null, "wm-received": "2025-09-01T14:05:33Z", "wm-id": 1935516, "wm-source": "https://brid.gy/like/mastodon/@fundor333@mastodon.social/115127694046646073/115123792789948208", "wm-target": "https://fundor333.com/post/2025/hugo-blog-with-jupyter-notebook/", "wm-protocol": "webmention", "like-of": "https://fundor333.com/post/2025/hugo-blog-with-jupyter-notebook/", "wm-property": "like-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "Livia Weigel", "photo": "https://avatars.webmention.io/files.mastodon.social/b091fbcc33022e97ba96a32f6c7dbf1882ee9da1afbb118b44eb942acbbbd3cb.jpg", "url": "https://sciences.social/@livia"}, "url": "https://mastodon.social/@fundor333/115127694046646073#favorited-by-113820714863668121", "published": null, "wm-received": "2025-09-07T00:58:20Z", "wm-id": 1936807, "wm-source": "https://brid.gy/like/mastodon/@fundor333@mastodon.social/115127694046646073/113820714863668121", "wm-target": "https://fundor333.com/post/2025/hugo-blog-with-jupyter-notebook/", "wm-protocol": "webmention", "like-of": "https://fundor333.com/post/2025/hugo-blog-with-jupyter-notebook/", "wm-property": "like-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "raphaellek", "photo": "https://avatars.webmention.io/files.mastodon.social/e90e3dd3f398bd971572dd5e3c09f86a79feb59474f39fb088d41abfea26b0ca.png", "url": "https://social.sciences.re/@raphaellek"}, "url": "https://mastodon.social/@fundor333/115127694046646073#reblogged-by-112722503066701790", "published": null, "wm-received": "2025-09-01T14:36:24Z", "wm-id": 1935550, "wm-source": "https://brid.gy/repost/mastodon/@fundor333@mastodon.social/115127694046646073/112722503066701790", "wm-target": "https://fundor333.com/post/2025/hugo-blog-with-jupyter-notebook/", "wm-protocol": "webmention", "repost-of": "https://fundor333.com/post/2025/hugo-blog-with-jupyter-notebook/", "wm-property": "repost-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "Fundor333", "photo": "https://avatars.webmention.io/files.mastodon.social/36bc58e7595de593f520ba92ea9a8433b6dfde5a76f3f6d7d69755ac29007318.png", "url": "https://mastodon.social/@fundor333"}, "url": "https://mastodon.social/@fundor333/115128891621638232", "published": "2025-09-01T11:51:12+00:00", "wm-received": "2025-09-01T14:05:04Z", "wm-id": 1935515, "wm-source": "https://brid.gy/comment/mastodon/@fundor333@mastodon.social/115127694046646073/115128891621638232", "wm-target": "https://fundor333.com/post/2025/hugo-blog-with-jupyter-notebook/", "wm-protocol": "webmention", "content": {"html": "<p>Api test because I don't undestand it</p>", "text": "Api test because I don't undestand it"}, "in-reply-to": "https://fundor333.com/post/2025/hugo-blog-with-jupyter-notebook/", "wm-property": "in-reply-to", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "Social Sciences Channel", "photo": "https://avatars.webmention.io/files.mastodon.social/53dcc6ece2e0abd79a8aa637b9109d33bab0fa02e6536db85fd6c18ebc662722.png", "url": "https://newsmast.community/@socialsciences"}, "url": "https://mastodon.social/@fundor333/115127694046646073#reblogged-by-111811737765749325", "published": null, "wm-received": "2025-09-01T14:06:23Z", "wm-id": 1935517, "wm-source": "https://brid.gy/repost/mastodon/@fundor333@mastodon.social/115127694046646073/111811737765749325", "wm-target": "https://fundor333.com/post/2025/hugo-blog-with-jupyter-notebook/", "wm-protocol": "webmention", "repost-of": "https://fundor333.com/post/2025/hugo-blog-with-jupyter-notebook/", "wm-property": "repost-of", "wm-private": false}], "stats": {"like-of": 2, "bookmark-of": 0, "mention-of": 0, "repost-of": 2, "in-reply-to": 1, "comments": [{"content": "Api test because I don't undestand it", "link": "https://brid.gy/comment/mastodon/@fundor333@mastodon.social/115127694046646073/115128891621638232", "author_name": "Fundor333", "author_photo": "https://avatars.webmention.io/files.mastodon.social/36bc58e7595de593f520ba92ea9a8433b6dfde5a76f3f6d7d69755ac29007318.png", "author_url": "https://mastodon.social/@fundor333"}]}}
|
||||
{"source": [{"type": "entry", "author": {"type": "card", "name": "Scarlett Harper | neuroscience", "photo": "https://avatars.webmention.io/files.mastodon.social/8346713c7274cabf40c7777858d6e57133c6b6b2af681add147686aa08da14ac.jpg", "url": "https://mastodon.social/@ScarlettHarper"}, "url": "https://mastodon.social/@fundor333/115127694046646073#favorited-by-115123792789948208", "published": null, "wm-received": "2025-09-01T14:05:33Z", "wm-id": 1935516, "wm-source": "https://brid.gy/like/mastodon/@fundor333@mastodon.social/115127694046646073/115123792789948208", "wm-target": "https://fundor333.com/post/2025/hugo-blog-with-jupyter-notebook/", "wm-protocol": "webmention", "like-of": "https://fundor333.com/post/2025/hugo-blog-with-jupyter-notebook/", "wm-property": "like-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "Livia Weigel", "photo": "https://avatars.webmention.io/files.mastodon.social/b091fbcc33022e97ba96a32f6c7dbf1882ee9da1afbb118b44eb942acbbbd3cb.jpg", "url": "https://sciences.social/@livia"}, "url": "https://mastodon.social/@fundor333/115127694046646073#favorited-by-113820714863668121", "published": null, "wm-received": "2025-09-07T00:58:20Z", "wm-id": 1936807, "wm-source": "https://brid.gy/like/mastodon/@fundor333@mastodon.social/115127694046646073/113820714863668121", "wm-target": "https://fundor333.com/post/2025/hugo-blog-with-jupyter-notebook/", "wm-protocol": "webmention", "like-of": "https://fundor333.com/post/2025/hugo-blog-with-jupyter-notebook/", "wm-property": "like-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "Fundor333", "photo": "https://avatars.webmention.io/files.mastodon.social/36bc58e7595de593f520ba92ea9a8433b6dfde5a76f3f6d7d69755ac29007318.png", "url": "https://mastodon.social/@fundor333"}, "url": "https://mastodon.social/@fundor333/115128891621638232", "published": "2025-09-01T11:51:12+00:00", "wm-received": "2025-09-01T14:05:04Z", "wm-id": 1935515, "wm-source": "https://brid.gy/comment/mastodon/@fundor333@mastodon.social/115127694046646073/115128891621638232", "wm-target": "https://fundor333.com/post/2025/hugo-blog-with-jupyter-notebook/", "wm-protocol": "webmention", "content": {"html": "<p>Api test because I don't undestand it</p>", "text": "Api test because I don't undestand it"}, "in-reply-to": "https://fundor333.com/post/2025/hugo-blog-with-jupyter-notebook/", "wm-property": "in-reply-to", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "Social Sciences Channel", "photo": "https://avatars.webmention.io/files.mastodon.social/53dcc6ece2e0abd79a8aa637b9109d33bab0fa02e6536db85fd6c18ebc662722.png", "url": "https://newsmast.community/@socialsciences"}, "url": "https://mastodon.social/@fundor333/115127694046646073#reblogged-by-111811737765749325", "published": null, "wm-received": "2025-09-01T14:06:23Z", "wm-id": 1935517, "wm-source": "https://brid.gy/repost/mastodon/@fundor333@mastodon.social/115127694046646073/111811737765749325", "wm-target": "https://fundor333.com/post/2025/hugo-blog-with-jupyter-notebook/", "wm-protocol": "webmention", "repost-of": "https://fundor333.com/post/2025/hugo-blog-with-jupyter-notebook/", "wm-property": "repost-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "raphaellek", "photo": "https://avatars.webmention.io/files.mastodon.social/e90e3dd3f398bd971572dd5e3c09f86a79feb59474f39fb088d41abfea26b0ca.png", "url": "https://social.sciences.re/@raphaellek"}, "url": "https://mastodon.social/@fundor333/115127694046646073#reblogged-by-112722503066701790", "published": null, "wm-received": "2025-09-01T14:36:24Z", "wm-id": 1935550, "wm-source": "https://brid.gy/repost/mastodon/@fundor333@mastodon.social/115127694046646073/112722503066701790", "wm-target": "https://fundor333.com/post/2025/hugo-blog-with-jupyter-notebook/", "wm-protocol": "webmention", "repost-of": "https://fundor333.com/post/2025/hugo-blog-with-jupyter-notebook/", "wm-property": "repost-of", "wm-private": false}], "stats": {"like-of": 2, "bookmark-of": 0, "mention-of": 0, "repost-of": 2, "in-reply-to": 1, "comments": [{"content": "Api test because I don't undestand it", "link": "https://brid.gy/comment/mastodon/@fundor333@mastodon.social/115127694046646073/115128891621638232", "author_name": "Fundor333", "author_photo": "https://avatars.webmention.io/files.mastodon.social/36bc58e7595de593f520ba92ea9a8433b6dfde5a76f3f6d7d69755ac29007318.png", "author_url": "https://mastodon.social/@fundor333"}]}}
|
||||
@@ -1 +1 @@
|
||||
{"source": [{"type": "entry", "author": {"type": "card", "name": "Fundor333", "photo": "https://avatars.webmention.io/cdn.fosstodon.org/36bc58e7595de593f520ba92ea9a8433b6dfde5a76f3f6d7d69755ac29007318.png", "url": "https://mastodon.social/@fundor333"}, "url": "https://mastodon.social/@fundor333/113880090525445966", "published": "2025-01-23T22:44:39+00:00", "wm-received": "2025-04-05T18:54:19Z", "wm-id": 1901647, "wm-source": "https://brid.gy/comment/mastodon/@chringel@fosstodon.org/113880090547636730/113880090547636730", "wm-target": "https://fundor333.com/post/2025/github-action-for-syndication-links/", "wm-protocol": "webmention", "content": {"html": "<p><span class=\"h-card\"><a href=\"https://fosstodon.org/@chringel\" class=\"u-url\">@<span>chringel</span></a></span> Done for Mastodon! </p><p><a href=\"https://mastodon.social/tags/mastodon\">#<span>mastodon</span></a> <a href=\"https://mastodon.social/tags/syndication\">#<span>syndication</span></a> <a href=\"https://mastodon.social/tags/gohugo\">#<span>gohugo</span></a> <a href=\"https://mastodon.social/tags/webmention\">#<span>webmention</span></a> </p><p><a href=\"https://fundor333.com/post/2025/github-action-for-syndication-links/\"><span>https://</span><span>fundor333.com/post/2025/github</span><span>-action-for-syndication-links/</span></a></p>\n<a class=\"p-category\" href=\"https://fosstodon.org/tags/gohugo\">gohugo</a>\n<a class=\"p-category\" href=\"https://fosstodon.org/tags/mastodon\">mastodon</a>\n<a class=\"p-category\" href=\"https://fosstodon.org/tags/syndication\">syndication</a>\n<a class=\"p-category\" href=\"https://fosstodon.org/tags/webmention\">webmention</a>\n<a href=\"https://fundor333.com/post/2025/github-action-for-syndication-links/\">Github Action for Syndication Links | Fundor333</a>", "text": "@chringel Done for Mastodon! \n\n#mastodon #syndication #gohugo #webmention \n\nhttps://fundor333.com/post/2025/github-action-for-syndication-links/\ngohugo\nmastodon\nsyndication\nwebmention\nGithub Action for Syndication Links | Fundor333"}, "in-reply-to": "https://fundor333.com/post/2025/github-action-for-syndication-links/", "wm-property": "in-reply-to", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "fundor333", "photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "url": "https://bsky.app/profile/fundor333.bsky.social"}, "url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3lggx546sif22", "published": "2025-01-23T12:22:54+00:00", "wm-received": "2025-01-23T22:39:00Z", "wm-id": 1879513, "wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3lggx546sif22%23bridgy-fed-create", "wm-target": "https://fundor333.com/post/2025/github-action-for-syndication-links/", "wm-protocol": "webmention", "content": {"html": "Github Action for Syndication Links: <a href=\"https://fundor333.com/post/2025/github-action-for-syndication-links/\">https://fundor333.com/post/2025/github-action-for-syndication-links/</a>", "text": "Github Action for Syndication Links: https://fundor333.com/post/2025/github-action-for-syndication-links/"}, "mention-of": "https://fundor333.com/post/2025/github-action-for-syndication-links/", "wm-property": "mention-of", "wm-private": false}], "stats": {"like-of": 0, "bookmark-of": 0, "mention-of": 1, "repost-of": 0, "in-reply-to": 1, "comments": [{"content": "@chringel Done for Mastodon! \n\n#mastodon #syndication #gohugo #webmention \n\nhttps://fundor333.com/post/2025/github-action-for-syndication-links/\ngohugo\nmastodon\nsyndication\nwebmention\nGithub Action for Syndication Links | Fundor333", "link": "https://brid.gy/comment/mastodon/@chringel@fosstodon.org/113880090547636730/113880090547636730", "author_name": "Fundor333", "author_photo": "https://avatars.webmention.io/cdn.fosstodon.org/36bc58e7595de593f520ba92ea9a8433b6dfde5a76f3f6d7d69755ac29007318.png", "author_url": "https://mastodon.social/@fundor333"}, {"content": "Github Action for Syndication Links: https://fundor333.com/post/2025/github-action-for-syndication-links/", "link": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3lggx546sif22%23bridgy-fed-create", "author_name": "fundor333", "author_photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "author_url": "https://bsky.app/profile/fundor333.bsky.social"}]}}
|
||||
{"source": [{"type": "entry", "author": {"type": "card", "name": "fundor333", "photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "url": "https://bsky.app/profile/fundor333.bsky.social"}, "url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3lggx546sif22", "published": "2025-01-23T12:22:54+00:00", "wm-received": "2025-01-23T22:39:00Z", "wm-id": 1879513, "wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3lggx546sif22%23bridgy-fed-create", "wm-target": "https://fundor333.com/post/2025/github-action-for-syndication-links/", "wm-protocol": "webmention", "content": {"html": "Github Action for Syndication Links: <a href=\"https://fundor333.com/post/2025/github-action-for-syndication-links/\">https://fundor333.com/post/2025/github-action-for-syndication-links/</a>", "text": "Github Action for Syndication Links: https://fundor333.com/post/2025/github-action-for-syndication-links/"}, "mention-of": "https://fundor333.com/post/2025/github-action-for-syndication-links/", "wm-property": "mention-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "Fundor333", "photo": "https://avatars.webmention.io/cdn.fosstodon.org/36bc58e7595de593f520ba92ea9a8433b6dfde5a76f3f6d7d69755ac29007318.png", "url": "https://mastodon.social/@fundor333"}, "url": "https://mastodon.social/@fundor333/113880090525445966", "published": "2025-01-23T22:44:39+00:00", "wm-received": "2025-04-05T18:54:19Z", "wm-id": 1901647, "wm-source": "https://brid.gy/comment/mastodon/@chringel@fosstodon.org/113880090547636730/113880090547636730", "wm-target": "https://fundor333.com/post/2025/github-action-for-syndication-links/", "wm-protocol": "webmention", "content": {"html": "<p><span class=\"h-card\"><a href=\"https://fosstodon.org/@chringel\" class=\"u-url\">@<span>chringel</span></a></span> Done for Mastodon! </p><p><a href=\"https://mastodon.social/tags/mastodon\">#<span>mastodon</span></a> <a href=\"https://mastodon.social/tags/syndication\">#<span>syndication</span></a> <a href=\"https://mastodon.social/tags/gohugo\">#<span>gohugo</span></a> <a href=\"https://mastodon.social/tags/webmention\">#<span>webmention</span></a> </p><p><a href=\"https://fundor333.com/post/2025/github-action-for-syndication-links/\"><span>https://</span><span>fundor333.com/post/2025/github</span><span>-action-for-syndication-links/</span></a></p>\n<a class=\"p-category\" href=\"https://fosstodon.org/tags/gohugo\">gohugo</a>\n<a class=\"p-category\" href=\"https://fosstodon.org/tags/mastodon\">mastodon</a>\n<a class=\"p-category\" href=\"https://fosstodon.org/tags/syndication\">syndication</a>\n<a class=\"p-category\" href=\"https://fosstodon.org/tags/webmention\">webmention</a>\n<a href=\"https://fundor333.com/post/2025/github-action-for-syndication-links/\">Github Action for Syndication Links | Fundor333</a>", "text": "@chringel Done for Mastodon! \n\n#mastodon #syndication #gohugo #webmention \n\nhttps://fundor333.com/post/2025/github-action-for-syndication-links/\ngohugo\nmastodon\nsyndication\nwebmention\nGithub Action for Syndication Links | Fundor333"}, "in-reply-to": "https://fundor333.com/post/2025/github-action-for-syndication-links/", "wm-property": "in-reply-to", "wm-private": false}], "stats": {"like-of": 0, "bookmark-of": 0, "mention-of": 1, "repost-of": 0, "in-reply-to": 1, "comments": [{"content": "Github Action for Syndication Links: https://fundor333.com/post/2025/github-action-for-syndication-links/", "link": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3lggx546sif22%23bridgy-fed-create", "author_name": "fundor333", "author_photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "author_url": "https://bsky.app/profile/fundor333.bsky.social"}, {"content": "@chringel Done for Mastodon! \n\n#mastodon #syndication #gohugo #webmention \n\nhttps://fundor333.com/post/2025/github-action-for-syndication-links/\ngohugo\nmastodon\nsyndication\nwebmention\nGithub Action for Syndication Links | Fundor333", "link": "https://brid.gy/comment/mastodon/@chringel@fosstodon.org/113880090547636730/113880090547636730", "author_name": "Fundor333", "author_photo": "https://avatars.webmention.io/cdn.fosstodon.org/36bc58e7595de593f520ba92ea9a8433b6dfde5a76f3f6d7d69755ac29007318.png", "author_url": "https://mastodon.social/@fundor333"}]}}
|
||||
@@ -1 +1 @@
|
||||
{"source": [{"type": "entry", "author": {"type": "card", "name": "fundor333", "photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "url": "https://bsky.app/profile/fundor333.bsky.social"}, "url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3lzz3onv2sz23", "published": "2025-09-29T22:46:50+00:00", "wm-received": "2025-09-29T22:46:57Z", "wm-id": 1942985, "wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3lzz3onv2sz23%23bridgy-fed-create", "wm-target": "https://fundor333.com/event/2025-10-02-pyvenice-1-astrophysics-machinelearning-coding-agenticai/", "wm-protocol": "webmention", "content": {"html": "<a href=\"https://fundor333.com/event/2025-10-02-pyvenice-1-astrophysics-machinelearning-coding-agenticai/\">https://fundor333.com/event/2025-10-02-pyvenice-1-astrophysics-machinelearning-coding-agenticai/</a><a href=\"https://fundor333.com/event/2025-10-02-pyvenice-1-astrophysics-machinelearning-coding-agenticai/\">https://fundor333.com/event/2025-10-02-pyvenice-1-astrophysics-machinelearning-coding-agenticai/</a>\n\n<a href=\"https://bsky.app/search?q=%23meetup-584902\">#meetup-584902</a> <a href=\"https://bsky.app/search?q=%23meetup-917262\">#meetup-917262</a> <a href=\"https://bsky.app/search?q=%23meetup-34455\">#meetup-34455</a>\n<a class=\"p-category\" href=\"https://bsky.app/search?q=%23PyVenice\">PyVenice</a>", "text": "https://fundor333.com/event/2025-10-02-pyvenice-1-astrophysics-machinelearning-coding-agenticai/https://fundor333.com/event/2025-10-02-pyvenice-1-astrophysics-machinelearning-coding-agenticai/\n\n#meetup-584902 #meetup-917262 #meetup-34455\nPyVenice"}, "mention-of": "https://fundor333.com/event/2025-10-02-pyvenice-1-astrophysics-machinelearning-coding-agenticai/", "wm-property": "mention-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "Vonean Coldbull", "photo": "https://avatars.webmention.io/cdn.bsky.app/8c5963a04db32c8cc974f3acd16b370df4332cb3fd00d14e893fe3c94424596d.jpg", "url": "https://bsky.app/profile/frengible.bsky.social"}, "url": "https://bsky.app/profile/fundor333.bsky.social/post/3lzz3onv2sz23#liked_by_did:plc:xuh6g7hnpeorsy5qqlrrwvj4", "published": null, "wm-received": "2025-10-01T06:08:00Z", "wm-id": 1943182, "wm-source": "https://brid.gy/like/bluesky/did:plc:u7piwonv4s27ysugjaa6im2q/at%253A%252F%252Fdid%253Aplc%253Au7piwonv4s27ysugjaa6im2q%252Fapp.bsky.feed.post%252F3lzz3onv2sz23/did%253Aplc%253Axuh6g7hnpeorsy5qqlrrwvj4", "wm-target": "https://fundor333.com/event/2025-10-02-pyvenice-1-astrophysics-machinelearning-coding-agenticai/", "wm-protocol": "webmention", "like-of": "https://fundor333.com/event/2025-10-02-pyvenice-1-astrophysics-machinelearning-coding-agenticai/", "wm-property": "like-of", "wm-private": false}], "stats": {"like-of": 1, "bookmark-of": 0, "mention-of": 1, "repost-of": 0, "in-reply-to": 0, "comments": [{"content": "https://fundor333.com/event/2025-10-02-pyvenice-1-astrophysics-machinelearning-coding-agenticai/https://fundor333.com/event/2025-10-02-pyvenice-1-astrophysics-machinelearning-coding-agenticai/\n\n#meetup-584902 #meetup-917262 #meetup-34455\nPyVenice", "link": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3lzz3onv2sz23%23bridgy-fed-create", "author_name": "fundor333", "author_photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "author_url": "https://bsky.app/profile/fundor333.bsky.social"}]}}
|
||||
{"source": [{"type": "entry", "author": {"type": "card", "name": "Vonean Coldbull", "photo": "https://avatars.webmention.io/cdn.bsky.app/8c5963a04db32c8cc974f3acd16b370df4332cb3fd00d14e893fe3c94424596d.jpg", "url": "https://bsky.app/profile/frengible.bsky.social"}, "url": "https://bsky.app/profile/fundor333.bsky.social/post/3lzz3onv2sz23#liked_by_did:plc:xuh6g7hnpeorsy5qqlrrwvj4", "published": null, "wm-received": "2025-10-01T06:08:00Z", "wm-id": 1943182, "wm-source": "https://brid.gy/like/bluesky/did:plc:u7piwonv4s27ysugjaa6im2q/at%253A%252F%252Fdid%253Aplc%253Au7piwonv4s27ysugjaa6im2q%252Fapp.bsky.feed.post%252F3lzz3onv2sz23/did%253Aplc%253Axuh6g7hnpeorsy5qqlrrwvj4", "wm-target": "https://fundor333.com/event/2025-10-02-pyvenice-1-astrophysics-machinelearning-coding-agenticai/", "wm-protocol": "webmention", "like-of": "https://fundor333.com/event/2025-10-02-pyvenice-1-astrophysics-machinelearning-coding-agenticai/", "wm-property": "like-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "fundor333", "photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "url": "https://bsky.app/profile/fundor333.bsky.social"}, "url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3lzz3onv2sz23", "published": "2025-09-29T22:46:50+00:00", "wm-received": "2025-09-29T22:46:57Z", "wm-id": 1942985, "wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3lzz3onv2sz23%23bridgy-fed-create", "wm-target": "https://fundor333.com/event/2025-10-02-pyvenice-1-astrophysics-machinelearning-coding-agenticai/", "wm-protocol": "webmention", "content": {"html": "<a href=\"https://fundor333.com/event/2025-10-02-pyvenice-1-astrophysics-machinelearning-coding-agenticai/\">https://fundor333.com/event/2025-10-02-pyvenice-1-astrophysics-machinelearning-coding-agenticai/</a><a href=\"https://fundor333.com/event/2025-10-02-pyvenice-1-astrophysics-machinelearning-coding-agenticai/\">https://fundor333.com/event/2025-10-02-pyvenice-1-astrophysics-machinelearning-coding-agenticai/</a>\n\n<a href=\"https://bsky.app/search?q=%23meetup-584902\">#meetup-584902</a> <a href=\"https://bsky.app/search?q=%23meetup-917262\">#meetup-917262</a> <a href=\"https://bsky.app/search?q=%23meetup-34455\">#meetup-34455</a>\n<a class=\"p-category\" href=\"https://bsky.app/search?q=%23PyVenice\">PyVenice</a>", "text": "https://fundor333.com/event/2025-10-02-pyvenice-1-astrophysics-machinelearning-coding-agenticai/https://fundor333.com/event/2025-10-02-pyvenice-1-astrophysics-machinelearning-coding-agenticai/\n\n#meetup-584902 #meetup-917262 #meetup-34455\nPyVenice"}, "mention-of": "https://fundor333.com/event/2025-10-02-pyvenice-1-astrophysics-machinelearning-coding-agenticai/", "wm-property": "mention-of", "wm-private": false}], "stats": {"like-of": 1, "bookmark-of": 0, "mention-of": 1, "repost-of": 0, "in-reply-to": 0, "comments": [{"content": "https://fundor333.com/event/2025-10-02-pyvenice-1-astrophysics-machinelearning-coding-agenticai/https://fundor333.com/event/2025-10-02-pyvenice-1-astrophysics-machinelearning-coding-agenticai/\n\n#meetup-584902 #meetup-917262 #meetup-34455\nPyVenice", "link": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3lzz3onv2sz23%23bridgy-fed-create", "author_name": "fundor333", "author_photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "author_url": "https://bsky.app/profile/fundor333.bsky.social"}]}}
|
||||
@@ -1 +1 @@
|
||||
{"source": [{"type": "entry", "author": {"type": "card", "name": "giacomo", "photo": "https://avatars.webmention.io/files.mastodon.social/16eeada7b7fb6bb09f5ee099ab580581a38c4d6959ee8cba972654390c25d1a6.png", "url": "https://mastodon.social/@giacomofolli"}, "url": "https://mastodon.social/@fundor333/114706717381042758#favorited-by-114595790008413797", "published": null, "wm-received": "2025-06-18T23:33:59Z", "wm-id": 1919398, "wm-source": "https://brid.gy/like/mastodon/@fundor333@mastodon.social/114706717381042758/114595790008413797", "wm-target": "https://fundor333.com/micro/2025/06/pocket-is-dead/", "wm-protocol": "webmention", "like-of": "https://fundor333.com/micro/2025/06/pocket-is-dead/", "wm-property": "like-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "fundor333", "photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "url": "https://bsky.app/profile/fundor333.bsky.social"}, "url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3lrw2jwy2td2y", "published": "2025-06-18T22:16:27+00:00", "wm-received": "2025-06-18T22:26:49Z", "wm-id": 1919394, "wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3lrw2jwy2td2y%23bridgy-fed-create", "wm-target": "https://fundor333.com/micro/2025/06/pocket-is-dead/", "wm-protocol": "webmention", "content": {"html": "Pocket is dead and in the next few days they will be delete forever. So I wrote my Django app for this (my personal Pocket) but if you are note a coder or you don\u2019t want to support this code you can use other software.\n\nI suggest Shiori (<a href=\"https://github.com/go-shiori/shiori\"> [\u2026] https://fundor333.com/micro/</a><a href=\"https://fundor333.com/micro/2025/06/pocket-is-dead/\">https://fundor333.com/micro/2025/06/pocket-is-dead/</a>\n<a class=\"p-category\" href=\"https://bsky.app/search?q=%23django\">django</a>\n<a class=\"p-category\" href=\"https://bsky.app/search?q=%23opensource\">opensource</a>\n<a class=\"p-category\" href=\"https://bsky.app/search?q=%23pikapods\">pikapods</a>\n<a class=\"p-category\" href=\"https://bsky.app/search?q=%23pocket\">pocket</a>\n<a class=\"p-category\" href=\"https://bsky.app/search?q=%23shiori\">shiori</a>", "text": "Pocket is dead and in the next few days they will be delete forever. So I wrote my Django app for this (my personal Pocket) but if you are note a coder or you don\u2019t want to support this code you can use other software.\n\nI suggest Shiori ( [\u2026] https://fundor333.com/micro/https://fundor333.com/micro/2025/06/pocket-is-dead/\ndjango\nopensource\npikapods\npocket\nshiori"}, "mention-of": "https://fundor333.com/micro/2025/06/pocket-is-dead/", "wm-property": "mention-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "OpenAlternative", "photo": "https://avatars.webmention.io/cdn.bsky.app/e785fb6b739fcdcddbe2a4e1cfa780a99e0d1db34db947aa69dfad09a066035e.jpg", "url": "https://bsky.app/profile/openalternative.co"}, "url": "https://bsky.app/profile/fundor333.bsky.social/post/3lrw2jwy2td2y#liked_by_did:plc:kv4ydqtva55jkyigrldc472e", "published": null, "wm-received": "2025-06-19T15:14:28Z", "wm-id": 1919484, "wm-source": "https://brid.gy/like/bluesky/did:plc:u7piwonv4s27ysugjaa6im2q/at%253A%252F%252Fdid%253Aplc%253Au7piwonv4s27ysugjaa6im2q%252Fapp.bsky.feed.post%252F3lrw2jwy2td2y/did%253Aplc%253Akv4ydqtva55jkyigrldc472e", "wm-target": "https://fundor333.com/micro/2025/06/pocket-is-dead/", "wm-protocol": "webmention", "like-of": "https://fundor333.com/micro/2025/06/pocket-is-dead/", "wm-property": "like-of", "wm-private": false}], "stats": {"like-of": 2, "bookmark-of": 0, "mention-of": 1, "repost-of": 0, "in-reply-to": 0, "comments": [{"content": "Pocket is dead and in the next few days they will be delete forever. So I wrote my Django app for this (my personal Pocket) but if you are note a coder or you don\u2019t want to support this code you can use other software.\n\nI suggest Shiori ( [\u2026] https://fundor333.com/micro/https://fundor333.com/micro/2025/06/pocket-is-dead/\ndjango\nopensource\npikapods\npocket\nshiori", "link": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3lrw2jwy2td2y%23bridgy-fed-create", "author_name": "fundor333", "author_photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "author_url": "https://bsky.app/profile/fundor333.bsky.social"}]}}
|
||||
{"source": [{"type": "entry", "author": {"type": "card", "name": "OpenAlternative", "photo": "https://avatars.webmention.io/cdn.bsky.app/e785fb6b739fcdcddbe2a4e1cfa780a99e0d1db34db947aa69dfad09a066035e.jpg", "url": "https://bsky.app/profile/openalternative.co"}, "url": "https://bsky.app/profile/fundor333.bsky.social/post/3lrw2jwy2td2y#liked_by_did:plc:kv4ydqtva55jkyigrldc472e", "published": null, "wm-received": "2025-06-19T15:14:28Z", "wm-id": 1919484, "wm-source": "https://brid.gy/like/bluesky/did:plc:u7piwonv4s27ysugjaa6im2q/at%253A%252F%252Fdid%253Aplc%253Au7piwonv4s27ysugjaa6im2q%252Fapp.bsky.feed.post%252F3lrw2jwy2td2y/did%253Aplc%253Akv4ydqtva55jkyigrldc472e", "wm-target": "https://fundor333.com/micro/2025/06/pocket-is-dead/", "wm-protocol": "webmention", "like-of": "https://fundor333.com/micro/2025/06/pocket-is-dead/", "wm-property": "like-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "giacomo", "photo": "https://avatars.webmention.io/files.mastodon.social/16eeada7b7fb6bb09f5ee099ab580581a38c4d6959ee8cba972654390c25d1a6.png", "url": "https://mastodon.social/@giacomofolli"}, "url": "https://mastodon.social/@fundor333/114706717381042758#favorited-by-114595790008413797", "published": null, "wm-received": "2025-06-18T23:33:59Z", "wm-id": 1919398, "wm-source": "https://brid.gy/like/mastodon/@fundor333@mastodon.social/114706717381042758/114595790008413797", "wm-target": "https://fundor333.com/micro/2025/06/pocket-is-dead/", "wm-protocol": "webmention", "like-of": "https://fundor333.com/micro/2025/06/pocket-is-dead/", "wm-property": "like-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "fundor333", "photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "url": "https://bsky.app/profile/fundor333.bsky.social"}, "url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3lrw2jwy2td2y", "published": "2025-06-18T22:16:27+00:00", "wm-received": "2025-06-18T22:26:49Z", "wm-id": 1919394, "wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3lrw2jwy2td2y%23bridgy-fed-create", "wm-target": "https://fundor333.com/micro/2025/06/pocket-is-dead/", "wm-protocol": "webmention", "content": {"html": "Pocket is dead and in the next few days they will be delete forever. So I wrote my Django app for this (my personal Pocket) but if you are note a coder or you don\u2019t want to support this code you can use other software.\n\nI suggest Shiori (<a href=\"https://github.com/go-shiori/shiori\"> [\u2026] https://fundor333.com/micro/</a><a href=\"https://fundor333.com/micro/2025/06/pocket-is-dead/\">https://fundor333.com/micro/2025/06/pocket-is-dead/</a>\n<a class=\"p-category\" href=\"https://bsky.app/search?q=%23django\">django</a>\n<a class=\"p-category\" href=\"https://bsky.app/search?q=%23opensource\">opensource</a>\n<a class=\"p-category\" href=\"https://bsky.app/search?q=%23pikapods\">pikapods</a>\n<a class=\"p-category\" href=\"https://bsky.app/search?q=%23pocket\">pocket</a>\n<a class=\"p-category\" href=\"https://bsky.app/search?q=%23shiori\">shiori</a>", "text": "Pocket is dead and in the next few days they will be delete forever. So I wrote my Django app for this (my personal Pocket) but if you are note a coder or you don\u2019t want to support this code you can use other software.\n\nI suggest Shiori ( [\u2026] https://fundor333.com/micro/https://fundor333.com/micro/2025/06/pocket-is-dead/\ndjango\nopensource\npikapods\npocket\nshiori"}, "mention-of": "https://fundor333.com/micro/2025/06/pocket-is-dead/", "wm-property": "mention-of", "wm-private": false}], "stats": {"like-of": 2, "bookmark-of": 0, "mention-of": 1, "repost-of": 0, "in-reply-to": 0, "comments": [{"content": "Pocket is dead and in the next few days they will be delete forever. So I wrote my Django app for this (my personal Pocket) but if you are note a coder or you don\u2019t want to support this code you can use other software.\n\nI suggest Shiori ( [\u2026] https://fundor333.com/micro/https://fundor333.com/micro/2025/06/pocket-is-dead/\ndjango\nopensource\npikapods\npocket\nshiori", "link": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3lrw2jwy2td2y%23bridgy-fed-create", "author_name": "fundor333", "author_photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "author_url": "https://bsky.app/profile/fundor333.bsky.social"}]}}
|
||||
@@ -1 +1 @@
|
||||
{"source": [{"type": "entry", "author": {"type": "card", "name": "fundor333", "photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "url": "https://bsky.app/profile/fundor333.bsky.social"}, "url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3lgzy7zblnf2t", "published": "2025-01-31T11:46:00+00:00", "wm-received": "2025-01-31T12:19:10Z", "wm-id": 1881701, "wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3lgzy7zblnf2t%23bridgy-fed-create", "wm-target": "https://fundor333.com/post/2025/an-easy-way-to-start-a-life-in-the-indieweb/", "wm-protocol": "webmention", "content": {"html": "An Easy Way to Start a Life in the IndieWeb: <a href=\"https://fundor333.com/post/2025/an-easy-way-to-start-a-life-in-the-indieweb/\">https://fundor333.com/post/2025/an-easy-way-to-start-a-life-in-the-indieweb/</a>", "text": "An Easy Way to Start a Life in the IndieWeb: https://fundor333.com/post/2025/an-easy-way-to-start-a-life-in-the-indieweb/"}, "mention-of": "https://fundor333.com/post/2025/an-easy-way-to-start-a-life-in-the-indieweb/", "wm-property": "mention-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "Christian", "photo": "", "url": "https://serverless.industries/people/christian.html"}, "url": "https://serverless.industries/stream/2025/05/6367c69411c6c47b46f25e66ea368910.html", "published": "2025-05-20T17:47:12", "wm-received": "2025-05-20T15:58:26Z", "wm-id": 1912397, "wm-source": "https://serverless.industries/stream/2025/05/6367c69411c6c47b46f25e66ea368910.html", "wm-target": "https://fundor333.com/post/2025/an-easy-way-to-start-a-life-in-the-indieweb/", "wm-protocol": "webmention", "content": {"text": "Have fun in the rabbit hole called IndieWeb. And thank you for the linked guide! ????"}, "in-reply-to": "https://fundor333.com/post/2025/an-easy-way-to-start-a-life-in-the-indieweb/", "wm-property": "in-reply-to", "wm-private": false, "rels": {"canonical": "https://serverless.industries/stream/2025/05/6367c69411c6c47b46f25e66ea368910.html"}}], "stats": {"like-of": 0, "bookmark-of": 0, "mention-of": 1, "repost-of": 0, "in-reply-to": 1, "comments": [{"content": "An Easy Way to Start a Life in the IndieWeb: https://fundor333.com/post/2025/an-easy-way-to-start-a-life-in-the-indieweb/", "link": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3lgzy7zblnf2t%23bridgy-fed-create", "author_name": "fundor333", "author_photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "author_url": "https://bsky.app/profile/fundor333.bsky.social"}, {"content": "Have fun in the rabbit hole called IndieWeb. And thank you for the linked guide! ????", "link": "https://serverless.industries/stream/2025/05/6367c69411c6c47b46f25e66ea368910.html", "author_name": "Christian", "author_photo": "", "author_url": "https://serverless.industries/people/christian.html"}]}}
|
||||
{"source": [{"type": "entry", "author": {"type": "card", "name": "Christian", "photo": "", "url": "https://serverless.industries/people/christian.html"}, "url": "https://serverless.industries/stream/2025/05/6367c69411c6c47b46f25e66ea368910.html", "published": "2025-05-20T17:47:12", "wm-received": "2025-05-20T15:58:26Z", "wm-id": 1912397, "wm-source": "https://serverless.industries/stream/2025/05/6367c69411c6c47b46f25e66ea368910.html", "wm-target": "https://fundor333.com/post/2025/an-easy-way-to-start-a-life-in-the-indieweb/", "wm-protocol": "webmention", "content": {"text": "Have fun in the rabbit hole called IndieWeb. And thank you for the linked guide! ????"}, "in-reply-to": "https://fundor333.com/post/2025/an-easy-way-to-start-a-life-in-the-indieweb/", "wm-property": "in-reply-to", "wm-private": false, "rels": {"canonical": "https://serverless.industries/stream/2025/05/6367c69411c6c47b46f25e66ea368910.html"}}, {"type": "entry", "author": {"type": "card", "name": "fundor333", "photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "url": "https://bsky.app/profile/fundor333.bsky.social"}, "url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3lgzy7zblnf2t", "published": "2025-01-31T11:46:00+00:00", "wm-received": "2025-01-31T12:19:10Z", "wm-id": 1881701, "wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3lgzy7zblnf2t%23bridgy-fed-create", "wm-target": "https://fundor333.com/post/2025/an-easy-way-to-start-a-life-in-the-indieweb/", "wm-protocol": "webmention", "content": {"html": "An Easy Way to Start a Life in the IndieWeb: <a href=\"https://fundor333.com/post/2025/an-easy-way-to-start-a-life-in-the-indieweb/\">https://fundor333.com/post/2025/an-easy-way-to-start-a-life-in-the-indieweb/</a>", "text": "An Easy Way to Start a Life in the IndieWeb: https://fundor333.com/post/2025/an-easy-way-to-start-a-life-in-the-indieweb/"}, "mention-of": "https://fundor333.com/post/2025/an-easy-way-to-start-a-life-in-the-indieweb/", "wm-property": "mention-of", "wm-private": false}], "stats": {"like-of": 0, "bookmark-of": 0, "mention-of": 1, "repost-of": 0, "in-reply-to": 1, "comments": [{"content": "Have fun in the rabbit hole called IndieWeb. And thank you for the linked guide! ????", "link": "https://serverless.industries/stream/2025/05/6367c69411c6c47b46f25e66ea368910.html", "author_name": "Christian", "author_photo": "", "author_url": "https://serverless.industries/people/christian.html"}, {"content": "An Easy Way to Start a Life in the IndieWeb: https://fundor333.com/post/2025/an-easy-way-to-start-a-life-in-the-indieweb/", "link": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3lgzy7zblnf2t%23bridgy-fed-create", "author_name": "fundor333", "author_photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "author_url": "https://bsky.app/profile/fundor333.bsky.social"}]}}
|
||||
@@ -1 +1 @@
|
||||
{"source": [{"type": "entry", "author": {"type": "card", "name": "Christian Engel", "photo": "https://chringel.dev/images/index_hu172747a4d2d97cd5fcea3a25375dec25_244334_200x200_fit_q75_h2_box_3.webp", "url": ""}, "url": "https://chringel.dev/2023/02/15/0917/", "published": "2023-02-15T09:18:00+01:00", "wm-received": "2023-02-15T08:25:29Z", "wm-id": 1623269, "wm-source": "https://chringel.dev/2023/02/15/0917/", "wm-target": "https://fundor333.com/post/2023/02/more-stuff-i-do-with-webmention-micropub-and-bridgy/", "wm-protocol": "webmention", "summary": {"content-type": "text/plain", "value": "\ud83d\udcac Comment on https://fundor333.com/post/2023/02/more-stuff-i-do-with-webmention-micropub-and-bridgy/"}, "content": {"html": "<p>That is so cool, that you implemented a micropub server. Congrats! \ud83c\udf7e</p>\n<p>And good luck on conquering the world! \ud83d\ude1c</p>", "text": "That is so cool, that you implemented a micropub server. Congrats! \ud83c\udf7e\nAnd good luck on conquering the world! \ud83d\ude1c"}, "in-reply-to": "https://fundor333.com/post/2023/02/more-stuff-i-do-with-webmention-micropub-and-bridgy/", "wm-property": "in-reply-to", "wm-private": false, "rels": {"canonical": "https://chringel.dev/2023/02/15/0917/"}}, {"type": "entry", "author": {"type": "card", "name": "Enrico Campagnol", "photo": "https://avatars.webmention.io/pbs.twimg.com/4bd9ff42800dd3e3aff600e8ea3436bfa2975053d64620bc81d8397e05aaa9bd.jpg", "url": "https://twitter.com/CampagnolEnrico"}, "url": "https://twitter.com/fundor333/status/1624833649265848320#favorited-by-1500398864708288514", "published": null, "wm-received": "2023-02-13T16:03:44Z", "wm-id": 1622159, "wm-source": "https://brid.gy/like/twitter/fundor333/1624833649265848320/1500398864708288514", "wm-target": "https://fundor333.com/post/2023/02/more-stuff-i-do-with-webmention-micropub-and-bridgy/", "wm-protocol": "webmention", "like-of": "https://fundor333.com/post/2023/02/more-stuff-i-do-with-webmention-micropub-and-bridgy/", "wm-property": "like-of", "wm-private": false}], "stats": {"like-of": 1, "bookmark-of": 0, "mention-of": 0, "repost-of": 0, "in-reply-to": 1, "comments": [{"content": "That is so cool, that you implemented a micropub server. Congrats! \ud83c\udf7e\nAnd good luck on conquering the world! \ud83d\ude1c", "link": "https://chringel.dev/2023/02/15/0917/", "author_name": "Christian Engel", "author_photo": "https://chringel.dev/images/index_hu172747a4d2d97cd5fcea3a25375dec25_244334_200x200_fit_q75_h2_box_3.webp", "author_url": ""}]}}
|
||||
{"source": [{"type": "entry", "author": {"type": "card", "name": "Enrico Campagnol", "photo": "https://avatars.webmention.io/pbs.twimg.com/4bd9ff42800dd3e3aff600e8ea3436bfa2975053d64620bc81d8397e05aaa9bd.jpg", "url": "https://twitter.com/CampagnolEnrico"}, "url": "https://twitter.com/fundor333/status/1624833649265848320#favorited-by-1500398864708288514", "published": null, "wm-received": "2023-02-13T16:03:44Z", "wm-id": 1622159, "wm-source": "https://brid.gy/like/twitter/fundor333/1624833649265848320/1500398864708288514", "wm-target": "https://fundor333.com/post/2023/02/more-stuff-i-do-with-webmention-micropub-and-bridgy/", "wm-protocol": "webmention", "like-of": "https://fundor333.com/post/2023/02/more-stuff-i-do-with-webmention-micropub-and-bridgy/", "wm-property": "like-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "Christian Engel", "photo": "https://chringel.dev/images/index_hu172747a4d2d97cd5fcea3a25375dec25_244334_200x200_fit_q75_h2_box_3.webp", "url": ""}, "url": "https://chringel.dev/2023/02/15/0917/", "published": "2023-02-15T09:18:00+01:00", "wm-received": "2023-02-15T08:25:29Z", "wm-id": 1623269, "wm-source": "https://chringel.dev/2023/02/15/0917/", "wm-target": "https://fundor333.com/post/2023/02/more-stuff-i-do-with-webmention-micropub-and-bridgy/", "wm-protocol": "webmention", "summary": {"content-type": "text/plain", "value": "\ud83d\udcac Comment on https://fundor333.com/post/2023/02/more-stuff-i-do-with-webmention-micropub-and-bridgy/"}, "content": {"html": "<p>That is so cool, that you implemented a micropub server. Congrats! \ud83c\udf7e</p>\n<p>And good luck on conquering the world! \ud83d\ude1c</p>", "text": "That is so cool, that you implemented a micropub server. Congrats! \ud83c\udf7e\nAnd good luck on conquering the world! \ud83d\ude1c"}, "in-reply-to": "https://fundor333.com/post/2023/02/more-stuff-i-do-with-webmention-micropub-and-bridgy/", "wm-property": "in-reply-to", "wm-private": false, "rels": {"canonical": "https://chringel.dev/2023/02/15/0917/"}}], "stats": {"like-of": 1, "bookmark-of": 0, "mention-of": 0, "repost-of": 0, "in-reply-to": 1, "comments": [{"content": "That is so cool, that you implemented a micropub server. Congrats! \ud83c\udf7e\nAnd good luck on conquering the world! \ud83d\ude1c", "link": "https://chringel.dev/2023/02/15/0917/", "author_name": "Christian Engel", "author_photo": "https://chringel.dev/images/index_hu172747a4d2d97cd5fcea3a25375dec25_244334_200x200_fit_q75_h2_box_3.webp", "author_url": ""}]}}
|
||||
@@ -1 +1 @@
|
||||
{"source": [{"type": "entry", "author": {"type": "card", "name": "Programming Channel", "photo": "https://avatars.webmention.io/files.mastodon.social/53dcc6ece2e0abd79a8aa637b9109d33bab0fa02e6536db85fd6c18ebc662722.png", "url": "https://newsmast.community/@programming"}, "url": "https://mastodon.social/@fundor333/115107384713745917#reblogged-by-111653091517742065", "published": null, "wm-received": "2025-08-28T16:48:01Z", "wm-id": 1934226, "wm-source": "https://brid.gy/repost/mastodon/@fundor333@mastodon.social/115107384713745917/111653091517742065", "wm-target": "https://fundor333.com/micro/2025/08/going-to-pydatave/", "wm-protocol": "webmention", "repost-of": "https://fundor333.com/micro/2025/08/going-to-pydatave/", "wm-property": "repost-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "fundor333", "photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "url": "https://bsky.app/profile/fundor333.bsky.social"}, "url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3lxhyedafgt2c", "published": "2025-08-28T16:27:53+00:00", "wm-received": "2025-08-28T16:42:46Z", "wm-id": 1934221, "wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3lxhyedafgt2c%23bridgy-fed-create", "wm-target": "https://fundor333.com/micro/2025/08/going-to-pydatave/", "wm-protocol": "webmention", "content": {"html": "Going to PyDataVe. I am curiosus of the tech we will see and try\n\n<a href=\"https://bsky.app/search?q=%23pydata\">#pydata</a> <a href=\"https://bsky.app/search?q=%23pydatave\">#pydatave</a> <a href=\"https://bsky.app/search?q=%23python\">#python</a> <a href=\"https://bsky.app/search?q=%23data\">#data</a> (<a href=\"https://fundor333.com/micro/2025/08/going-to-pydatave/\">https://fundor333.com/micro/2025/08/going-to-pydatave/</a>)", "text": "Going to PyDataVe. I am curiosus of the tech we will see and try\n\n#pydata #pydatave #python #data (https://fundor333.com/micro/2025/08/going-to-pydatave/)"}, "mention-of": "https://fundor333.com/micro/2025/08/going-to-pydatave/", "wm-property": "mention-of", "wm-private": false}], "stats": {"like-of": 0, "bookmark-of": 0, "mention-of": 1, "repost-of": 1, "in-reply-to": 0, "comments": [{"content": "Going to PyDataVe. I am curiosus of the tech we will see and try\n\n#pydata #pydatave #python #data (https://fundor333.com/micro/2025/08/going-to-pydatave/)", "link": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3lxhyedafgt2c%23bridgy-fed-create", "author_name": "fundor333", "author_photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "author_url": "https://bsky.app/profile/fundor333.bsky.social"}]}}
|
||||
{"source": [{"type": "entry", "author": {"type": "card", "name": "fundor333", "photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "url": "https://bsky.app/profile/fundor333.bsky.social"}, "url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3lxhyedafgt2c", "published": "2025-08-28T16:27:53+00:00", "wm-received": "2025-08-28T16:42:46Z", "wm-id": 1934221, "wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3lxhyedafgt2c%23bridgy-fed-create", "wm-target": "https://fundor333.com/micro/2025/08/going-to-pydatave/", "wm-protocol": "webmention", "content": {"html": "Going to PyDataVe. I am curiosus of the tech we will see and try\n\n<a href=\"https://bsky.app/search?q=%23pydata\">#pydata</a> <a href=\"https://bsky.app/search?q=%23pydatave\">#pydatave</a> <a href=\"https://bsky.app/search?q=%23python\">#python</a> <a href=\"https://bsky.app/search?q=%23data\">#data</a> (<a href=\"https://fundor333.com/micro/2025/08/going-to-pydatave/\">https://fundor333.com/micro/2025/08/going-to-pydatave/</a>)", "text": "Going to PyDataVe. I am curiosus of the tech we will see and try\n\n#pydata #pydatave #python #data (https://fundor333.com/micro/2025/08/going-to-pydatave/)"}, "mention-of": "https://fundor333.com/micro/2025/08/going-to-pydatave/", "wm-property": "mention-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "Programming Channel", "photo": "https://avatars.webmention.io/files.mastodon.social/53dcc6ece2e0abd79a8aa637b9109d33bab0fa02e6536db85fd6c18ebc662722.png", "url": "https://newsmast.community/@programming"}, "url": "https://mastodon.social/@fundor333/115107384713745917#reblogged-by-111653091517742065", "published": null, "wm-received": "2025-08-28T16:48:01Z", "wm-id": 1934226, "wm-source": "https://brid.gy/repost/mastodon/@fundor333@mastodon.social/115107384713745917/111653091517742065", "wm-target": "https://fundor333.com/micro/2025/08/going-to-pydatave/", "wm-protocol": "webmention", "repost-of": "https://fundor333.com/micro/2025/08/going-to-pydatave/", "wm-property": "repost-of", "wm-private": false}], "stats": {"like-of": 0, "bookmark-of": 0, "mention-of": 1, "repost-of": 1, "in-reply-to": 0, "comments": [{"content": "Going to PyDataVe. I am curiosus of the tech we will see and try\n\n#pydata #pydatave #python #data (https://fundor333.com/micro/2025/08/going-to-pydatave/)", "link": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3lxhyedafgt2c%23bridgy-fed-create", "author_name": "fundor333", "author_photo": "https://avatars.webmention.io/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg", "author_url": "https://bsky.app/profile/fundor333.bsky.social"}]}}
|
||||
@@ -1 +1 @@
|
||||
{"source": [{"type": "entry", "author": {"type": "card", "name": "Tim Schilling", "photo": "https://avatars.webmention.io/files.mastodon.social/f7907f28f7879c4ad0379c157057e83f49b33007d468b49fa02d649365ebae95.jpg", "url": "https://fosstodon.org/@CodenameTim"}, "url": "https://mastodon.social/@fundor333/114523252973692620#favorited-by-109328282814872974", "published": null, "wm-received": "2025-05-17T13:23:20Z", "wm-id": 1911861, "wm-source": "https://brid.gy/like/mastodon/@fundor333@mastodon.social/114523252973692620/109328282814872974", "wm-target": "https://fundor333.com/post/2022/django-with-barcode-and-qrcode/", "wm-protocol": "webmention", "like-of": "https://fundor333.com/post/2022/django-with-barcode-and-qrcode/", "wm-property": "like-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "Fundor333", "photo": "https://avatars.webmention.io/files.mastodon.social/36bc58e7595de593f520ba92ea9a8433b6dfde5a76f3f6d7d69755ac29007318.png", "url": "https://mastodon.social/@fundor333"}, "url": "https://mastodon.social/@fundor333/114525569599697131", "published": "2025-05-17T22:38:28+00:00", "wm-received": "2025-05-20T14:45:33Z", "wm-id": 1912378, "wm-source": "https://brid.gy/comment/mastodon/@fundor333@mastodon.social/114523473282741682/114525569599697131", "wm-target": "https://fundor333.com/post/2022/django-with-barcode-and-qrcode/", "wm-protocol": "webmention", "content": {"html": "<p><span class=\"h-card\"><a href=\"https://mastodon.social/@l3viathan\" class=\"u-url\">@<span>l3viathan</span></a></span> this is a fast one</p>", "text": "@l3viathan this is a fast one"}, "in-reply-to": "https://fundor333.com/post/2022/django-with-barcode-and-qrcode/", "wm-property": "in-reply-to", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "Fundor333", "photo": "https://avatars.webmention.io/files.mastodon.social/36bc58e7595de593f520ba92ea9a8433b6dfde5a76f3f6d7d69755ac29007318.png", "url": "https://mastodon.social/@fundor333"}, "url": "https://mastodon.social/@fundor333/114523550157664441", "published": "2025-05-17T14:04:54+00:00", "wm-received": "2025-05-17T14:26:37Z", "wm-id": 1911874, "wm-source": "https://brid.gy/comment/mastodon/@fundor333@mastodon.social/114523473282741682/114523550157664441", "wm-target": "https://fundor333.com/post/2022/django-with-barcode-and-qrcode/", "wm-protocol": "webmention", "content": {"html": "<p><span class=\"h-card\"><a href=\"https://mastodon.social/@l3viathan\" class=\"u-url\">@<span>l3viathan</span></a></span> I use this with my mobile phone (iOS) and a tablet (oooooold Android) and I don t have problems with the speed but with the room lights</p>", "text": "@l3viathan I use this with my mobile phone (iOS) and a tablet (oooooold Android) and I don t have problems with the speed but with the room lights"}, "in-reply-to": "https://fundor333.com/post/2022/django-with-barcode-and-qrcode/", "wm-property": "in-reply-to", "wm-private": false}], "stats": {"like-of": 1, "bookmark-of": 0, "mention-of": 0, "repost-of": 0, "in-reply-to": 2, "comments": [{"content": "@l3viathan this is a fast one", "link": "https://brid.gy/comment/mastodon/@fundor333@mastodon.social/114523473282741682/114525569599697131", "author_name": "Fundor333", "author_photo": "https://avatars.webmention.io/files.mastodon.social/36bc58e7595de593f520ba92ea9a8433b6dfde5a76f3f6d7d69755ac29007318.png", "author_url": "https://mastodon.social/@fundor333"}, {"content": "@l3viathan I use this with my mobile phone (iOS) and a tablet (oooooold Android) and I don t have problems with the speed but with the room lights", "link": "https://brid.gy/comment/mastodon/@fundor333@mastodon.social/114523473282741682/114523550157664441", "author_name": "Fundor333", "author_photo": "https://avatars.webmention.io/files.mastodon.social/36bc58e7595de593f520ba92ea9a8433b6dfde5a76f3f6d7d69755ac29007318.png", "author_url": "https://mastodon.social/@fundor333"}]}}
|
||||
{"source": [{"type": "entry", "author": {"type": "card", "name": "Fundor333", "photo": "https://avatars.webmention.io/files.mastodon.social/36bc58e7595de593f520ba92ea9a8433b6dfde5a76f3f6d7d69755ac29007318.png", "url": "https://mastodon.social/@fundor333"}, "url": "https://mastodon.social/@fundor333/114523550157664441", "published": "2025-05-17T14:04:54+00:00", "wm-received": "2025-05-17T14:26:37Z", "wm-id": 1911874, "wm-source": "https://brid.gy/comment/mastodon/@fundor333@mastodon.social/114523473282741682/114523550157664441", "wm-target": "https://fundor333.com/post/2022/django-with-barcode-and-qrcode/", "wm-protocol": "webmention", "content": {"html": "<p><span class=\"h-card\"><a href=\"https://mastodon.social/@l3viathan\" class=\"u-url\">@<span>l3viathan</span></a></span> I use this with my mobile phone (iOS) and a tablet (oooooold Android) and I don t have problems with the speed but with the room lights</p>", "text": "@l3viathan I use this with my mobile phone (iOS) and a tablet (oooooold Android) and I don t have problems with the speed but with the room lights"}, "in-reply-to": "https://fundor333.com/post/2022/django-with-barcode-and-qrcode/", "wm-property": "in-reply-to", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "Fundor333", "photo": "https://avatars.webmention.io/files.mastodon.social/36bc58e7595de593f520ba92ea9a8433b6dfde5a76f3f6d7d69755ac29007318.png", "url": "https://mastodon.social/@fundor333"}, "url": "https://mastodon.social/@fundor333/114525569599697131", "published": "2025-05-17T22:38:28+00:00", "wm-received": "2025-05-20T14:45:33Z", "wm-id": 1912378, "wm-source": "https://brid.gy/comment/mastodon/@fundor333@mastodon.social/114523473282741682/114525569599697131", "wm-target": "https://fundor333.com/post/2022/django-with-barcode-and-qrcode/", "wm-protocol": "webmention", "content": {"html": "<p><span class=\"h-card\"><a href=\"https://mastodon.social/@l3viathan\" class=\"u-url\">@<span>l3viathan</span></a></span> this is a fast one</p>", "text": "@l3viathan this is a fast one"}, "in-reply-to": "https://fundor333.com/post/2022/django-with-barcode-and-qrcode/", "wm-property": "in-reply-to", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "Tim Schilling", "photo": "https://avatars.webmention.io/files.mastodon.social/f7907f28f7879c4ad0379c157057e83f49b33007d468b49fa02d649365ebae95.jpg", "url": "https://fosstodon.org/@CodenameTim"}, "url": "https://mastodon.social/@fundor333/114523252973692620#favorited-by-109328282814872974", "published": null, "wm-received": "2025-05-17T13:23:20Z", "wm-id": 1911861, "wm-source": "https://brid.gy/like/mastodon/@fundor333@mastodon.social/114523252973692620/109328282814872974", "wm-target": "https://fundor333.com/post/2022/django-with-barcode-and-qrcode/", "wm-protocol": "webmention", "like-of": "https://fundor333.com/post/2022/django-with-barcode-and-qrcode/", "wm-property": "like-of", "wm-private": false}], "stats": {"like-of": 1, "bookmark-of": 0, "mention-of": 0, "repost-of": 0, "in-reply-to": 2, "comments": [{"content": "@l3viathan I use this with my mobile phone (iOS) and a tablet (oooooold Android) and I don t have problems with the speed but with the room lights", "link": "https://brid.gy/comment/mastodon/@fundor333@mastodon.social/114523473282741682/114523550157664441", "author_name": "Fundor333", "author_photo": "https://avatars.webmention.io/files.mastodon.social/36bc58e7595de593f520ba92ea9a8433b6dfde5a76f3f6d7d69755ac29007318.png", "author_url": "https://mastodon.social/@fundor333"}, {"content": "@l3viathan this is a fast one", "link": "https://brid.gy/comment/mastodon/@fundor333@mastodon.social/114523473282741682/114525569599697131", "author_name": "Fundor333", "author_photo": "https://avatars.webmention.io/files.mastodon.social/36bc58e7595de593f520ba92ea9a8433b6dfde5a76f3f6d7d69755ac29007318.png", "author_url": "https://mastodon.social/@fundor333"}]}}
|
||||
@@ -1 +1 @@
|
||||
{"source": [{"type": "entry", "author": {"type": "card", "name": "\ud83c\uddfa\ud83c\udde6\ud83c\udff3\ufe0f\u200d\ud83c\udf08\ud83d\udc0dFundor 333\ud83d\udc33\ud83d\udc68\u200d\ud83d\udcbb", "photo": "https://avatars.webmention.io/pbs.twimg.com/c3d085f0266cb157220a9e6312c26ccaeb56e5c4d2d501cf0d6426f05c36890e.jpg", "url": "https://twitter.com/fundor333"}, "url": "https://twitter.com/fundor333/status/1571761030824337409", "published": "2022-09-19T07:20:06+00:00", "wm-received": "2022-09-19T07:30:05Z", "wm-id": 1522347, "wm-source": "https://brid.gy/comment/twitter/fundor333/1571209821579317249/1571761030824337409", "wm-target": "https://fundor333.com/post/2022/github-copilot-write-my-post/", "wm-protocol": "webmention", "photo": ["https://pbs.twimg.com/media/FdAEUv1X0AEHAxf.jpg"], "in-reply-to": "https://fundor333.com/post/2022/github-copilot-write-my-post/", "wm-property": "in-reply-to", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "chringel.dev", "photo": "https://avatars.webmention.io/pbs.twimg.com/fe9de013c66a0cf94194afef099d4a6d11de39de0714f731f25094a68f0a467f.png", "url": "https://twitter.com/DeEgge"}, "url": "https://twitter.com/fundor333/status/1571209821579317249#favorited-by-367205669", "published": null, "wm-received": "2022-09-18T11:00:04Z", "wm-id": 1521995, "wm-source": "https://brid.gy/like/twitter/fundor333/1571209821579317249/367205669", "wm-target": "https://fundor333.com/post/2022/github-copilot-write-my-post/", "wm-protocol": "webmention", "like-of": "https://fundor333.com/post/2022/github-copilot-write-my-post/", "wm-property": "like-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "Juna Salviati", "photo": "https://avatars.webmention.io/pbs.twimg.com/db009297897afff07f3d2f4e2b0975db90fc93750fb726d947439bff65268c71.jpg", "url": "https://twitter.com/1littleendian"}, "url": "https://twitter.com/1littleendian/status/1571418211077263360", "published": "2022-09-18T08:37:51+00:00", "wm-received": "2022-09-18T10:17:19Z", "wm-id": 1521960, "wm-source": "https://brid.gy/comment/twitter/fundor333/1571209821579317249/1571418211077263360", "wm-target": "https://fundor333.com/post/2022/github-copilot-write-my-post/", "wm-protocol": "webmention", "content": {"html": "<Kubrick intensifies>\n<a class=\"u-mention\" href=\"https://fundor333.com/\"></a>\n<a class=\"u-mention\" href=\"https://twitter.com/fundor333\"></a>", "text": "<Kubrick intensifies>"}, "in-reply-to": "https://fundor333.com/post/2022/github-copilot-write-my-post/", "wm-property": "in-reply-to", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "Juna Salviati", "photo": "https://avatars.webmention.io/pbs.twimg.com/db009297897afff07f3d2f4e2b0975db90fc93750fb726d947439bff65268c71.jpg", "url": "https://twitter.com/1littleendian"}, "url": "https://twitter.com/fundor333/status/1571209821579317249#favorited-by-777766650", "published": null, "wm-received": "2022-09-18T10:17:19Z", "wm-id": 1521961, "wm-source": "https://brid.gy/like/twitter/fundor333/1571209821579317249/777766650", "wm-target": "https://fundor333.com/post/2022/github-copilot-write-my-post/", "wm-protocol": "webmention", "like-of": "https://fundor333.com/post/2022/github-copilot-write-my-post/", "wm-property": "like-of", "wm-private": false}], "stats": {"like-of": 2, "bookmark-of": 0, "mention-of": 0, "repost-of": 0, "in-reply-to": 2, "comments": [{"content": "<Kubrick intensifies>", "link": "https://brid.gy/comment/twitter/fundor333/1571209821579317249/1571418211077263360", "author_name": "Juna Salviati", "author_photo": "https://avatars.webmention.io/pbs.twimg.com/db009297897afff07f3d2f4e2b0975db90fc93750fb726d947439bff65268c71.jpg", "author_url": "https://twitter.com/1littleendian"}]}}
|
||||
{"source": [{"type": "entry", "author": {"type": "card", "name": "Juna Salviati", "photo": "https://avatars.webmention.io/pbs.twimg.com/db009297897afff07f3d2f4e2b0975db90fc93750fb726d947439bff65268c71.jpg", "url": "https://twitter.com/1littleendian"}, "url": "https://twitter.com/1littleendian/status/1571418211077263360", "published": "2022-09-18T08:37:51+00:00", "wm-received": "2022-09-18T10:17:19Z", "wm-id": 1521960, "wm-source": "https://brid.gy/comment/twitter/fundor333/1571209821579317249/1571418211077263360", "wm-target": "https://fundor333.com/post/2022/github-copilot-write-my-post/", "wm-protocol": "webmention", "content": {"html": "<Kubrick intensifies>\n<a class=\"u-mention\" href=\"https://fundor333.com/\"></a>\n<a class=\"u-mention\" href=\"https://twitter.com/fundor333\"></a>", "text": "<Kubrick intensifies>"}, "in-reply-to": "https://fundor333.com/post/2022/github-copilot-write-my-post/", "wm-property": "in-reply-to", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "chringel.dev", "photo": "https://avatars.webmention.io/pbs.twimg.com/fe9de013c66a0cf94194afef099d4a6d11de39de0714f731f25094a68f0a467f.png", "url": "https://twitter.com/DeEgge"}, "url": "https://twitter.com/fundor333/status/1571209821579317249#favorited-by-367205669", "published": null, "wm-received": "2022-09-18T11:00:04Z", "wm-id": 1521995, "wm-source": "https://brid.gy/like/twitter/fundor333/1571209821579317249/367205669", "wm-target": "https://fundor333.com/post/2022/github-copilot-write-my-post/", "wm-protocol": "webmention", "like-of": "https://fundor333.com/post/2022/github-copilot-write-my-post/", "wm-property": "like-of", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "\ud83c\uddfa\ud83c\udde6\ud83c\udff3\ufe0f\u200d\ud83c\udf08\ud83d\udc0dFundor 333\ud83d\udc33\ud83d\udc68\u200d\ud83d\udcbb", "photo": "https://avatars.webmention.io/pbs.twimg.com/c3d085f0266cb157220a9e6312c26ccaeb56e5c4d2d501cf0d6426f05c36890e.jpg", "url": "https://twitter.com/fundor333"}, "url": "https://twitter.com/fundor333/status/1571761030824337409", "published": "2022-09-19T07:20:06+00:00", "wm-received": "2022-09-19T07:30:05Z", "wm-id": 1522347, "wm-source": "https://brid.gy/comment/twitter/fundor333/1571209821579317249/1571761030824337409", "wm-target": "https://fundor333.com/post/2022/github-copilot-write-my-post/", "wm-protocol": "webmention", "photo": ["https://pbs.twimg.com/media/FdAEUv1X0AEHAxf.jpg"], "in-reply-to": "https://fundor333.com/post/2022/github-copilot-write-my-post/", "wm-property": "in-reply-to", "wm-private": false}, {"type": "entry", "author": {"type": "card", "name": "Juna Salviati", "photo": "https://avatars.webmention.io/pbs.twimg.com/db009297897afff07f3d2f4e2b0975db90fc93750fb726d947439bff65268c71.jpg", "url": "https://twitter.com/1littleendian"}, "url": "https://twitter.com/fundor333/status/1571209821579317249#favorited-by-777766650", "published": null, "wm-received": "2022-09-18T10:17:19Z", "wm-id": 1521961, "wm-source": "https://brid.gy/like/twitter/fundor333/1571209821579317249/777766650", "wm-target": "https://fundor333.com/post/2022/github-copilot-write-my-post/", "wm-protocol": "webmention", "like-of": "https://fundor333.com/post/2022/github-copilot-write-my-post/", "wm-property": "like-of", "wm-private": false}], "stats": {"like-of": 2, "bookmark-of": 0, "mention-of": 0, "repost-of": 0, "in-reply-to": 2, "comments": [{"content": "<Kubrick intensifies>", "link": "https://brid.gy/comment/twitter/fundor333/1571209821579317249/1571418211077263360", "author_name": "Juna Salviati", "author_photo": "https://avatars.webmention.io/pbs.twimg.com/db009297897afff07f3d2f4e2b0975db90fc93750fb726d947439bff65268c71.jpg", "author_url": "https://twitter.com/1littleendian"}]}}
|
||||
@@ -34,7 +34,7 @@
|
||||
<title>{{ .Title }}</title>
|
||||
<link>{{ .Permalink }}</link>
|
||||
<pubDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</pubDate>
|
||||
{{ with .Site.Params.author.email }}<author>{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}</author>{{end}}
|
||||
{{ with .Site.Params.Author.email }}<author>{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}</author>{{end}}
|
||||
<guid>{{ .Permalink }}</guid>
|
||||
{{ if eq $rssFeedDescription "summary"}}
|
||||
<description>{{ .Summary | html }}</description>
|
||||
|
||||
@@ -1,17 +0,0 @@
|
||||
{{ $id := string (.Get 0) }}
|
||||
{{ $url := printf "https://xkcd.com/%s/info.0.json" $id }}
|
||||
|
||||
{{ with resources.GetRemote $url }}
|
||||
{{ $data := . | transform.Unmarshal }}
|
||||
<div class="xkcd-container">
|
||||
<h4 class="xkcd-title">Xkcd - {{ $data.title }}</h4>
|
||||
<a href="https://xkcd.com/{{ $id }}/" target="_blank" rel="noopener">
|
||||
<img src="{{ $data.img }}" alt="{{ $data.alt }}" title="{{ $data.alt }}" class="xkcd-image u-photo">
|
||||
</a>
|
||||
<p class="xkcd-subtitle">
|
||||
<em>{{ $data.alt }}</em>
|
||||
</p>
|
||||
</div>
|
||||
{{ else }}
|
||||
<p>Impossibile recuperare il fumetto xkcd #{{ $id }}.</p>
|
||||
{{ end }}
|
||||
69
package-lock.json
generated
@@ -8,10 +8,10 @@
|
||||
"name": "fundor333.com",
|
||||
"version": "0.0.0",
|
||||
"dependencies": {
|
||||
"autoprefixer": "^10.4.27",
|
||||
"autoprefixer": "^10.4.23",
|
||||
"cjs-loader": "^0.1.0",
|
||||
"lunr": "^2.3.9",
|
||||
"postcss": "^8.5.8",
|
||||
"postcss": "^8.5.5",
|
||||
"postcss-cli": "^11.0.1"
|
||||
},
|
||||
"engines": {
|
||||
@@ -57,9 +57,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/autoprefixer": {
|
||||
"version": "10.4.27",
|
||||
"resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.27.tgz",
|
||||
"integrity": "sha512-NP9APE+tO+LuJGn7/9+cohklunJsXWiaWEfV3si4Gi/XHDwVNgkwr1J3RQYFIvPy76GmJ9/bW8vyoU1LcxwKHA==",
|
||||
"version": "10.4.24",
|
||||
"resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.24.tgz",
|
||||
"integrity": "sha512-uHZg7N9ULTVbutaIsDRoUkoS8/h3bdsmVJYZ5l3wv8Cp/6UIIoRDm90hZ+BwxUj/hGBEzLxdHNSKuFpn8WOyZw==",
|
||||
"funding": [
|
||||
{
|
||||
"type": "opencollective",
|
||||
@@ -77,7 +77,7 @@
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"browserslist": "^4.28.1",
|
||||
"caniuse-lite": "^1.0.30001774",
|
||||
"caniuse-lite": "^1.0.30001766",
|
||||
"fraction.js": "^5.3.4",
|
||||
"picocolors": "^1.1.1",
|
||||
"postcss-value-parser": "^4.2.0"
|
||||
@@ -93,9 +93,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/baseline-browser-mapping": {
|
||||
"version": "2.10.12",
|
||||
"resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.12.tgz",
|
||||
"integrity": "sha512-qyq26DxfY4awP2gIRXhhLWfwzwI+N5Nxk6iQi8EFizIaWIjqicQTE4sLnZZVdeKPRcVNoJOkkpfzoIYuvCKaIQ==",
|
||||
"version": "2.10.0",
|
||||
"resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.0.tgz",
|
||||
"integrity": "sha512-lIyg0szRfYbiy67j9KN8IyeD7q7hcmqnJ1ddWmNt19ItGpNN64mnllmxUNFIOdOm6by97jlL6wfpTTJrmnjWAA==",
|
||||
"license": "Apache-2.0",
|
||||
"bin": {
|
||||
"baseline-browser-mapping": "dist/cli.cjs"
|
||||
@@ -147,6 +147,7 @@
|
||||
}
|
||||
],
|
||||
"license": "MIT",
|
||||
"peer": true,
|
||||
"dependencies": {
|
||||
"baseline-browser-mapping": "^2.9.0",
|
||||
"caniuse-lite": "^1.0.30001759",
|
||||
@@ -162,9 +163,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/caniuse-lite": {
|
||||
"version": "1.0.30001782",
|
||||
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001782.tgz",
|
||||
"integrity": "sha512-dZcaJLJeDMh4rELYFw1tvSn1bhZWYFOt468FcbHHxx/Z/dFidd1I6ciyFdi3iwfQCyOjqo9upF6lGQYtMiJWxw==",
|
||||
"version": "1.0.30001770",
|
||||
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001770.tgz",
|
||||
"integrity": "sha512-x/2CLQ1jHENRbHg5PSId2sXq1CIO1CISvwWAj027ltMVG2UNgW+w9oH2+HzgEIRFembL8bUlXtfbBHR1fCg2xw==",
|
||||
"funding": [
|
||||
{
|
||||
"type": "opencollective",
|
||||
@@ -253,9 +254,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/electron-to-chromium": {
|
||||
"version": "1.5.328",
|
||||
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.328.tgz",
|
||||
"integrity": "sha512-QNQ5l45DzYytThO21403XN3FvK0hOkWDG8viNf6jqS42msJ8I4tGDSpBCgvDRRPnkffafiwAym2X2eHeGD2V0w==",
|
||||
"version": "1.5.302",
|
||||
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.302.tgz",
|
||||
"integrity": "sha512-sM6HAN2LyK82IyPBpznDRqlTQAtuSaO+ShzFiWTvoMJLHyZ+Y39r8VMfHzwbU8MVBzQ4Wdn85+wlZl2TLGIlwg==",
|
||||
"license": "ISC"
|
||||
},
|
||||
"node_modules/emoji-regex": {
|
||||
@@ -299,9 +300,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/fs-extra": {
|
||||
"version": "11.3.4",
|
||||
"resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.3.4.tgz",
|
||||
"integrity": "sha512-CTXd6rk/M3/ULNQj8FBqBWHYBVYybQ3VPBw0xGKFe3tuH7ytT6ACnvzpIQ3UZtB8yvUKC2cXn1a+x+5EVQLovA==",
|
||||
"version": "11.3.3",
|
||||
"resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.3.3.tgz",
|
||||
"integrity": "sha512-VWSRii4t0AFm6ixFFmLLx1t7wS1gh+ckoa84aOeapGum0h+EZd1EhEumSB+ZdDLnEPuucsVB9oB7cxJHap6Afg==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"graceful-fs": "^4.2.0",
|
||||
@@ -453,9 +454,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/node-releases": {
|
||||
"version": "2.0.36",
|
||||
"resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.36.tgz",
|
||||
"integrity": "sha512-TdC8FSgHz8Mwtw9g5L4gR/Sh9XhSP/0DEkQxfEFXOpiul5IiHgHan2VhYYb6agDSfp4KuvltmGApc8HMgUrIkA==",
|
||||
"version": "2.0.27",
|
||||
"resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.27.tgz",
|
||||
"integrity": "sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==",
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/normalize-path": {
|
||||
@@ -474,9 +475,9 @@
|
||||
"license": "ISC"
|
||||
},
|
||||
"node_modules/picomatch": {
|
||||
"version": "2.3.2",
|
||||
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.2.tgz",
|
||||
"integrity": "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==",
|
||||
"version": "2.3.1",
|
||||
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
|
||||
"integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">=8.6"
|
||||
@@ -495,9 +496,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/postcss": {
|
||||
"version": "8.5.8",
|
||||
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.8.tgz",
|
||||
"integrity": "sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==",
|
||||
"version": "8.5.6",
|
||||
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz",
|
||||
"integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==",
|
||||
"funding": [
|
||||
{
|
||||
"type": "opencollective",
|
||||
@@ -513,6 +514,7 @@
|
||||
}
|
||||
],
|
||||
"license": "MIT",
|
||||
"peer": true,
|
||||
"dependencies": {
|
||||
"nanoid": "^3.3.11",
|
||||
"picocolors": "^1.1.1",
|
||||
@@ -747,10 +749,11 @@
|
||||
}
|
||||
},
|
||||
"node_modules/tinyglobby/node_modules/picomatch": {
|
||||
"version": "4.0.4",
|
||||
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz",
|
||||
"integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==",
|
||||
"version": "4.0.3",
|
||||
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz",
|
||||
"integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==",
|
||||
"license": "MIT",
|
||||
"peer": true,
|
||||
"engines": {
|
||||
"node": ">=12"
|
||||
},
|
||||
@@ -836,9 +839,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/yaml": {
|
||||
"version": "2.8.3",
|
||||
"resolved": "https://registry.npmjs.org/yaml/-/yaml-2.8.3.tgz",
|
||||
"integrity": "sha512-AvbaCLOO2Otw/lW5bmh9d/WEdcDFdQp2Z2ZUH3pX9U2ihyUY0nvLv7J6TrWowklRGPYbB/IuIMfYgxaCPg5Bpg==",
|
||||
"version": "2.8.2",
|
||||
"resolved": "https://registry.npmjs.org/yaml/-/yaml-2.8.2.tgz",
|
||||
"integrity": "sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A==",
|
||||
"license": "ISC",
|
||||
"bin": {
|
||||
"yaml": "bin.mjs"
|
||||
|
||||
@@ -4,10 +4,10 @@
|
||||
"url": "https://fundor333.com/"
|
||||
},
|
||||
"dependencies": {
|
||||
"autoprefixer": "^10.4.27",
|
||||
"autoprefixer": "^10.4.23",
|
||||
"cjs-loader": "^0.1.0",
|
||||
"lunr": "^2.3.9",
|
||||
"postcss": "^8.5.8",
|
||||
"postcss": "^8.5.5",
|
||||
"postcss-cli": "^11.0.1"
|
||||
},
|
||||
"description": "The source code for fundor333.com",
|
||||
|
||||
@@ -6,9 +6,9 @@ beautifulsoup4==4.14.3
|
||||
# via fundor333-github-io
|
||||
bleach==6.3.0
|
||||
# via fundor333-github-io
|
||||
certifi==2026.2.25
|
||||
certifi==2026.1.4
|
||||
# via requests
|
||||
charset-normalizer==3.4.6
|
||||
charset-normalizer==3.4.4
|
||||
# via requests
|
||||
click==8.3.1
|
||||
# via
|
||||
@@ -16,49 +16,27 @@ click==8.3.1
|
||||
# weeknotebot
|
||||
colorama==0.4.6 ; sys_platform == 'win32'
|
||||
# via click
|
||||
contourpy==1.3.3
|
||||
# via matplotlib
|
||||
cycler==0.12.1
|
||||
# via matplotlib
|
||||
feedparser==6.0.12
|
||||
# via
|
||||
# fundor333-github-io
|
||||
# weeknotebot
|
||||
fonttools==4.62.1
|
||||
# via matplotlib
|
||||
idna==3.11
|
||||
# via requests
|
||||
kiwisolver==1.5.0
|
||||
# via matplotlib
|
||||
lxml==6.0.2
|
||||
# via fundor333-github-io
|
||||
markdown-it-py==4.0.0
|
||||
# via rich
|
||||
marshmallow==3.26.2
|
||||
# via weeknotebot
|
||||
matplotlib==3.10.8
|
||||
# via fundor333-github-io
|
||||
mdurl==0.1.2
|
||||
# via markdown-it-py
|
||||
numpy==2.4.4
|
||||
# via
|
||||
# contourpy
|
||||
# matplotlib
|
||||
packaging==26.0
|
||||
# via
|
||||
# marshmallow
|
||||
# matplotlib
|
||||
# via marshmallow
|
||||
pillow==12.1.1
|
||||
# via
|
||||
# fundor333-github-io
|
||||
# matplotlib
|
||||
pygments==2.20.0
|
||||
# via fundor333-github-io
|
||||
pygments==2.19.2
|
||||
# via rich
|
||||
pyparsing==3.3.2
|
||||
# via matplotlib
|
||||
python-dateutil==2.9.0.post0
|
||||
# via matplotlib
|
||||
python-dotenv==1.2.2
|
||||
python-dotenv==1.2.1
|
||||
# via fundor333-github-io
|
||||
python-frontmatter==1.1.0
|
||||
# via fundor333-github-io
|
||||
@@ -66,7 +44,7 @@ pyyaml==6.0.3
|
||||
# via
|
||||
# fundor333-github-io
|
||||
# python-frontmatter
|
||||
requests==2.33.0
|
||||
requests==2.32.5
|
||||
# via
|
||||
# fundor333-github-io
|
||||
# weeknotebot
|
||||
@@ -78,11 +56,9 @@ sgmllib3k==1.0.0
|
||||
# via feedparser
|
||||
shellingham==1.5.4
|
||||
# via typer
|
||||
six==1.17.0
|
||||
# via python-dateutil
|
||||
soupsieve==2.8.3
|
||||
# via beautifulsoup4
|
||||
typer==0.24.1
|
||||
typer==0.24.0
|
||||
# via fundor333-github-io
|
||||
typing-extensions==4.15.0
|
||||
# via beautifulsoup4
|
||||
|
||||
@@ -1 +1 @@
|
||||
{"Target":"add.min.ccd2b4b9ceb675fabadad53f60dfdfc15f8c9ac2e9f43bdadc77c75132bd005f.css","MediaType":"text/css","Data":{"Integrity":"sha256-zNK0uc62dfq62tU/YN/fwV+MmsLp9Dva3HfHUTK9AF8="}}
|
||||
{"Target":"add.min.33d130b2d4f20152c6ed4410e3edc02aff59e77cae5bac84015541343a158ffb.css","MediaType":"text/css","Data":{"Integrity":"sha256-M9EwstTyAVLG7UQQ4+3AKv9Z53yuW6yEAVVBNDoVj/s="}}
|
||||
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.1 KiB |
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 6.1 KiB After Width: | Height: | Size: 5.9 KiB |
@@ -1 +1,40 @@
|
||||
{"Exif":{"Lat":0,"Long":0,"Date":"2024-08-03T18:13:41+02:00","Tags":{"ApertureValue":5.600000670860214,"BrightnessValue|*imagemeta.rat[int32]":"431/50","CreateDate":"2024:08:03 18:13:41","CustomRendered|uint16":"0","DateTimeOriginal":"2024:08:03 18:13:41","ExposureCompensation|*imagemeta.rat[int32]":"-33/100","ExposureTime|*imagemeta.rat[uint32]":"1/950","FNumber|*imagemeta.rat[uint32]":"28/5","FileSource|uint8":"3","FocalLengthIn35mmFormat|uint16":"41","FocalLength|*imagemeta.rat[uint32]":"27","ISO|uint16":"320","LensInfo":"27 27 2.8 2.8","LensMake":"FUJIFILM","LensModel":"XF27mmF2.8 R WR","LensSerialNumber":"2CA04105","LightSource|uint16":"0","Make":"FUJIFILM","MaxApertureValue":2.82842712474619,"Model":"X-T30 II","ModifyDate":"2024:08:19 00:13:49","OffsetTime":"+02:00","OffsetTimeDigitized":"+02:00","OffsetTimeOriginal":"+02:00","SceneCaptureType|uint16":"1","SceneType|uint8":"1","SensitivityType|uint16":"1","SerialNumber":"3D015250","ShutterSpeedValue":0.001052631362406979,"Software":"Adobe Lightroom 7.5 (Macintosh)","SubjectDistanceRange|uint16":"0"}}}
|
||||
{
|
||||
"Exif": {
|
||||
"Date": "2024-08-03T18:13:41+02:00",
|
||||
"Lat": 0,
|
||||
"Long": 0,
|
||||
"Tags": {
|
||||
"ApertureValue": 5.600000670860214,
|
||||
"BrightnessValue|*imagemeta.rat[int32]": "431/50",
|
||||
"CreateDate": "2024:08:03 18:13:41",
|
||||
"CustomRendered|uint16": "0",
|
||||
"DateTimeOriginal": "2024:08:03 18:13:41",
|
||||
"ExposureCompensation|*imagemeta.rat[int32]": "-33/100",
|
||||
"ExposureTime|*imagemeta.rat[uint32]": "1/950",
|
||||
"FNumber|*imagemeta.rat[uint32]": "28/5",
|
||||
"FileSource|uint8": "3",
|
||||
"FocalLengthIn35mmFormat|uint16": "41",
|
||||
"FocalLength|*imagemeta.rat[uint32]": "27",
|
||||
"ISO|uint16": "320",
|
||||
"LensInfo": "27 27 2.8 2.8",
|
||||
"LensMake": "FUJIFILM",
|
||||
"LensModel": "XF27mmF2.8 R WR",
|
||||
"LensSerialNumber": "2CA04105",
|
||||
"LightSource|uint16": "0",
|
||||
"Make": "FUJIFILM",
|
||||
"MaxApertureValue": 2.82842712474619,
|
||||
"Model": "X-T30 II",
|
||||
"ModifyDate": "2024:08:19 00:13:49",
|
||||
"OffsetTime": "+02:00",
|
||||
"OffsetTimeDigitized": "+02:00",
|
||||
"OffsetTimeOriginal": "+02:00",
|
||||
"SceneCaptureType|uint16": "1",
|
||||
"SceneType|uint8": "1",
|
||||
"SensitivityType|uint16": "1",
|
||||
"SerialNumber": "3D015250",
|
||||
"ShutterSpeedValue": 0.001052631362406979,
|
||||
"Software": "Adobe Lightroom 7.5 (Macintosh)",
|
||||
"SubjectDistanceRange|uint16": "0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1 +1,40 @@
|
||||
{"Exif":{"Lat":0,"Long":0,"Date":"2024-07-02T16:15:14+02:00","Tags":{"ApertureValue":2.800000335430107,"BrightnessValue|*imagemeta.rat[int32]":"-23/25","CreateDate":"2024:07:02 16:15:14","CustomRendered|uint16":"0","DateTimeOriginal":"2024:07:02 16:15:14","ExposureCompensation|*imagemeta.rat[int32]":"0","ExposureTime|*imagemeta.rat[uint32]":"1/60","FNumber|*imagemeta.rat[uint32]":"14/5","FileSource|uint8":"3","FocalLengthIn35mmFormat|uint16":"41","FocalLength|*imagemeta.rat[uint32]":"27","ISO|uint16":"640","LensInfo":"27 27 2.8 2.8","LensMake":"FUJIFILM","LensModel":"XF27mmF2.8 R WR","LensSerialNumber":"2CA04105","LightSource|uint16":"0","Make":"FUJIFILM","MaxApertureValue":2.82842712474619,"Model":"X-T30 II","ModifyDate":"2024:08:21 23:47:45","OffsetTime":"+02:00","OffsetTimeDigitized":"+02:00","OffsetTimeOriginal":"+02:00","SceneCaptureType|uint16":"0","SceneType|uint8":"1","SensitivityType|uint16":"1","SerialNumber":"3D015250","ShutterSpeedValue":0.016666661994953737,"Software":"Adobe Lightroom 7.5 (Macintosh)","SubjectDistanceRange|uint16":"0"}}}
|
||||
{
|
||||
"Exif": {
|
||||
"Date": "2024-07-02T16:15:14+02:00",
|
||||
"Lat": 0,
|
||||
"Long": 0,
|
||||
"Tags": {
|
||||
"ApertureValue": 2.800000335430107,
|
||||
"BrightnessValue|*imagemeta.rat[int32]": "-23/25",
|
||||
"CreateDate": "2024:07:02 16:15:14",
|
||||
"CustomRendered|uint16": "0",
|
||||
"DateTimeOriginal": "2024:07:02 16:15:14",
|
||||
"ExposureCompensation|*imagemeta.rat[int32]": "0",
|
||||
"ExposureTime|*imagemeta.rat[uint32]": "1/60",
|
||||
"FNumber|*imagemeta.rat[uint32]": "14/5",
|
||||
"FileSource|uint8": "3",
|
||||
"FocalLengthIn35mmFormat|uint16": "41",
|
||||
"FocalLength|*imagemeta.rat[uint32]": "27",
|
||||
"ISO|uint16": "640",
|
||||
"LensInfo": "27 27 2.8 2.8",
|
||||
"LensMake": "FUJIFILM",
|
||||
"LensModel": "XF27mmF2.8 R WR",
|
||||
"LensSerialNumber": "2CA04105",
|
||||
"LightSource|uint16": "0",
|
||||
"Make": "FUJIFILM",
|
||||
"MaxApertureValue": 2.82842712474619,
|
||||
"Model": "X-T30 II",
|
||||
"ModifyDate": "2024:08:21 23:47:45",
|
||||
"OffsetTime": "+02:00",
|
||||
"OffsetTimeDigitized": "+02:00",
|
||||
"OffsetTimeOriginal": "+02:00",
|
||||
"SceneCaptureType|uint16": "0",
|
||||
"SceneType|uint8": "1",
|
||||
"SensitivityType|uint16": "1",
|
||||
"SerialNumber": "3D015250",
|
||||
"ShutterSpeedValue": 0.016666661994953737,
|
||||
"Software": "Adobe Lightroom 7.5 (Macintosh)",
|
||||
"SubjectDistanceRange|uint16": "0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1 +1,40 @@
|
||||
{"Exif":{"Lat":0,"Long":0,"Date":"2024-06-30T01:34:05+02:00","Tags":{"ApertureValue":2.800000335430107,"BrightnessValue|*imagemeta.rat[int32]":"-579/100","CreateDate":"2024:06:30 01:34:05","CustomRendered|uint16":"0","DateTimeOriginal":"2024:06:30 01:34:05","ExposureCompensation|*imagemeta.rat[int32]":"0","ExposureTime|*imagemeta.rat[uint32]":"1/30","FNumber|*imagemeta.rat[uint32]":"14/5","FileSource|uint8":"3","FocalLengthIn35mmFormat|uint16":"41","FocalLength|*imagemeta.rat[uint32]":"27","ISO|uint16":"12800","LensInfo":"27 27 2.8 2.8","LensMake":"FUJIFILM","LensModel":"XF27mmF2.8 R WR","LensSerialNumber":"2CA04105","LightSource|uint16":"0","Make":"FUJIFILM","MaxApertureValue":2.82842712474619,"Model":"X-T30 II","ModifyDate":"2024:08:21 23:41:33","OffsetTime":"+02:00","OffsetTimeDigitized":"+02:00","OffsetTimeOriginal":"+02:00","SceneCaptureType|uint16":"0","SceneType|uint8":"1","SensitivityType|uint16":"1","SerialNumber":"3D015250","ShutterSpeedValue":0.033333323989907473,"Software":"Adobe Lightroom 7.5 (Macintosh)","SubjectDistanceRange|uint16":"0"}}}
|
||||
{
|
||||
"Exif": {
|
||||
"Date": "2024-06-30T01:34:05+02:00",
|
||||
"Lat": 0,
|
||||
"Long": 0,
|
||||
"Tags": {
|
||||
"ApertureValue": 2.800000335430107,
|
||||
"BrightnessValue|*imagemeta.rat[int32]": "-579/100",
|
||||
"CreateDate": "2024:06:30 01:34:05",
|
||||
"CustomRendered|uint16": "0",
|
||||
"DateTimeOriginal": "2024:06:30 01:34:05",
|
||||
"ExposureCompensation|*imagemeta.rat[int32]": "0",
|
||||
"ExposureTime|*imagemeta.rat[uint32]": "1/30",
|
||||
"FNumber|*imagemeta.rat[uint32]": "14/5",
|
||||
"FileSource|uint8": "3",
|
||||
"FocalLengthIn35mmFormat|uint16": "41",
|
||||
"FocalLength|*imagemeta.rat[uint32]": "27",
|
||||
"ISO|uint16": "12800",
|
||||
"LensInfo": "27 27 2.8 2.8",
|
||||
"LensMake": "FUJIFILM",
|
||||
"LensModel": "XF27mmF2.8 R WR",
|
||||
"LensSerialNumber": "2CA04105",
|
||||
"LightSource|uint16": "0",
|
||||
"Make": "FUJIFILM",
|
||||
"MaxApertureValue": 2.82842712474619,
|
||||
"Model": "X-T30 II",
|
||||
"ModifyDate": "2024:08:21 23:41:33",
|
||||
"OffsetTime": "+02:00",
|
||||
"OffsetTimeDigitized": "+02:00",
|
||||
"OffsetTimeOriginal": "+02:00",
|
||||
"SceneCaptureType|uint16": "0",
|
||||
"SceneType|uint8": "1",
|
||||
"SensitivityType|uint16": "1",
|
||||
"SerialNumber": "3D015250",
|
||||
"ShutterSpeedValue": 0.033333323989907473,
|
||||
"Software": "Adobe Lightroom 7.5 (Macintosh)",
|
||||
"SubjectDistanceRange|uint16": "0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1 +1,36 @@
|
||||
{"Exif":{"Lat":45.429491666666664,"Long":12.326361666666667,"Date":"2024-12-22T00:34:40+01:00","Tags":{"ApertureValue":1.499999999250199,"BrightnessValue|*imagemeta.rat[int32]":"-19509/6919","Copyright":"© fundor333","CreateDate":"2024:12:22 00:34:40","DateTimeOriginal":"2024:12:22 00:34:40","ExposureCompensation|*imagemeta.rat[int32]":"0","ExposureTime|*imagemeta.rat[uint32]":"1/25","FNumber|*imagemeta.rat[uint32]":"3/2","FocalLengthIn35mmFormat|uint16":"26","FocalLength|*imagemeta.rat[uint32]":"57/10","ISO|uint16":"1000","LensInfo":"1.5399999618512084 5.699999809263318 1.5 2.4","LensMake":"Apple","LensModel":"iPhone 14 back dual wide camera 5.7mm f/1.5","Make":"Apple","Model":"iPhone 14","ModifyDate":"2024:12:23 12:41:02","OffsetTime":"+01:00","OffsetTimeDigitized":"+01:00","OffsetTimeOriginal":"+01:00","SceneCaptureType|uint16":"0","SceneType|uint8":"1","ShutterSpeedValue":0.040000005261672945,"Software":"Adobe Lightroom 10.1.1 (iOS)","SubSecTimeDigitized|int":"347","SubSecTimeOriginal|int":"347","SubjectArea":"2006 1506 2213 1327"}}}
|
||||
{
|
||||
"Exif": {
|
||||
"Date": "2024-12-22T00:34:40+01:00",
|
||||
"Lat": 45.429491666666664,
|
||||
"Long": 12.326361666666667,
|
||||
"Tags": {
|
||||
"ApertureValue": 1.499999999250199,
|
||||
"BrightnessValue|*imagemeta.rat[int32]": "-19509/6919",
|
||||
"Copyright": "© fundor333",
|
||||
"CreateDate": "2024:12:22 00:34:40",
|
||||
"DateTimeOriginal": "2024:12:22 00:34:40",
|
||||
"ExposureCompensation|*imagemeta.rat[int32]": "0",
|
||||
"ExposureTime|*imagemeta.rat[uint32]": "1/25",
|
||||
"FNumber|*imagemeta.rat[uint32]": "3/2",
|
||||
"FocalLengthIn35mmFormat|uint16": "26",
|
||||
"FocalLength|*imagemeta.rat[uint32]": "57/10",
|
||||
"ISO|uint16": "1000",
|
||||
"LensInfo": "1.5399999618512084 5.699999809263318 1.5 2.4",
|
||||
"LensMake": "Apple",
|
||||
"LensModel": "iPhone 14 back dual wide camera 5.7mm f/1.5",
|
||||
"Make": "Apple",
|
||||
"Model": "iPhone 14",
|
||||
"ModifyDate": "2024:12:23 12:41:02",
|
||||
"OffsetTime": "+01:00",
|
||||
"OffsetTimeDigitized": "+01:00",
|
||||
"OffsetTimeOriginal": "+01:00",
|
||||
"SceneCaptureType|uint16": "0",
|
||||
"SceneType|uint8": "1",
|
||||
"ShutterSpeedValue": 0.040000005261672945,
|
||||
"Software": "Adobe Lightroom 10.1.1 (iOS)",
|
||||
"SubSecTimeDigitized|int": "347",
|
||||
"SubSecTimeOriginal|int": "347",
|
||||
"SubjectArea": "2006 1506 2213 1327"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1 +1,40 @@
|
||||
{"Exif":{"Lat":0,"Long":0,"Date":"2024-07-22T00:33:19+02:00","Tags":{"ApertureValue":2.800000335430107,"BrightnessValue|*imagemeta.rat[int32]":"-227/50","CreateDate":"2024:07:22 00:33:19","CustomRendered|uint16":"0","DateTimeOriginal":"2024:07:22 00:33:19","ExposureCompensation|*imagemeta.rat[int32]":"-33/100","ExposureTime|*imagemeta.rat[uint32]":"1/17","FNumber|*imagemeta.rat[uint32]":"14/5","FileSource|uint8":"3","FocalLengthIn35mmFormat|uint16":"41","FocalLength|*imagemeta.rat[uint32]":"27","ISO|uint16":"6400","LensInfo":"27 27 2.8 2.8","LensMake":"FUJIFILM","LensModel":"XF27mmF2.8 R WR","LensSerialNumber":"2CA04105","LightSource|uint16":"0","Make":"FUJIFILM","MaxApertureValue":2.82842712474619,"Model":"X-T30 II","ModifyDate":"2024:09:17 00:02:07","OffsetTime":"+02:00","OffsetTimeDigitized":"+02:00","OffsetTimeOriginal":"+02:00","SceneCaptureType|uint16":"1","SceneType|uint8":"1","SensitivityType|uint16":"1","SerialNumber":"3D015250","ShutterSpeedValue":0.05882352293900745,"Software":"Adobe Lightroom 7.5 (Macintosh)","SubjectDistanceRange|uint16":"0"}}}
|
||||
{
|
||||
"Exif": {
|
||||
"Date": "2024-07-22T00:33:19+02:00",
|
||||
"Lat": 0,
|
||||
"Long": 0,
|
||||
"Tags": {
|
||||
"ApertureValue": 2.800000335430107,
|
||||
"BrightnessValue|*imagemeta.rat[int32]": "-227/50",
|
||||
"CreateDate": "2024:07:22 00:33:19",
|
||||
"CustomRendered|uint16": "0",
|
||||
"DateTimeOriginal": "2024:07:22 00:33:19",
|
||||
"ExposureCompensation|*imagemeta.rat[int32]": "-33/100",
|
||||
"ExposureTime|*imagemeta.rat[uint32]": "1/17",
|
||||
"FNumber|*imagemeta.rat[uint32]": "14/5",
|
||||
"FileSource|uint8": "3",
|
||||
"FocalLengthIn35mmFormat|uint16": "41",
|
||||
"FocalLength|*imagemeta.rat[uint32]": "27",
|
||||
"ISO|uint16": "6400",
|
||||
"LensInfo": "27 27 2.8 2.8",
|
||||
"LensMake": "FUJIFILM",
|
||||
"LensModel": "XF27mmF2.8 R WR",
|
||||
"LensSerialNumber": "2CA04105",
|
||||
"LightSource|uint16": "0",
|
||||
"Make": "FUJIFILM",
|
||||
"MaxApertureValue": 2.82842712474619,
|
||||
"Model": "X-T30 II",
|
||||
"ModifyDate": "2024:09:17 00:02:07",
|
||||
"OffsetTime": "+02:00",
|
||||
"OffsetTimeDigitized": "+02:00",
|
||||
"OffsetTimeOriginal": "+02:00",
|
||||
"SceneCaptureType|uint16": "1",
|
||||
"SceneType|uint8": "1",
|
||||
"SensitivityType|uint16": "1",
|
||||
"SerialNumber": "3D015250",
|
||||
"ShutterSpeedValue": 0.05882352293900745,
|
||||
"Software": "Adobe Lightroom 7.5 (Macintosh)",
|
||||
"SubjectDistanceRange|uint16": "0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1 +1,40 @@
|
||||
{"Exif":{"Lat":0,"Long":0,"Date":"2024-08-18T23:12:59+02:00","Tags":{"ApertureValue":2.800000335430107,"BrightnessValue|*imagemeta.rat[int32]":"-589/100","CreateDate":"2024:08:18 23:12:59","CustomRendered|uint16":"0","DateTimeOriginal":"2024:08:18 23:12:59","ExposureCompensation|*imagemeta.rat[int32]":"-33/100","ExposureTime|*imagemeta.rat[uint32]":"1/17","FNumber|*imagemeta.rat[uint32]":"14/5","FileSource|uint8":"3","FocalLengthIn35mmFormat|uint16":"27","FocalLength|*imagemeta.rat[uint32]":"18","ISO|uint16":"6400","LensInfo":"18 55 2.8 4","LensMake":"FUJIFILM","LensModel":"XF18-55mmF2.8-4 R LM OIS","LensSerialNumber":"3CC22388","LightSource|uint16":"0","Make":"FUJIFILM","MaxApertureValue":2.82842712474619,"Model":"X-T30 II","ModifyDate":"2024:09:16 23:58:04","OffsetTime":"+02:00","OffsetTimeDigitized":"+02:00","OffsetTimeOriginal":"+02:00","SceneCaptureType|uint16":"3","SceneType|uint8":"1","SensitivityType|uint16":"1","SerialNumber":"3D015250","ShutterSpeedValue":0.05882352293900745,"Software":"Adobe Lightroom 7.5 (Macintosh)","SubjectDistanceRange|uint16":"0"}}}
|
||||
{
|
||||
"Exif": {
|
||||
"Date": "2024-08-18T23:12:59+02:00",
|
||||
"Lat": 0,
|
||||
"Long": 0,
|
||||
"Tags": {
|
||||
"ApertureValue": 2.800000335430107,
|
||||
"BrightnessValue|*imagemeta.rat[int32]": "-589/100",
|
||||
"CreateDate": "2024:08:18 23:12:59",
|
||||
"CustomRendered|uint16": "0",
|
||||
"DateTimeOriginal": "2024:08:18 23:12:59",
|
||||
"ExposureCompensation|*imagemeta.rat[int32]": "-33/100",
|
||||
"ExposureTime|*imagemeta.rat[uint32]": "1/17",
|
||||
"FNumber|*imagemeta.rat[uint32]": "14/5",
|
||||
"FileSource|uint8": "3",
|
||||
"FocalLengthIn35mmFormat|uint16": "27",
|
||||
"FocalLength|*imagemeta.rat[uint32]": "18",
|
||||
"ISO|uint16": "6400",
|
||||
"LensInfo": "18 55 2.8 4",
|
||||
"LensMake": "FUJIFILM",
|
||||
"LensModel": "XF18-55mmF2.8-4 R LM OIS",
|
||||
"LensSerialNumber": "3CC22388",
|
||||
"LightSource|uint16": "0",
|
||||
"Make": "FUJIFILM",
|
||||
"MaxApertureValue": 2.82842712474619,
|
||||
"Model": "X-T30 II",
|
||||
"ModifyDate": "2024:09:16 23:58:04",
|
||||
"OffsetTime": "+02:00",
|
||||
"OffsetTimeDigitized": "+02:00",
|
||||
"OffsetTimeOriginal": "+02:00",
|
||||
"SceneCaptureType|uint16": "3",
|
||||
"SceneType|uint8": "1",
|
||||
"SensitivityType|uint16": "1",
|
||||
"SerialNumber": "3D015250",
|
||||
"ShutterSpeedValue": 0.05882352293900745,
|
||||
"Software": "Adobe Lightroom 7.5 (Macintosh)",
|
||||
"SubjectDistanceRange|uint16": "0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1 +1,40 @@
|
||||
{"Exif":{"Lat":0,"Long":0,"Date":"2024-08-03T18:36:34+02:00","Tags":{"ApertureValue":5.600000670860214,"BrightnessValue|*imagemeta.rat[int32]":"939/100","CreateDate":"2024:08:03 18:36:34","CustomRendered|uint16":"0","DateTimeOriginal":"2024:08:03 18:36:34","ExposureCompensation|*imagemeta.rat[int32]":"-33/100","ExposureTime|*imagemeta.rat[uint32]":"1/850","FNumber|*imagemeta.rat[uint32]":"28/5","FileSource|uint8":"3","FocalLengthIn35mmFormat|uint16":"41","FocalLength|*imagemeta.rat[uint32]":"27","ISO|uint16":"320","LensInfo":"27 27 2.8 2.8","LensMake":"FUJIFILM","LensModel":"XF27mmF2.8 R WR","LensSerialNumber":"2CA04105","LightSource|uint16":"0","Make":"FUJIFILM","MaxApertureValue":2.82842712474619,"Model":"X-T30 II","ModifyDate":"2024:08:19 00:13:48","OffsetTime":"+02:00","OffsetTimeDigitized":"+02:00","OffsetTimeOriginal":"+02:00","SceneCaptureType|uint16":"1","SceneType|uint8":"1","SensitivityType|uint16":"1","SerialNumber":"3D015250","ShutterSpeedValue":0.0011764706135352194,"Software":"Adobe Lightroom 7.5 (Macintosh)","SubjectDistanceRange|uint16":"0"}}}
|
||||
{
|
||||
"Exif": {
|
||||
"Date": "2024-08-03T18:36:34+02:00",
|
||||
"Lat": 0,
|
||||
"Long": 0,
|
||||
"Tags": {
|
||||
"ApertureValue": 5.600000670860214,
|
||||
"BrightnessValue|*imagemeta.rat[int32]": "939/100",
|
||||
"CreateDate": "2024:08:03 18:36:34",
|
||||
"CustomRendered|uint16": "0",
|
||||
"DateTimeOriginal": "2024:08:03 18:36:34",
|
||||
"ExposureCompensation|*imagemeta.rat[int32]": "-33/100",
|
||||
"ExposureTime|*imagemeta.rat[uint32]": "1/850",
|
||||
"FNumber|*imagemeta.rat[uint32]": "28/5",
|
||||
"FileSource|uint8": "3",
|
||||
"FocalLengthIn35mmFormat|uint16": "41",
|
||||
"FocalLength|*imagemeta.rat[uint32]": "27",
|
||||
"ISO|uint16": "320",
|
||||
"LensInfo": "27 27 2.8 2.8",
|
||||
"LensMake": "FUJIFILM",
|
||||
"LensModel": "XF27mmF2.8 R WR",
|
||||
"LensSerialNumber": "2CA04105",
|
||||
"LightSource|uint16": "0",
|
||||
"Make": "FUJIFILM",
|
||||
"MaxApertureValue": 2.82842712474619,
|
||||
"Model": "X-T30 II",
|
||||
"ModifyDate": "2024:08:19 00:13:48",
|
||||
"OffsetTime": "+02:00",
|
||||
"OffsetTimeDigitized": "+02:00",
|
||||
"OffsetTimeOriginal": "+02:00",
|
||||
"SceneCaptureType|uint16": "1",
|
||||
"SceneType|uint8": "1",
|
||||
"SensitivityType|uint16": "1",
|
||||
"SerialNumber": "3D015250",
|
||||
"ShutterSpeedValue": 0.0011764706135352194,
|
||||
"Software": "Adobe Lightroom 7.5 (Macintosh)",
|
||||
"SubjectDistanceRange|uint16": "0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1 +1,40 @@
|
||||
{"Exif":{"Lat":0,"Long":0,"Date":"2024-06-30T01:31:49+02:00","Tags":{"ApertureValue":2.800000335430107,"BrightnessValue|*imagemeta.rat[int32]":"-19/5","CreateDate":"2024:06:30 01:31:49","CustomRendered|uint16":"0","DateTimeOriginal":"2024:06:30 01:31:49","ExposureCompensation|*imagemeta.rat[int32]":"0","ExposureTime|*imagemeta.rat[uint32]":"1/125","FNumber|*imagemeta.rat[uint32]":"14/5","FileSource|uint8":"3","FocalLengthIn35mmFormat|uint16":"41","FocalLength|*imagemeta.rat[uint32]":"27","ISO|uint16":"12800","LensInfo":"27 27 2.8 2.8","LensMake":"FUJIFILM","LensModel":"XF27mmF2.8 R WR","LensSerialNumber":"2CA04105","LightSource|uint16":"0","Make":"FUJIFILM","MaxApertureValue":2.82842712474619,"Model":"X-T30 II","ModifyDate":"2024:08:30 02:34:39","OffsetTime":"+02:00","OffsetTimeDigitized":"+02:00","OffsetTimeOriginal":"+02:00","SceneCaptureType|uint16":"0","SceneType|uint8":"1","SensitivityType|uint16":"1","SerialNumber":"3D015250","ShutterSpeedValue":0.008000001578501939,"Software":"Adobe Lightroom 7.5 (Macintosh)","SubjectDistanceRange|uint16":"0"}}}
|
||||
{
|
||||
"Exif": {
|
||||
"Date": "2024-06-30T01:31:49+02:00",
|
||||
"Lat": 0,
|
||||
"Long": 0,
|
||||
"Tags": {
|
||||
"ApertureValue": 2.800000335430107,
|
||||
"BrightnessValue|*imagemeta.rat[int32]": "-19/5",
|
||||
"CreateDate": "2024:06:30 01:31:49",
|
||||
"CustomRendered|uint16": "0",
|
||||
"DateTimeOriginal": "2024:06:30 01:31:49",
|
||||
"ExposureCompensation|*imagemeta.rat[int32]": "0",
|
||||
"ExposureTime|*imagemeta.rat[uint32]": "1/125",
|
||||
"FNumber|*imagemeta.rat[uint32]": "14/5",
|
||||
"FileSource|uint8": "3",
|
||||
"FocalLengthIn35mmFormat|uint16": "41",
|
||||
"FocalLength|*imagemeta.rat[uint32]": "27",
|
||||
"ISO|uint16": "12800",
|
||||
"LensInfo": "27 27 2.8 2.8",
|
||||
"LensMake": "FUJIFILM",
|
||||
"LensModel": "XF27mmF2.8 R WR",
|
||||
"LensSerialNumber": "2CA04105",
|
||||
"LightSource|uint16": "0",
|
||||
"Make": "FUJIFILM",
|
||||
"MaxApertureValue": 2.82842712474619,
|
||||
"Model": "X-T30 II",
|
||||
"ModifyDate": "2024:08:30 02:34:39",
|
||||
"OffsetTime": "+02:00",
|
||||
"OffsetTimeDigitized": "+02:00",
|
||||
"OffsetTimeOriginal": "+02:00",
|
||||
"SceneCaptureType|uint16": "0",
|
||||
"SceneType|uint8": "1",
|
||||
"SensitivityType|uint16": "1",
|
||||
"SerialNumber": "3D015250",
|
||||
"ShutterSpeedValue": 0.008000001578501939,
|
||||
"Software": "Adobe Lightroom 7.5 (Macintosh)",
|
||||
"SubjectDistanceRange|uint16": "0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1 +1,40 @@
|
||||
{"Exif":{"Lat":0,"Long":0,"Date":"2024-08-03T15:33:26+02:00","Tags":{"ApertureValue":4.499999995501194,"BrightnessValue|*imagemeta.rat[int32]":"977/100","CreateDate":"2024:08:03 15:33:26","CustomRendered|uint16":"0","DateTimeOriginal":"2024:08:03 15:33:26","ExposureCompensation|*imagemeta.rat[int32]":"-33/100","ExposureTime|*imagemeta.rat[uint32]":"1/2400","FNumber|*imagemeta.rat[uint32]":"9/2","FileSource|uint8":"3","FocalLengthIn35mmFormat|uint16":"41","FocalLength|*imagemeta.rat[uint32]":"27","ISO|uint16":"320","LensInfo":"27 27 2.8 2.8","LensMake":"FUJIFILM","LensModel":"XF27mmF2.8 R WR","LensSerialNumber":"2CA04105","LightSource|uint16":"0","Make":"FUJIFILM","MaxApertureValue":2.82842712474619,"Model":"X-T30 II","ModifyDate":"2024:09:16 23:56:43","OffsetTime":"+02:00","OffsetTimeDigitized":"+02:00","OffsetTimeOriginal":"+02:00","SceneCaptureType|uint16":"2","SceneType|uint8":"1","SensitivityType|uint16":"1","SerialNumber":"3D015250","ShutterSpeedValue":0.00041666657727838156,"Software":"Adobe Lightroom 7.5 (Macintosh)","SubjectDistanceRange|uint16":"0"}}}
|
||||
{
|
||||
"Exif": {
|
||||
"Date": "2024-08-03T15:33:26+02:00",
|
||||
"Lat": 0,
|
||||
"Long": 0,
|
||||
"Tags": {
|
||||
"ApertureValue": 4.499999995501194,
|
||||
"BrightnessValue|*imagemeta.rat[int32]": "977/100",
|
||||
"CreateDate": "2024:08:03 15:33:26",
|
||||
"CustomRendered|uint16": "0",
|
||||
"DateTimeOriginal": "2024:08:03 15:33:26",
|
||||
"ExposureCompensation|*imagemeta.rat[int32]": "-33/100",
|
||||
"ExposureTime|*imagemeta.rat[uint32]": "1/2400",
|
||||
"FNumber|*imagemeta.rat[uint32]": "9/2",
|
||||
"FileSource|uint8": "3",
|
||||
"FocalLengthIn35mmFormat|uint16": "41",
|
||||
"FocalLength|*imagemeta.rat[uint32]": "27",
|
||||
"ISO|uint16": "320",
|
||||
"LensInfo": "27 27 2.8 2.8",
|
||||
"LensMake": "FUJIFILM",
|
||||
"LensModel": "XF27mmF2.8 R WR",
|
||||
"LensSerialNumber": "2CA04105",
|
||||
"LightSource|uint16": "0",
|
||||
"Make": "FUJIFILM",
|
||||
"MaxApertureValue": 2.82842712474619,
|
||||
"Model": "X-T30 II",
|
||||
"ModifyDate": "2024:09:16 23:56:43",
|
||||
"OffsetTime": "+02:00",
|
||||
"OffsetTimeDigitized": "+02:00",
|
||||
"OffsetTimeOriginal": "+02:00",
|
||||
"SceneCaptureType|uint16": "2",
|
||||
"SceneType|uint8": "1",
|
||||
"SensitivityType|uint16": "1",
|
||||
"SerialNumber": "3D015250",
|
||||
"ShutterSpeedValue": 0.00041666657727838156,
|
||||
"Software": "Adobe Lightroom 7.5 (Macintosh)",
|
||||
"SubjectDistanceRange|uint16": "0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1 +1,40 @@
|
||||
{"Exif":{"Lat":0,"Long":0,"Date":"2024-06-30T01:35:50+02:00","Tags":{"ApertureValue":2.800000335430107,"BrightnessValue|*imagemeta.rat[int32]":"-29/10","CreateDate":"2024:06:30 01:35:50","CustomRendered|uint16":"0","DateTimeOriginal":"2024:06:30 01:35:50","ExposureCompensation|*imagemeta.rat[int32]":"0","ExposureTime|*imagemeta.rat[uint32]":"1/250","FNumber|*imagemeta.rat[uint32]":"14/5","FileSource|uint8":"3","FocalLengthIn35mmFormat|uint16":"41","FocalLength|*imagemeta.rat[uint32]":"27","ISO|uint16":"10000","LensInfo":"27 27 2.8 2.8","LensMake":"FUJIFILM","LensModel":"XF27mmF2.8 R WR","LensSerialNumber":"2CA04105","LightSource|uint16":"0","Make":"FUJIFILM","MaxApertureValue":2.82842712474619,"Model":"X-T30 II","ModifyDate":"2024:08:21 23:43:26","OffsetTime":"+02:00","OffsetTimeDigitized":"+02:00","OffsetTimeOriginal":"+02:00","SceneCaptureType|uint16":"0","SceneType|uint8":"1","SensitivityType|uint16":"1","SerialNumber":"3D015250","ShutterSpeedValue":0.004000000789250969,"Software":"Adobe Lightroom 7.5 (Macintosh)","SubjectDistanceRange|uint16":"0"}}}
|
||||
{
|
||||
"Exif": {
|
||||
"Date": "2024-06-30T01:35:50+02:00",
|
||||
"Lat": 0,
|
||||
"Long": 0,
|
||||
"Tags": {
|
||||
"ApertureValue": 2.800000335430107,
|
||||
"BrightnessValue|*imagemeta.rat[int32]": "-29/10",
|
||||
"CreateDate": "2024:06:30 01:35:50",
|
||||
"CustomRendered|uint16": "0",
|
||||
"DateTimeOriginal": "2024:06:30 01:35:50",
|
||||
"ExposureCompensation|*imagemeta.rat[int32]": "0",
|
||||
"ExposureTime|*imagemeta.rat[uint32]": "1/250",
|
||||
"FNumber|*imagemeta.rat[uint32]": "14/5",
|
||||
"FileSource|uint8": "3",
|
||||
"FocalLengthIn35mmFormat|uint16": "41",
|
||||
"FocalLength|*imagemeta.rat[uint32]": "27",
|
||||
"ISO|uint16": "10000",
|
||||
"LensInfo": "27 27 2.8 2.8",
|
||||
"LensMake": "FUJIFILM",
|
||||
"LensModel": "XF27mmF2.8 R WR",
|
||||
"LensSerialNumber": "2CA04105",
|
||||
"LightSource|uint16": "0",
|
||||
"Make": "FUJIFILM",
|
||||
"MaxApertureValue": 2.82842712474619,
|
||||
"Model": "X-T30 II",
|
||||
"ModifyDate": "2024:08:21 23:43:26",
|
||||
"OffsetTime": "+02:00",
|
||||
"OffsetTimeDigitized": "+02:00",
|
||||
"OffsetTimeOriginal": "+02:00",
|
||||
"SceneCaptureType|uint16": "0",
|
||||
"SceneType|uint8": "1",
|
||||
"SensitivityType|uint16": "1",
|
||||
"SerialNumber": "3D015250",
|
||||
"ShutterSpeedValue": 0.004000000789250969,
|
||||
"Software": "Adobe Lightroom 7.5 (Macintosh)",
|
||||
"SubjectDistanceRange|uint16": "0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1 +1,40 @@
|
||||
{"Exif":{"Lat":45.436871,"Long":12.323697,"Date":"2024-07-21T19:38:51+02:00","Tags":{"ApertureValue":4.999999671145473,"BrightnessValue|*imagemeta.rat[int32]":"559/100","CreateDate":"2024:07:21 19:38:51","CustomRendered|uint16":"0","DateTimeOriginal":"2024:07:21 19:38:51","ExposureCompensation|*imagemeta.rat[int32]":"-33/100","ExposureTime|*imagemeta.rat[uint32]":"1/350","FNumber|*imagemeta.rat[uint32]":"5","FileSource|uint8":"3","FocalLengthIn35mmFormat|uint16":"41","FocalLength|*imagemeta.rat[uint32]":"27","ISO|uint16":"640","LensInfo":"27 27 2.8 2.8","LensMake":"FUJIFILM","LensModel":"XF27mmF2.8 R WR","LensSerialNumber":"2CA04105","LightSource|uint16":"1","Make":"FUJIFILM","MaxApertureValue":2.82842712474619,"Model":"X-T30 II","ModifyDate":"2024:09:16 23:59:15","OffsetTime":"+02:00","OffsetTimeDigitized":"+02:00","OffsetTimeOriginal":"+02:00","SceneCaptureType|uint16":"0","SceneType|uint8":"1","SensitivityType|uint16":"1","SerialNumber":"3D015250","ShutterSpeedValue":0.0028571430786179025,"Software":"Adobe Lightroom 7.5 (Macintosh)","SubjectDistanceRange|uint16":"0"}}}
|
||||
{
|
||||
"Exif": {
|
||||
"Date": "2024-07-21T19:38:51+02:00",
|
||||
"Lat": 45.436871,
|
||||
"Long": 12.323697,
|
||||
"Tags": {
|
||||
"ApertureValue": 4.999999671145473,
|
||||
"BrightnessValue|*imagemeta.rat[int32]": "559/100",
|
||||
"CreateDate": "2024:07:21 19:38:51",
|
||||
"CustomRendered|uint16": "0",
|
||||
"DateTimeOriginal": "2024:07:21 19:38:51",
|
||||
"ExposureCompensation|*imagemeta.rat[int32]": "-33/100",
|
||||
"ExposureTime|*imagemeta.rat[uint32]": "1/350",
|
||||
"FNumber|*imagemeta.rat[uint32]": "5",
|
||||
"FileSource|uint8": "3",
|
||||
"FocalLengthIn35mmFormat|uint16": "41",
|
||||
"FocalLength|*imagemeta.rat[uint32]": "27",
|
||||
"ISO|uint16": "640",
|
||||
"LensInfo": "27 27 2.8 2.8",
|
||||
"LensMake": "FUJIFILM",
|
||||
"LensModel": "XF27mmF2.8 R WR",
|
||||
"LensSerialNumber": "2CA04105",
|
||||
"LightSource|uint16": "1",
|
||||
"Make": "FUJIFILM",
|
||||
"MaxApertureValue": 2.82842712474619,
|
||||
"Model": "X-T30 II",
|
||||
"ModifyDate": "2024:09:16 23:59:15",
|
||||
"OffsetTime": "+02:00",
|
||||
"OffsetTimeDigitized": "+02:00",
|
||||
"OffsetTimeOriginal": "+02:00",
|
||||
"SceneCaptureType|uint16": "0",
|
||||
"SceneType|uint8": "1",
|
||||
"SensitivityType|uint16": "1",
|
||||
"SerialNumber": "3D015250",
|
||||
"ShutterSpeedValue": 0.0028571430786179025,
|
||||
"Software": "Adobe Lightroom 7.5 (Macintosh)",
|
||||
"SubjectDistanceRange|uint16": "0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1 +1,41 @@
|
||||
{"Exif":{"Lat":0,"Long":0,"Date":"2024-09-14T19:27:12+02:00","Tags":{"ApertureValue":2.800000335430107,"BrightnessValue|*imagemeta.rat[int32]":"69/50","Copyright":"© fundor333","CreateDate":"2024:09:14 19:27:12","CustomRendered|uint16":"0","DateTimeOriginal":"2024:09:14 19:27:12","ExposureCompensation|*imagemeta.rat[int32]":"-33/100","ExposureTime|*imagemeta.rat[uint32]":"1/100","FNumber|*imagemeta.rat[uint32]":"14/5","FileSource|uint8":"3","FocalLengthIn35mmFormat|uint16":"41","FocalLength|*imagemeta.rat[uint32]":"27","ISO|uint16":"1250","LensInfo":"27 27 2.8 2.8","LensMake":"FUJIFILM","LensModel":"XF27mmF2.8 R WR","LensSerialNumber":"2CA04105","LightSource|uint16":"0","Make":"FUJIFILM","MaxApertureValue":2.82842712474619,"Model":"X-T30 II","ModifyDate":"2024:09:16 23:23:08","OffsetTime":"+02:00","OffsetTimeDigitized":"+02:00","OffsetTimeOriginal":"+02:00","SceneCaptureType|uint16":"0","SceneType|uint8":"1","SensitivityType|uint16":"1","SerialNumber":"3D015250","ShutterSpeedValue":0.010000001315418236,"Software":"Adobe Lightroom 7.5 (Macintosh)","SubjectDistanceRange|uint16":"0"}}}
|
||||
{
|
||||
"Exif": {
|
||||
"Date": "2024-09-14T19:27:12+02:00",
|
||||
"Lat": 0,
|
||||
"Long": 0,
|
||||
"Tags": {
|
||||
"ApertureValue": 2.800000335430107,
|
||||
"BrightnessValue|*imagemeta.rat[int32]": "69/50",
|
||||
"Copyright": "© fundor333",
|
||||
"CreateDate": "2024:09:14 19:27:12",
|
||||
"CustomRendered|uint16": "0",
|
||||
"DateTimeOriginal": "2024:09:14 19:27:12",
|
||||
"ExposureCompensation|*imagemeta.rat[int32]": "-33/100",
|
||||
"ExposureTime|*imagemeta.rat[uint32]": "1/100",
|
||||
"FNumber|*imagemeta.rat[uint32]": "14/5",
|
||||
"FileSource|uint8": "3",
|
||||
"FocalLengthIn35mmFormat|uint16": "41",
|
||||
"FocalLength|*imagemeta.rat[uint32]": "27",
|
||||
"ISO|uint16": "1250",
|
||||
"LensInfo": "27 27 2.8 2.8",
|
||||
"LensMake": "FUJIFILM",
|
||||
"LensModel": "XF27mmF2.8 R WR",
|
||||
"LensSerialNumber": "2CA04105",
|
||||
"LightSource|uint16": "0",
|
||||
"Make": "FUJIFILM",
|
||||
"MaxApertureValue": 2.82842712474619,
|
||||
"Model": "X-T30 II",
|
||||
"ModifyDate": "2024:09:16 23:23:08",
|
||||
"OffsetTime": "+02:00",
|
||||
"OffsetTimeDigitized": "+02:00",
|
||||
"OffsetTimeOriginal": "+02:00",
|
||||
"SceneCaptureType|uint16": "0",
|
||||
"SceneType|uint8": "1",
|
||||
"SensitivityType|uint16": "1",
|
||||
"SerialNumber": "3D015250",
|
||||
"ShutterSpeedValue": 0.010000001315418236,
|
||||
"Software": "Adobe Lightroom 7.5 (Macintosh)",
|
||||
"SubjectDistanceRange|uint16": "0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1 +1,40 @@
|
||||
{"Exif":{"Lat":0,"Long":0,"Date":"2024-06-30T01:39:12+02:00","Tags":{"ApertureValue":2.800000335430107,"BrightnessValue|*imagemeta.rat[int32]":"-141/50","CreateDate":"2024:06:30 01:39:12","CustomRendered|uint16":"0","DateTimeOriginal":"2024:06:30 01:39:12","ExposureCompensation|*imagemeta.rat[int32]":"0","ExposureTime|*imagemeta.rat[uint32]":"1/250","FNumber|*imagemeta.rat[uint32]":"14/5","FileSource|uint8":"3","FocalLengthIn35mmFormat|uint16":"41","FocalLength|*imagemeta.rat[uint32]":"27","ISO|uint16":"6400","LensInfo":"27 27 2.8 2.8","LensMake":"FUJIFILM","LensModel":"XF27mmF2.8 R WR","LensSerialNumber":"2CA04105","LightSource|uint16":"0","Make":"FUJIFILM","MaxApertureValue":2.82842712474619,"Model":"X-T30 II","ModifyDate":"2024:08:21 23:44:44","OffsetTime":"+02:00","OffsetTimeDigitized":"+02:00","OffsetTimeOriginal":"+02:00","SceneCaptureType|uint16":"0","SceneType|uint8":"1","SensitivityType|uint16":"1","SerialNumber":"3D015250","ShutterSpeedValue":0.004000000789250969,"Software":"Adobe Lightroom 7.5 (Macintosh)","SubjectDistanceRange|uint16":"0"}}}
|
||||
{
|
||||
"Exif": {
|
||||
"Date": "2024-06-30T01:39:12+02:00",
|
||||
"Lat": 0,
|
||||
"Long": 0,
|
||||
"Tags": {
|
||||
"ApertureValue": 2.800000335430107,
|
||||
"BrightnessValue|*imagemeta.rat[int32]": "-141/50",
|
||||
"CreateDate": "2024:06:30 01:39:12",
|
||||
"CustomRendered|uint16": "0",
|
||||
"DateTimeOriginal": "2024:06:30 01:39:12",
|
||||
"ExposureCompensation|*imagemeta.rat[int32]": "0",
|
||||
"ExposureTime|*imagemeta.rat[uint32]": "1/250",
|
||||
"FNumber|*imagemeta.rat[uint32]": "14/5",
|
||||
"FileSource|uint8": "3",
|
||||
"FocalLengthIn35mmFormat|uint16": "41",
|
||||
"FocalLength|*imagemeta.rat[uint32]": "27",
|
||||
"ISO|uint16": "6400",
|
||||
"LensInfo": "27 27 2.8 2.8",
|
||||
"LensMake": "FUJIFILM",
|
||||
"LensModel": "XF27mmF2.8 R WR",
|
||||
"LensSerialNumber": "2CA04105",
|
||||
"LightSource|uint16": "0",
|
||||
"Make": "FUJIFILM",
|
||||
"MaxApertureValue": 2.82842712474619,
|
||||
"Model": "X-T30 II",
|
||||
"ModifyDate": "2024:08:21 23:44:44",
|
||||
"OffsetTime": "+02:00",
|
||||
"OffsetTimeDigitized": "+02:00",
|
||||
"OffsetTimeOriginal": "+02:00",
|
||||
"SceneCaptureType|uint16": "0",
|
||||
"SceneType|uint8": "1",
|
||||
"SensitivityType|uint16": "1",
|
||||
"SerialNumber": "3D015250",
|
||||
"ShutterSpeedValue": 0.004000000789250969,
|
||||
"Software": "Adobe Lightroom 7.5 (Macintosh)",
|
||||
"SubjectDistanceRange|uint16": "0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1 +1,37 @@
|
||||
{"Exif":{"Lat":0,"Long":0,"Date":"2024-05-23T13:36:52+02:00","Tags":{"ApertureValue":3.500000189089437,"Artist":"Fundor333","CreateDate":"2024:05:23 14:36:52","CustomRendered|uint16":"0","DateTimeOriginal":"2024:05:23 13:36:52","ExposureCompensation|*imagemeta.rat[int32]":"0","ExposureTime|*imagemeta.rat[uint32]":"1/6","FNumber|*imagemeta.rat[uint32]":"7/2","FocalLength|*imagemeta.rat[uint32]":"35","ISO|uint16":"320","LensInfo":"35 35 undef undef","LensModel":"RF35mm F1.8 MACRO IS STM","LensSerialNumber":"3732004227","Make":"Canon","MaxApertureValue":1.8340080864093424,"Model":"Canon EOS R5","ModifyDate":"2024:09:16 23:41:59","OffsetTime":"+02:00","OffsetTimeDigitized":"+02:00","OffsetTimeOriginal":"+01:00","RecommendedExposureIndex|uint32":"320","SceneCaptureType|uint16":"0","SensitivityType|uint16":"2","SerialNumber":"253026001930","ShutterSpeedValue":0.16666660898772281,"Software":"Adobe Lightroom 7.5 (Macintosh)","SubSecTimeDigitized|int":"570","SubSecTimeOriginal|int":"57"}}}
|
||||
{
|
||||
"Exif": {
|
||||
"Date": "2024-05-23T13:36:52+02:00",
|
||||
"Lat": 0,
|
||||
"Long": 0,
|
||||
"Tags": {
|
||||
"ApertureValue": 3.500000189089437,
|
||||
"Artist": "Fundor333",
|
||||
"CreateDate": "2024:05:23 14:36:52",
|
||||
"CustomRendered|uint16": "0",
|
||||
"DateTimeOriginal": "2024:05:23 13:36:52",
|
||||
"ExposureCompensation|*imagemeta.rat[int32]": "0",
|
||||
"ExposureTime|*imagemeta.rat[uint32]": "1/6",
|
||||
"FNumber|*imagemeta.rat[uint32]": "7/2",
|
||||
"FocalLength|*imagemeta.rat[uint32]": "35",
|
||||
"ISO|uint16": "320",
|
||||
"LensInfo": "35 35 undef undef",
|
||||
"LensModel": "RF35mm F1.8 MACRO IS STM",
|
||||
"LensSerialNumber": "3732004227",
|
||||
"Make": "Canon",
|
||||
"MaxApertureValue": 1.8340080864093424,
|
||||
"Model": "Canon EOS R5",
|
||||
"ModifyDate": "2024:09:16 23:41:59",
|
||||
"OffsetTime": "+02:00",
|
||||
"OffsetTimeDigitized": "+02:00",
|
||||
"OffsetTimeOriginal": "+01:00",
|
||||
"RecommendedExposureIndex|uint32": "320",
|
||||
"SceneCaptureType|uint16": "0",
|
||||
"SensitivityType|uint16": "2",
|
||||
"SerialNumber": "253026001930",
|
||||
"ShutterSpeedValue": 0.16666660898772281,
|
||||
"Software": "Adobe Lightroom 7.5 (Macintosh)",
|
||||
"SubSecTimeDigitized|int": "570",
|
||||
"SubSecTimeOriginal|int": "57"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1 +1,41 @@
|
||||
{"Exif":{"Lat":0,"Long":0,"Date":"2025-01-28T18:21:27+01:00","Tags":{"ApertureValue":4.499999995501194,"BrightnessValue|*imagemeta.rat[int32]":"43/50","Copyright":"© fundor333","CreateDate":"2025:01:28 18:21:27","CustomRendered|uint16":"0","DateTimeOriginal":"2025:01:28 18:21:27","ExposureCompensation|*imagemeta.rat[int32]":"0","ExposureTime|*imagemeta.rat[uint32]":"1/250","FNumber|*imagemeta.rat[uint32]":"9/2","FileSource|uint8":"3","FocalLengthIn35mmFormat|uint16":"83","FocalLength|*imagemeta.rat[uint32]":"55","ISO|uint16":"6400","LensInfo":"18 55 2.8 4","LensMake":"FUJIFILM","LensModel":"XF18-55mmF2.8-4 R LM OIS","LensSerialNumber":"3CC22388","LightSource|uint16":"0","Make":"FUJIFILM","MaxApertureValue":2.82842712474619,"Model":"X-T30 II","ModifyDate":"2025:01:28 17:28:12","OffsetTime":"+01:00","OffsetTimeDigitized":"+02:00","OffsetTimeOriginal":"+02:00","SceneCaptureType|uint16":"0","SceneType|uint8":"1","SensitivityType|uint16":"1","SerialNumber":"3D015250","ShutterSpeedValue":0.004000000789250969,"Software":"Adobe Lightroom 8.1 (Macintosh)","SubjectDistanceRange|uint16":"0"}}}
|
||||
{
|
||||
"Exif": {
|
||||
"Date": "2025-01-28T18:21:27+01:00",
|
||||
"Lat": 0,
|
||||
"Long": 0,
|
||||
"Tags": {
|
||||
"ApertureValue": 4.499999995501194,
|
||||
"BrightnessValue|*imagemeta.rat[int32]": "43/50",
|
||||
"Copyright": "© fundor333",
|
||||
"CreateDate": "2025:01:28 18:21:27",
|
||||
"CustomRendered|uint16": "0",
|
||||
"DateTimeOriginal": "2025:01:28 18:21:27",
|
||||
"ExposureCompensation|*imagemeta.rat[int32]": "0",
|
||||
"ExposureTime|*imagemeta.rat[uint32]": "1/250",
|
||||
"FNumber|*imagemeta.rat[uint32]": "9/2",
|
||||
"FileSource|uint8": "3",
|
||||
"FocalLengthIn35mmFormat|uint16": "83",
|
||||
"FocalLength|*imagemeta.rat[uint32]": "55",
|
||||
"ISO|uint16": "6400",
|
||||
"LensInfo": "18 55 2.8 4",
|
||||
"LensMake": "FUJIFILM",
|
||||
"LensModel": "XF18-55mmF2.8-4 R LM OIS",
|
||||
"LensSerialNumber": "3CC22388",
|
||||
"LightSource|uint16": "0",
|
||||
"Make": "FUJIFILM",
|
||||
"MaxApertureValue": 2.82842712474619,
|
||||
"Model": "X-T30 II",
|
||||
"ModifyDate": "2025:01:28 17:28:12",
|
||||
"OffsetTime": "+01:00",
|
||||
"OffsetTimeDigitized": "+02:00",
|
||||
"OffsetTimeOriginal": "+02:00",
|
||||
"SceneCaptureType|uint16": "0",
|
||||
"SceneType|uint8": "1",
|
||||
"SensitivityType|uint16": "1",
|
||||
"SerialNumber": "3D015250",
|
||||
"ShutterSpeedValue": 0.004000000789250969,
|
||||
"Software": "Adobe Lightroom 8.1 (Macintosh)",
|
||||
"SubjectDistanceRange|uint16": "0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||