Fix actions
This commit is contained in:
7
.github/workflows/webmentions.yml
vendored
7
.github/workflows/webmentions.yml
vendored
@@ -16,11 +16,6 @@ jobs:
|
||||
- name: Check out repository
|
||||
uses: actions/checkout@master
|
||||
|
||||
- name: Set up Node.js
|
||||
uses: actions/setup-node@master
|
||||
with:
|
||||
node-version: 12.x
|
||||
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
@@ -36,7 +31,7 @@ jobs:
|
||||
- name: Fetch webmentions
|
||||
env:
|
||||
WEBMENTIONS_TOKEN: ${{ secrets.WEBMENTIONS_TOKEN }}
|
||||
run: node ./webmentions.js
|
||||
run: python ./action_script/webmention.py
|
||||
|
||||
- name: Commit to repository
|
||||
env:
|
||||
|
||||
2
.gitignore
vendored
2
.gitignore
vendored
@@ -184,4 +184,4 @@ OME/
|
||||
.DS_Store
|
||||
build
|
||||
|
||||
action_script/.env
|
||||
.env
|
||||
|
||||
@@ -0,0 +1,56 @@
|
||||
import requests
|
||||
import os
|
||||
import datetime
|
||||
from dotenv import load_dotenv
|
||||
import json
|
||||
from pathlib import Path
|
||||
|
||||
load_dotenv()
|
||||
|
||||
http_domain = "https://fundor333.com"
|
||||
domain = "fundor333.com"
|
||||
token = os.getenv('WEBMENTIONS_TOKEN')
|
||||
since_days = 30
|
||||
|
||||
|
||||
now = datetime.datetime.now()
|
||||
since_data = now - datetime.timedelta(hours=24 * since_days)
|
||||
url = f"https://webmention.io/api/mentions.jf2?domain={domain}&token={token}&since={since_data.isoformat()}&per-page=999"
|
||||
|
||||
|
||||
def clean_slug(slug: str):
|
||||
return slug.replace(http_domain, "").split("?")[0]
|
||||
|
||||
|
||||
r = requests.get(url)
|
||||
|
||||
data = r.json()
|
||||
|
||||
output = {}
|
||||
|
||||
for webmention in data["children"]:
|
||||
|
||||
with open('temp.json', 'w') as fp:
|
||||
|
||||
label = clean_slug(webmention['wm-target'])
|
||||
|
||||
if output.get(label, False):
|
||||
output[label].append(webmention)
|
||||
else:
|
||||
output[label] = [webmention]
|
||||
|
||||
for key in output.keys():
|
||||
original_path = key
|
||||
path_list = original_path.split('/')
|
||||
|
||||
path_list = [x for x in path_list if x.strip()]
|
||||
if path_list != []:
|
||||
filename = path_list.pop()
|
||||
|
||||
path_folder = os.path.join('data', "webmentions", *path_list)
|
||||
|
||||
Path(path_folder).mkdir(parents=True, exist_ok=True)
|
||||
path_file = os.path.join(path_folder, filename + ".json")
|
||||
|
||||
with open(path_file, 'w') as fp:
|
||||
json.dump(output[key], fp)
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
{"syndication": ["https://mastodon.social/@fundor333/113862274690176965"]}
|
||||
@@ -1 +0,0 @@
|
||||
{"syndication": ["https://mastodon.social/@fundor333/113846703142981365"]}
|
||||
@@ -1 +0,0 @@
|
||||
{"syndication": ["https://mastodon.social/@fundor333/113862648242036521"]}
|
||||
@@ -1 +0,0 @@
|
||||
{"syndication": ["https://mastodon.social/@fundor333/113846762520205233"]}
|
||||
@@ -1 +0,0 @@
|
||||
{"syndication": ["https://mastodon.social/@fundor333/113849100063105825"]}
|
||||
@@ -1 +0,0 @@
|
||||
{"syndication": ["https://mastodon.social/@fundor333/113856768273797658"]}
|
||||
@@ -1 +0,0 @@
|
||||
{"syndication": ["https://mastodon.social/@fundor333/113809667070052761"]}
|
||||
@@ -1 +0,0 @@
|
||||
{"syndication": ["https://mastodon.social/@fundor333/113805974087196300"]}
|
||||
@@ -1 +0,0 @@
|
||||
{"syndication": ["https://mastodon.social/@fundor333/113844062450163628"]}
|
||||
@@ -1,28 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "Indie Interesting Websites",
|
||||
"photo": "https://webmention.io/avatar/pbs.twimg.com/e3942d7d60a1c449cb10217438031265b5be3f4edd48b74cec0e6a9f08023684.jpg",
|
||||
"url": "https://twitter.com/IndieRandWeb"
|
||||
},
|
||||
"url": "https://twitter.com/IndieRandWeb/status/1604576040646492161",
|
||||
"published": "2022-12-18T20:35:14+00:00",
|
||||
"wm-received": "2022-12-19T05:09:04Z",
|
||||
"wm-id": 1583690,
|
||||
"wm-source": "https://brid.gy/post/twitter/fundor333/1604576040646492161",
|
||||
"wm-target": "https://fundor333.com/",
|
||||
"wm-protocol": "webmention",
|
||||
"photo": [
|
||||
"https://pbs.twimg.com/media/FkSZZ-PXoAE9wjh.jpg"
|
||||
],
|
||||
"content": {
|
||||
"html": "Fundor333\n\n<a href=\"https://fundor333.com\">fundor333.com</a>\n\n<a class=\"u-mention\" href=\"https://fundor333.com/\"></a>",
|
||||
"text": "Fundor333\n\nfundor333.com"
|
||||
},
|
||||
"mention-of": "https://fundor333.com/",
|
||||
"wm-property": "mention-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,40 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "LaemenPang",
|
||||
"photo": "https://webmention.io/avatar/files.mastodon.social/f05260061d91af3ebaa31c17256d6b75b697c03d670e1e295704ec78ca10502e.jpg",
|
||||
"url": "https://mastodon.social/@focusedontheberry"
|
||||
},
|
||||
"url": "https://mastodon.social/@fundor333/113856768273797658#reblogged-by-112349892458455305",
|
||||
"published": null,
|
||||
"wm-received": "2025-01-20T19:52:47Z",
|
||||
"wm-id": 1877823,
|
||||
"wm-source": "https://brid.gy/repost/mastodon/@fundor333@mastodon.social/113856768273797658/112349892458455305",
|
||||
"wm-target": "https://fundor333.com/micro/2025/10/this-is-why-you-need-a-domain/",
|
||||
"wm-protocol": "webmention",
|
||||
"repost-of": "https://fundor333.com/micro/2025/10/this-is-why-you-need-a-domain/",
|
||||
"wm-property": "repost-of",
|
||||
"wm-private": false
|
||||
},
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "LaemenPang",
|
||||
"photo": "https://webmention.io/avatar/files.mastodon.social/f05260061d91af3ebaa31c17256d6b75b697c03d670e1e295704ec78ca10502e.jpg",
|
||||
"url": "https://mastodon.social/@focusedontheberry"
|
||||
},
|
||||
"url": "https://mastodon.social/@fundor333/113856768273797658#favorited-by-112349892458455305",
|
||||
"published": null,
|
||||
"wm-received": "2025-01-20T20:03:08Z",
|
||||
"wm-id": 1877825,
|
||||
"wm-source": "https://brid.gy/like/mastodon/@fundor333@mastodon.social/113856768273797658/112349892458455305",
|
||||
"wm-target": "https://fundor333.com/micro/2025/10/this-is-why-you-need-a-domain/",
|
||||
"wm-protocol": "webmention",
|
||||
"like-of": "https://fundor333.com/micro/2025/10/this-is-why-you-need-a-domain/",
|
||||
"wm-property": "like-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,48 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "Fundor333",
|
||||
"photo": "https://webmention.io/avatar/files.mastodon.social/36bc58e7595de593f520ba92ea9a8433b6dfde5a76f3f6d7d69755ac29007318.png",
|
||||
"url": "https://mastodon.social/@fundor333"
|
||||
},
|
||||
"url": "https://mastodon.social/@fundor333/113062392356184443",
|
||||
"published": "2024-09-01T12:53:15+00:00",
|
||||
"wm-received": "2024-09-02T00:13:23Z",
|
||||
"wm-id": 1845508,
|
||||
"wm-source": "https://brid.gy/comment/mastodon/@fundor333@mastodon.social/113062281555217401/113062392356184443",
|
||||
"wm-target": "https://fundor333.com/photos/2024/hunting-at-night-in-venice/",
|
||||
"wm-protocol": "webmention",
|
||||
"content": {
|
||||
"html": "<p><span class=\"h-card\"><a href=\"https://mastodon.social/@andreagrandi\" class=\"u-url\">@<span>andreagrandi</span></a></span> yep ed è dove faccio la spesa</p>",
|
||||
"text": "@andreagrandi yep ed è dove faccio la spesa"
|
||||
},
|
||||
"in-reply-to": "https://fundor333.com/photos/2024/hunting-at-night-in-venice/",
|
||||
"wm-property": "in-reply-to",
|
||||
"wm-private": false
|
||||
},
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "Andrea Grandi ????",
|
||||
"photo": "https://webmention.io/avatar/files.mastodon.social/b32dc86fff05382c848f283bce646a3084a6312b7a3cc0f27a8da079a7d2d40c.jpg",
|
||||
"url": "https://mastodon.social/@andreagrandi"
|
||||
},
|
||||
"url": "https://mastodon.social/@andreagrandi/113062388975978510",
|
||||
"published": "2024-09-01T12:52:24+00:00",
|
||||
"wm-received": "2024-09-02T00:13:24Z",
|
||||
"wm-id": 1845509,
|
||||
"wm-source": "https://brid.gy/comment/mastodon/@fundor333@mastodon.social/113062281555217401/113062388975978510",
|
||||
"wm-target": "https://fundor333.com/photos/2024/hunting-at-night-in-venice/",
|
||||
"wm-protocol": "webmention",
|
||||
"content": {
|
||||
"html": "<p><span class=\"h-card\"><a href=\"https://mastodon.social/@fundor333\" class=\"u-url\">@<span>fundor333</span></a></span> ti piace vincere facile coi soggetti, le luci e l’atmosfera a Venezia eh ????</p>",
|
||||
"text": "@fundor333 ti piace vincere facile coi soggetti, le luci e l’atmosfera a Venezia eh ????"
|
||||
},
|
||||
"in-reply-to": "https://fundor333.com/photos/2024/hunting-at-night-in-venice/",
|
||||
"wm-property": "in-reply-to",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,48 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "Andrea Grandi 🦕",
|
||||
"photo": "https://webmention.io/avatar/files.mastodon.social/b32dc86fff05382c848f283bce646a3084a6312b7a3cc0f27a8da079a7d2d40c.jpg",
|
||||
"url": "https://mastodon.social/@andreagrandi"
|
||||
},
|
||||
"url": "https://mastodon.social/@andreagrandi/113062388975978510",
|
||||
"published": "2024-09-01T12:52:24+00:00",
|
||||
"wm-received": "2024-09-02T00:13:25Z",
|
||||
"wm-id": 1845510,
|
||||
"wm-source": "https://brid.gy/comment/mastodon/@fundor333@mastodon.social/113062281555217401/113062388975978510",
|
||||
"wm-target": "https://fundor333.com/photos/2024/hunting-at-night-in-venice/?amp%3Butm_medium=mastodon",
|
||||
"wm-protocol": "webmention",
|
||||
"content": {
|
||||
"html": "<p><span class=\"h-card\"><a href=\"https://mastodon.social/@fundor333\" class=\"u-url\">@<span>fundor333</span></a></span> ti piace vincere facile coi soggetti, le luci e l’atmosfera a Venezia eh 😉</p>",
|
||||
"text": "@fundor333 ti piace vincere facile coi soggetti, le luci e l’atmosfera a Venezia eh 😉"
|
||||
},
|
||||
"in-reply-to": "https://fundor333.com/photos/2024/hunting-at-night-in-venice/?amp%3Butm_medium=mastodon",
|
||||
"wm-property": "in-reply-to",
|
||||
"wm-private": false
|
||||
},
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "Fundor333",
|
||||
"photo": "https://webmention.io/avatar/files.mastodon.social/36bc58e7595de593f520ba92ea9a8433b6dfde5a76f3f6d7d69755ac29007318.png",
|
||||
"url": "https://mastodon.social/@fundor333"
|
||||
},
|
||||
"url": "https://mastodon.social/@fundor333/113062392356184443",
|
||||
"published": "2024-09-01T12:53:15+00:00",
|
||||
"wm-received": "2024-09-02T00:13:26Z",
|
||||
"wm-id": 1845511,
|
||||
"wm-source": "https://brid.gy/comment/mastodon/@fundor333@mastodon.social/113062281555217401/113062392356184443",
|
||||
"wm-target": "https://fundor333.com/photos/2024/hunting-at-night-in-venice/?amp%3Butm_medium=mastodon",
|
||||
"wm-protocol": "webmention",
|
||||
"content": {
|
||||
"html": "<p><span class=\"h-card\"><a href=\"https://mastodon.social/@andreagrandi\" class=\"u-url\">@<span>andreagrandi</span></a></span> yep ed è dove faccio la spesa</p>",
|
||||
"text": "@andreagrandi yep ed è dove faccio la spesa"
|
||||
},
|
||||
"in-reply-to": "https://fundor333.com/photos/2024/hunting-at-night-in-venice/?amp%3Butm_medium=mastodon",
|
||||
"wm-property": "in-reply-to",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,28 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "fundor333",
|
||||
"photo": "https://webmention.io/avatar/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg",
|
||||
"url": "https://bsky.app/profile/fundor333.com"
|
||||
},
|
||||
"url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3kzx72rl5z223",
|
||||
"published": "2024-08-17T23:15:46+00:00",
|
||||
"wm-received": "2024-08-17T23:15:50Z",
|
||||
"wm-id": 1843534,
|
||||
"wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3kzx72rl5z223%23bridgy-fed-create",
|
||||
"wm-target": "https://fundor333.com/photos/2024/moon-of-middle-summer/",
|
||||
"wm-protocol": "webmention",
|
||||
"photo": [
|
||||
"https://shiitake.us-east.host.bsky.network/xrpc/com.atproto.sync.getBlob?did=did:plc:u7piwonv4s27ysugjaa6im2q&cid=bafkreigmqivob6ppnnznhraya5vxog4bfiipqlco2zuvqzwhyrnz7547f4"
|
||||
],
|
||||
"content": {
|
||||
"html": "I LOVE to walk after dark but I am not very good with the astronomical photo\n\n## Challenge\n\nI am studing how to take a photo of the moon or the stars. In this one I use some filters to get a better image the day after. (<a href=\"https://fundor333.com/photos/2024/moon-of-middle-summer/\">https://fundor333.com/photos/2024/moon-of-middle-summer/</a>)",
|
||||
"text": "I LOVE to walk after dark but I am not very good with the astronomical photo\n\n## Challenge\n\nI am studing how to take a photo of the moon or the stars. In this one I use some filters to get a better image the day after. (https://fundor333.com/photos/2024/moon-of-middle-summer/)"
|
||||
},
|
||||
"mention-of": "https://fundor333.com/photos/2024/moon-of-middle-summer/",
|
||||
"wm-property": "mention-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,21 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "Viola A. Fox [ヴィオラ]",
|
||||
"photo": "https://webmention.io/avatar/cdn.bsky.app/e780115e11694294b403185747e579422a21a7e94b7b4109dd0f2b8a4f429b8e.jpg",
|
||||
"url": "https://bsky.app/profile/violaafox.bsky.social"
|
||||
},
|
||||
"url": "https://bsky.app/profile/fundor333.bsky.social/post/3l25hhf747t2q#liked_by_did:plc:2xb5tcpckdlfha2i44djytwb",
|
||||
"published": null,
|
||||
"wm-received": "2024-10-28T17:24:09Z",
|
||||
"wm-id": 1854912,
|
||||
"wm-source": "https://brid.gy/like/bluesky/did:plc:u7piwonv4s27ysugjaa6im2q/at%253A%252F%252Fdid%253Aplc%253Au7piwonv4s27ysugjaa6im2q%252Fapp.bsky.feed.post%252F3l25hhf747t2q/did%253Aplc%253A2xb5tcpckdlfha2i44djytwb",
|
||||
"wm-target": "https://fundor333.com/photos/2024/moon-palace-and-still-water/",
|
||||
"wm-protocol": "webmention",
|
||||
"like-of": "https://fundor333.com/photos/2024/moon-palace-and-still-water/",
|
||||
"wm-property": "like-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
File diff suppressed because one or more lines are too long
@@ -1,85 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "Juna Salviati",
|
||||
"photo": "https://webmention.io/avatar/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://webmention.io/avatar/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
|
||||
},
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "chringel.dev",
|
||||
"photo": "https://webmention.io/avatar/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": "🇺🇦🏳️🌈🐍Fundor 333🐳👨💻",
|
||||
"photo": "https://webmention.io/avatar/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
|
||||
}
|
||||
]
|
||||
File diff suppressed because one or more lines are too long
@@ -1,51 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "Enrico Campagnol",
|
||||
"photo": "https://webmention.io/avatar/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": "💬 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! 🍾</p>\n<p>And good luck on conquering the world! 😜</p>",
|
||||
"text": "That is so cool, that you implemented a micropub server. Congrats! 🍾\nAnd good luck on conquering the world! 😜"
|
||||
},
|
||||
"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/"
|
||||
}
|
||||
}
|
||||
]
|
||||
@@ -1,25 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "fundor333",
|
||||
"photo": "https://webmention.io/avatar/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg",
|
||||
"url": "https://bsky.app/profile/fundor333.com"
|
||||
},
|
||||
"url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3kzealw3izs2n",
|
||||
"published": "2023-05-26T16:48:25+00:00",
|
||||
"wm-received": "2024-08-10T10:22:42Z",
|
||||
"wm-id": 1842644,
|
||||
"wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3kzealw3izs2n%23bridgy-fed-create",
|
||||
"wm-target": "https://fundor333.com/post/2023/following-the-elephant-toots-with-the-python/?utm_medium=rss",
|
||||
"wm-protocol": "webmention",
|
||||
"content": {
|
||||
"html": "How I follow all who Toots about PyconIt2023 #develop #mastodon #pyconit #pyhton (<a href=\"https://fundor333.com/post/2023/following-the-elephant-toots-with-the-python/?utm_medium=rss\">https://fundor333.com/post/2023/following-the-elephant-toots-with-the-python/?utm_medium=rss</a>)",
|
||||
"text": "How I follow all who Toots about PyconIt2023 #develop #mastodon #pyconit #pyhton (https://fundor333.com/post/2023/following-the-elephant-toots-with-the-python/?utm_medium=rss)"
|
||||
},
|
||||
"mention-of": "https://fundor333.com/post/2023/following-the-elephant-toots-with-the-python/?utm_medium=rss",
|
||||
"wm-property": "mention-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,25 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "fundor333",
|
||||
"photo": "https://webmention.io/avatar/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg",
|
||||
"url": "https://bsky.app/profile/fundor333.com"
|
||||
},
|
||||
"url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3kzeam5gw762s",
|
||||
"published": "2023-05-19T13:32:33+00:00",
|
||||
"wm-received": "2024-08-10T10:22:51Z",
|
||||
"wm-id": 1842645,
|
||||
"wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3kzeam5gw762s%23bridgy-fed-create",
|
||||
"wm-target": "https://fundor333.com/post/2023/why-i-stop-making-script-and-start-to-make-bash-terminal-commands/?utm_medium=rss",
|
||||
"wm-protocol": "webmention",
|
||||
"content": {
|
||||
"html": "#coding #hacking #bash #command line #script (<a href=\"https://fundor333.com/post/2023/why-i-stop-making-script-and-start-to-make-bash-terminal-commands/?utm_medium=rss\">https://fundor333.com/post/2023/why-i-stop-making-script-and-start-to-make-bash-terminal-commands/?utm_medium=rss</a>)",
|
||||
"text": "#coding #hacking #bash #command line #script (https://fundor333.com/post/2023/why-i-stop-making-script-and-start-to-make-bash-terminal-commands/?utm_medium=rss)"
|
||||
},
|
||||
"mention-of": "https://fundor333.com/post/2023/why-i-stop-making-script-and-start-to-make-bash-terminal-commands/?utm_medium=rss",
|
||||
"wm-property": "mention-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,25 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "fundor333",
|
||||
"photo": "https://webmention.io/avatar/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg",
|
||||
"url": "https://bsky.app/profile/fundor333.com"
|
||||
},
|
||||
"url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3kzeal5laef23",
|
||||
"published": "2024-07-10T11:34:15+00:00",
|
||||
"wm-received": "2024-08-10T10:22:17Z",
|
||||
"wm-id": 1842639,
|
||||
"wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3kzeal5laef23%23bridgy-fed-create",
|
||||
"wm-target": "https://fundor333.com/post/2024/why-do-i-disinstall-pipenv-and-use-only-poetry/?utm_medium=rss",
|
||||
"wm-protocol": "webmention",
|
||||
"content": {
|
||||
"html": "I choose to don't use pipenv and move to poetry and pyproject and other stuff for dev with python #dev #coding #pipenv #poetry #pyenv #pyproject (<a href=\"https://fundor333.com/post/2024/why-do-i-disinstall-pipenv-and-use-only-poetry/?utm_medium=rss\">https://fundor333.com/post/2024/why-do-i-disinstall-pipenv-and-use-only-poetry/?utm_medium=rss</a>)",
|
||||
"text": "I choose to don't use pipenv and move to poetry and pyproject and other stuff for dev with python #dev #coding #pipenv #poetry #pyenv #pyproject (https://fundor333.com/post/2024/why-do-i-disinstall-pipenv-and-use-only-poetry/?utm_medium=rss)"
|
||||
},
|
||||
"mention-of": "https://fundor333.com/post/2024/why-do-i-disinstall-pipenv-and-use-only-poetry/?utm_medium=rss",
|
||||
"wm-property": "mention-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,21 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "Rahul",
|
||||
"photo": "https://webmention.io/avatar/pbs.twimg.com/703f3659749ffe49b61b1a2f94d0e991c67c4ac617e1dc34eeac4c3aee5d3a06.jpg",
|
||||
"url": "https://twitter.com/rahul05ranjan"
|
||||
},
|
||||
"url": "https://twitter.com/fundor333/status/1548774048875806720#favorited-by-411419084",
|
||||
"published": null,
|
||||
"wm-received": "2022-08-02T20:47:27Z",
|
||||
"wm-id": 1448702,
|
||||
"wm-source": "https://brid.gy/like/twitter/fundor333/1548774048875806720/411419084",
|
||||
"wm-target": "https://fundor333.com/social/2022/07/17/auto-setup-remote-branch-and-never-again-see-an-error-about-the-missing-upstream--pawelgrzybekcom/",
|
||||
"wm-protocol": "webmention",
|
||||
"like-of": "https://fundor333.com/social/2022/07/17/auto-setup-remote-branch-and-never-again-see-an-error-about-the-missing-upstream--pawelgrzybekcom/",
|
||||
"wm-property": "like-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,29 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "Wouter Groeneveld",
|
||||
"photo": "https://webmention.io/avatar/brainbaking.com/4966f3a2a3d4594117a1a709c48bc3d9dc079f6fe32ae92e91acecde0127a5ec.jpg",
|
||||
"url": "https://brainbaking.com/"
|
||||
},
|
||||
"url": "https://brainbaking.com/notes/2022/08/03h11m10s41/",
|
||||
"published": "2022-08-03T11:10:00",
|
||||
"wm-received": "2022-08-04T10:00:24Z",
|
||||
"wm-id": 1450432,
|
||||
"wm-source": "https://brainbaking.com/notes/2022/08/03h11m10s41/",
|
||||
"wm-target": "https://fundor333.com/social/2022/08/03/1659516036/",
|
||||
"wm-protocol": "webmention",
|
||||
"name": "Half-Baked Thought",
|
||||
"content": {
|
||||
"html": "<p>Fundor 333 asked:</p>\n<blockquote>\n<p>In your opinion something like Gitea with a syndication like Mastodon will solve some of the problems and move more people on this “Gitea with Syndication”?</p>\n</blockquote>\n<p>I’d answer: yes and no. Yes, it will solve some problems—hopefully more easy collaboration across different instances. With GitHub, that’s not a problem, provided that everyone uses GitHub. And No, I don’t think it will move more people towards Gitea, since syndication and self-hosting are usually two “complicated” solutions. Note that I didn’t say complex. Most people will still find it too troublesome to move. Just look at Mastodon VS Twitter. The <code>@user@mastodoninstance</code> thing already trips most people up.</p>",
|
||||
"text": "Fundor 333 asked:\n\nIn your opinion something like Gitea with a syndication like Mastodon will solve some of the problems and move more people on this “Gitea with Syndication”?\n\nI’d answer: yes and no. Yes, it will solve some problems—hopefully more easy collaboration across different instances. With GitHub, that’s not a problem, provided that everyone uses GitHub. And No, I don’t think it will move more people towards Gitea, since syndication and self-hosting are usually two “complicated” solutions. Note that I didn’t say complex. Most people will still find it too troublesome to move. Just look at Mastodon VS Twitter. The @user@mastodoninstance thing already trips most people up."
|
||||
},
|
||||
"in-reply-to": "https://fundor333.com/social/2022/08/03/1659516036/",
|
||||
"wm-property": "in-reply-to",
|
||||
"wm-private": false,
|
||||
"rels": {
|
||||
"canonical": "https://brainbaking.com/notes/2022/08/03h11m10s41/"
|
||||
}
|
||||
}
|
||||
]
|
||||
@@ -1,25 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "🇺🇦🏳️🌈🐍Fundor 333🐳👨💻",
|
||||
"photo": "https://webmention.io/avatar/pbs.twimg.com/c3d085f0266cb157220a9e6312c26ccaeb56e5c4d2d501cf0d6426f05c36890e.jpg",
|
||||
"url": "https://twitter.com/fundor333"
|
||||
},
|
||||
"url": "https://twitter.com/fundor333/status/1577345091492102152",
|
||||
"published": "2022-10-04T17:09:10+00:00",
|
||||
"wm-received": "2022-10-04T19:05:25Z",
|
||||
"wm-id": 1532897,
|
||||
"wm-source": "https://brid.gy/comment/twitter/fundor333/1577345091492102152/1577345091492102152",
|
||||
"wm-target": "https://fundor333.com/social/2022/10/04/1664903082/",
|
||||
"wm-protocol": "webmention",
|
||||
"content": {
|
||||
"html": "- (<a href=\"https://fundor333.com/social/2022/10/04/1664903082/\">fundor333.com/social/2022/10…</a>)\n<a class=\"u-mention\" href=\"https://twitter.com/Biberkopf76\"></a>",
|
||||
"text": "- (fundor333.com/social/2022/10…)"
|
||||
},
|
||||
"in-reply-to": "https://fundor333.com/social/2022/10/04/1664903082/",
|
||||
"wm-property": "in-reply-to",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,21 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "GDG Venezia",
|
||||
"photo": "https://webmention.io/avatar/pbs.twimg.com/95a5c7377ea078c36edd58efb8d2a25f00d10364bccbbdfc6e13728b9cb771cb.png",
|
||||
"url": "https://twitter.com/gdgvenezia"
|
||||
},
|
||||
"url": "https://twitter.com/fundor333/status/1583461866516291584#favorited-by-746402991821963264",
|
||||
"published": null,
|
||||
"wm-received": "2022-10-21T21:40:05Z",
|
||||
"wm-id": 1543150,
|
||||
"wm-source": "https://brid.gy/like/twitter/fundor333/1583461866516291584/746402991821963264",
|
||||
"wm-target": "https://fundor333.com/social/2022/10/21/1666361433/",
|
||||
"wm-protocol": "webmention",
|
||||
"like-of": "https://fundor333.com/social/2022/10/21/1666361433/",
|
||||
"wm-property": "like-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,43 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "Michel Murabito",
|
||||
"photo": "https://webmention.io/avatar/pbs.twimg.com/0b84c31cf0b9e33abe8e2bff95dad66665dfd63bc32f7dbaafffc4ac61759cc9.jpg",
|
||||
"url": "https://twitter.com/michelmurabito"
|
||||
},
|
||||
"url": "https://twitter.com/michelmurabito/status/1583817207246880779",
|
||||
"published": "2022-10-22T13:47:02+00:00",
|
||||
"wm-received": "2022-10-22T15:10:27Z",
|
||||
"wm-id": 1543462,
|
||||
"wm-source": "https://brid.gy/repost/twitter/fundor333/1583801197688811520/1583817207246880779",
|
||||
"wm-target": "https://fundor333.com/social/2022/10/22/1666442277/",
|
||||
"wm-protocol": "webmention",
|
||||
"content": {
|
||||
"text": "@michelmurabito al #DevFestTriveneto che presenta #ronda basato su #opa #DevFest #DevFest2022 (fundor333.com/social/2022/10…)"
|
||||
},
|
||||
"repost-of": "https://fundor333.com/social/2022/10/22/1666442277/",
|
||||
"wm-property": "repost-of",
|
||||
"wm-private": false
|
||||
},
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "Michel Murabito",
|
||||
"photo": "https://webmention.io/avatar/pbs.twimg.com/0b84c31cf0b9e33abe8e2bff95dad66665dfd63bc32f7dbaafffc4ac61759cc9.jpg",
|
||||
"url": "https://twitter.com/michelmurabito"
|
||||
},
|
||||
"url": "https://twitter.com/fundor333/status/1583801197688811520#favorited-by-51541465",
|
||||
"published": null,
|
||||
"wm-received": "2022-10-22T15:10:27Z",
|
||||
"wm-id": 1543463,
|
||||
"wm-source": "https://brid.gy/like/twitter/fundor333/1583801197688811520/51541465",
|
||||
"wm-target": "https://fundor333.com/social/2022/10/22/1666442277/",
|
||||
"wm-protocol": "webmention",
|
||||
"like-of": "https://fundor333.com/social/2022/10/22/1666442277/",
|
||||
"wm-property": "like-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,25 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "fundor333",
|
||||
"photo": "https://webmention.io/avatar/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg",
|
||||
"url": "https://bsky.app/profile/fundor333.com"
|
||||
},
|
||||
"url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3kzeawz5won2a",
|
||||
"published": "2024-08-10T10:28:52+00:00",
|
||||
"wm-received": "2024-08-10T10:28:55Z",
|
||||
"wm-id": 1842676,
|
||||
"wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3kzeawz5won2a%23bridgy-fed-create",
|
||||
"wm-target": "https://fundor333.com/social/2022/10/26/andy-duvall---duvelmandice-su-twitter---listen-dooms-are-expensive-no-one-is-handing-them-out-to-your-kids-for-free-https---tcozydlwdo6tl--twitter/?utm_medium=rss",
|
||||
"wm-protocol": "webmention",
|
||||
"content": {
|
||||
"html": "post (<a href=\"https://fundor333.com/social/2022/10/26/andy-duvall---duvelmandice-su-twitter---listen-dooms-are-expensive-no-one-is-handing-them-out-to-your-kids-for-free-https---tcozydlwdo6tl--twitter/?utm_medium=rss\">https://fundor333.com/social/2022/10/26/andy-duvall---duvelmandice-su-twitter---listen-dooms-are-expensive-no-one-is-handing-them-out-to-your-kids-for-free-https---tcozydlwdo6tl--twitter/?utm_medium=rss</a>)",
|
||||
"text": "post (https://fundor333.com/social/2022/10/26/andy-duvall---duvelmandice-su-twitter---listen-dooms-are-expensive-no-one-is-handing-them-out-to-your-kids-for-free-https---tcozydlwdo6tl--twitter/?utm_medium=rss)"
|
||||
},
|
||||
"mention-of": "https://fundor333.com/social/2022/10/26/andy-duvall---duvelmandice-su-twitter---listen-dooms-are-expensive-no-one-is-handing-them-out-to-your-kids-for-free-https---tcozydlwdo6tl--twitter/?utm_medium=rss",
|
||||
"wm-property": "mention-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,25 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "fundor333",
|
||||
"photo": "https://webmention.io/avatar/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg",
|
||||
"url": "https://bsky.app/profile/fundor333.com"
|
||||
},
|
||||
"url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3kzeaws6dgc2m",
|
||||
"published": "2024-08-10T10:28:45+00:00",
|
||||
"wm-received": "2024-08-10T10:28:48Z",
|
||||
"wm-id": 1842675,
|
||||
"wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3kzeaws6dgc2m%23bridgy-fed-create",
|
||||
"wm-target": "https://fundor333.com/social/2022/11/02/automatically-sort-your-python-imports-in-flask-and-django-with-isort/?utm_medium=rss",
|
||||
"wm-protocol": "webmention",
|
||||
"content": {
|
||||
"html": "A Good way for sorting you import (<a href=\"https://fundor333.com/social/2022/11/02/automatically-sort-your-python-imports-in-flask-and-django-with-isort/?utm_medium=rss\">https://fundor333.com/social/2022/11/02/automatically-sort-your-python-imports-in-flask-and-django-with-isort/?utm_medium=rss</a>)",
|
||||
"text": "A Good way for sorting you import (https://fundor333.com/social/2022/11/02/automatically-sort-your-python-imports-in-flask-and-django-with-isort/?utm_medium=rss)"
|
||||
},
|
||||
"mention-of": "https://fundor333.com/social/2022/11/02/automatically-sort-your-python-imports-in-flask-and-django-with-isort/?utm_medium=rss",
|
||||
"wm-property": "mention-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,21 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "Steven",
|
||||
"photo": "https://webmention.io/avatar/pbs.twimg.com/802e41609ef1166d2963f7e50cf22fee349c1ec9f9958ac94fa14cec1d845270.png",
|
||||
"url": "https://twitter.com/KapSteven"
|
||||
},
|
||||
"url": "https://twitter.com/fundor333/status/1592856241415634946#favorited-by-1381137193981386752",
|
||||
"published": null,
|
||||
"wm-received": "2022-11-16T20:17:11Z",
|
||||
"wm-id": 1560903,
|
||||
"wm-source": "https://brid.gy/like/twitter/fundor333/1592856241415634946/1381137193981386752",
|
||||
"wm-target": "https://fundor333.com/social/2022/11/16/pythons-doctest---document-and-test-your-code-at-once--real-python/",
|
||||
"wm-protocol": "webmention",
|
||||
"like-of": "https://fundor333.com/social/2022/11/16/pythons-doctest---document-and-test-your-code-at-once--real-python/",
|
||||
"wm-property": "like-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,25 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "fundor333",
|
||||
"photo": "https://webmention.io/avatar/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg",
|
||||
"url": "https://bsky.app/profile/fundor333.com"
|
||||
},
|
||||
"url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3kzeawen2722w",
|
||||
"published": "2024-08-10T10:28:31+00:00",
|
||||
"wm-received": "2024-08-10T10:28:33Z",
|
||||
"wm-id": 1842674,
|
||||
"wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3kzeawen2722w%23bridgy-fed-create",
|
||||
"wm-target": "https://fundor333.com/social/2022/11/16/pythons-doctest---document-and-test-your-code-at-once--real-python/?utm_medium=rss",
|
||||
"wm-protocol": "webmention",
|
||||
"content": {
|
||||
"html": "One of the easyer way to make a test (<a href=\"https://fundor333.com/social/2022/11/16/pythons-doctest---document-and-test-your-code-at-once--real-python/?utm_medium=rss\">https://fundor333.com/social/2022/11/16/pythons-doctest---document-and-test-your-code-at-once--real-python/?utm_medium=rss</a>)",
|
||||
"text": "One of the easyer way to make a test (https://fundor333.com/social/2022/11/16/pythons-doctest---document-and-test-your-code-at-once--real-python/?utm_medium=rss)"
|
||||
},
|
||||
"mention-of": "https://fundor333.com/social/2022/11/16/pythons-doctest---document-and-test-your-code-at-once--real-python/?utm_medium=rss",
|
||||
"wm-property": "mention-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,25 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "fundor333",
|
||||
"photo": "https://webmention.io/avatar/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg",
|
||||
"url": "https://bsky.app/profile/fundor333.com"
|
||||
},
|
||||
"url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3kzeawbycaz2u",
|
||||
"published": "2024-08-10T10:28:28+00:00",
|
||||
"wm-received": "2024-08-10T10:28:30Z",
|
||||
"wm-id": 1842673,
|
||||
"wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3kzeawbycaz2u%23bridgy-fed-create",
|
||||
"wm-target": "https://fundor333.com/social/2022/11/23/detecting-if-a-url-scheme-can-be-handled/?utm_medium=rss",
|
||||
"wm-protocol": "webmention",
|
||||
"content": {
|
||||
"html": "Home (<a href=\"https://fundor333.com/social/2022/11/23/detecting-if-a-url-scheme-can-be-handled/?utm_medium=rss\">https://fundor333.com/social/2022/11/23/detecting-if-a-url-scheme-can-be-handled/?utm_medium=rss</a>)",
|
||||
"text": "Home (https://fundor333.com/social/2022/11/23/detecting-if-a-url-scheme-can-be-handled/?utm_medium=rss)"
|
||||
},
|
||||
"mention-of": "https://fundor333.com/social/2022/11/23/detecting-if-a-url-scheme-can-be-handled/?utm_medium=rss",
|
||||
"wm-property": "mention-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,25 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "fundor333",
|
||||
"photo": "https://webmention.io/avatar/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg",
|
||||
"url": "https://bsky.app/profile/fundor333.com"
|
||||
},
|
||||
"url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3kzeaw5o7aq2t",
|
||||
"published": "2024-08-10T10:28:23+00:00",
|
||||
"wm-received": "2024-08-10T10:28:25Z",
|
||||
"wm-id": 1842672,
|
||||
"wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3kzeaw5o7aq2t%23bridgy-fed-create",
|
||||
"wm-target": "https://fundor333.com/social/2022/11/24/django-settings-patterns-to-avoid---adam-johnson/?utm_medium=rss",
|
||||
"wm-protocol": "webmention",
|
||||
"content": {
|
||||
"html": "Some suggestions for write Django Settings (<a href=\"https://fundor333.com/social/2022/11/24/django-settings-patterns-to-avoid---adam-johnson/?utm_medium=rss\">https://fundor333.com/social/2022/11/24/django-settings-patterns-to-avoid---adam-johnson/?utm_medium=rss</a>)",
|
||||
"text": "Some suggestions for write Django Settings (https://fundor333.com/social/2022/11/24/django-settings-patterns-to-avoid---adam-johnson/?utm_medium=rss)"
|
||||
},
|
||||
"mention-of": "https://fundor333.com/social/2022/11/24/django-settings-patterns-to-avoid---adam-johnson/?utm_medium=rss",
|
||||
"wm-property": "mention-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,25 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "fundor333",
|
||||
"photo": "https://webmention.io/avatar/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg",
|
||||
"url": "https://bsky.app/profile/fundor333.com"
|
||||
},
|
||||
"url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3kzeaw3l3un23",
|
||||
"published": "2024-08-10T10:28:21+00:00",
|
||||
"wm-received": "2024-08-10T10:28:23Z",
|
||||
"wm-id": 1842671,
|
||||
"wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3kzeaw3l3un23%23bridgy-fed-create",
|
||||
"wm-target": "https://fundor333.com/social/2022/11/27/up-to-date-guide-on-how-to-delete-all-posts-on-your-tumblr---louis-li/?utm_medium=rss",
|
||||
"wm-protocol": "webmention",
|
||||
"content": {
|
||||
"html": "A little command for cleaning tumblr\n\njavascript:$(’.overlay’).slice(0, 100).click() (<a href=\"https://fundor333.com/social/2022/11/27/up-to-date-guide-on-how-to-delete-all-posts-on-your-tumblr---louis-li/?utm_medium=rss\">https://fundor333.com/social/2022/11/27/up-to-date-guide-on-how-to-delete-all-posts-on-your-tumblr---louis-li/?utm_medium=rss</a>)",
|
||||
"text": "A little command for cleaning tumblr\n\njavascript:$(’.overlay’).slice(0, 100).click() (https://fundor333.com/social/2022/11/27/up-to-date-guide-on-how-to-delete-all-posts-on-your-tumblr---louis-li/?utm_medium=rss)"
|
||||
},
|
||||
"mention-of": "https://fundor333.com/social/2022/11/27/up-to-date-guide-on-how-to-delete-all-posts-on-your-tumblr---louis-li/?utm_medium=rss",
|
||||
"wm-property": "mention-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,25 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "fundor333",
|
||||
"photo": "https://webmention.io/avatar/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg",
|
||||
"url": "https://bsky.app/profile/fundor333.com"
|
||||
},
|
||||
"url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3kzeavvu6ed2l",
|
||||
"published": "2024-08-10T10:28:15+00:00",
|
||||
"wm-received": "2024-08-10T10:28:17Z",
|
||||
"wm-id": 1842670,
|
||||
"wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3kzeavvu6ed2l%23bridgy-fed-create",
|
||||
"wm-target": "https://fundor333.com/social/2022/12/01/build-list---on-demand-manufacturing-directory---youtube/?utm_medium=rss",
|
||||
"wm-protocol": "webmention",
|
||||
"content": {
|
||||
"html": "Some manufactoring all around the world (<a href=\"https://fundor333.com/social/2022/12/01/build-list---on-demand-manufacturing-directory---youtube/?utm_medium=rss\">https://fundor333.com/social/2022/12/01/build-list---on-demand-manufacturing-directory---youtube/?utm_medium=rss</a>)",
|
||||
"text": "Some manufactoring all around the world (https://fundor333.com/social/2022/12/01/build-list---on-demand-manufacturing-directory---youtube/?utm_medium=rss)"
|
||||
},
|
||||
"mention-of": "https://fundor333.com/social/2022/12/01/build-list---on-demand-manufacturing-directory---youtube/?utm_medium=rss",
|
||||
"wm-property": "mention-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,25 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "fundor333",
|
||||
"photo": "https://webmention.io/avatar/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg",
|
||||
"url": "https://bsky.app/profile/fundor333.com"
|
||||
},
|
||||
"url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3kzeavpihqv26",
|
||||
"published": "2024-08-10T10:28:08+00:00",
|
||||
"wm-received": "2024-08-10T10:28:10Z",
|
||||
"wm-id": 1842669,
|
||||
"wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3kzeavpihqv26%23bridgy-fed-create",
|
||||
"wm-target": "https://fundor333.com/social/2022/12/14/add-structure-data-json-ld-in-hugo-website-pages---coding-n-concepts/?utm_medium=rss",
|
||||
"wm-protocol": "webmention",
|
||||
"content": {
|
||||
"html": "Templating for application/ld+json in your hugo site (<a href=\"https://fundor333.com/social/2022/12/14/add-structure-data-json-ld-in-hugo-website-pages---coding-n-concepts/?utm_medium=rss\">https://fundor333.com/social/2022/12/14/add-structure-data-json-ld-in-hugo-website-pages---coding-n-concepts/?utm_medium=rss</a>)",
|
||||
"text": "Templating for application/ld+json in your hugo site (https://fundor333.com/social/2022/12/14/add-structure-data-json-ld-in-hugo-website-pages---coding-n-concepts/?utm_medium=rss)"
|
||||
},
|
||||
"mention-of": "https://fundor333.com/social/2022/12/14/add-structure-data-json-ld-in-hugo-website-pages---coding-n-concepts/?utm_medium=rss",
|
||||
"wm-property": "mention-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,25 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "fundor333",
|
||||
"photo": "https://webmention.io/avatar/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg",
|
||||
"url": "https://bsky.app/profile/fundor333.com"
|
||||
},
|
||||
"url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3kzeapoyy7y2b",
|
||||
"published": "2024-08-10T10:24:47+00:00",
|
||||
"wm-received": "2024-08-10T10:24:49Z",
|
||||
"wm-id": 1842668,
|
||||
"wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3kzeapoyy7y2b%23bridgy-fed-create",
|
||||
"wm-target": "https://fundor333.com/social/2022/12/20/open-certain-urls-in-certain-browsers---chris-coyier/?utm_medium=rss",
|
||||
"wm-protocol": "webmention",
|
||||
"content": {
|
||||
"html": "post (<a href=\"https://fundor333.com/social/2022/12/20/open-certain-urls-in-certain-browsers---chris-coyier/?utm_medium=rss\">https://fundor333.com/social/2022/12/20/open-certain-urls-in-certain-browsers---chris-coyier/?utm_medium=rss</a>)",
|
||||
"text": "post (https://fundor333.com/social/2022/12/20/open-certain-urls-in-certain-browsers---chris-coyier/?utm_medium=rss)"
|
||||
},
|
||||
"mention-of": "https://fundor333.com/social/2022/12/20/open-certain-urls-in-certain-browsers---chris-coyier/?utm_medium=rss",
|
||||
"wm-property": "mention-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,25 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "fundor333",
|
||||
"photo": "https://webmention.io/avatar/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg",
|
||||
"url": "https://bsky.app/profile/fundor333.com"
|
||||
},
|
||||
"url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3kzeapmdkvi2a",
|
||||
"published": "2024-08-10T10:24:44+00:00",
|
||||
"wm-received": "2024-08-10T10:24:46Z",
|
||||
"wm-id": 1842667,
|
||||
"wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3kzeapmdkvi2a%23bridgy-fed-create",
|
||||
"wm-target": "https://fundor333.com/social/2022/12/21/help-choose-the-syntax-for-css-nesting--webkit/?utm_medium=rss",
|
||||
"wm-protocol": "webmention",
|
||||
"content": {
|
||||
"html": "New way for nesting in CSS. Which one do you like more? (<a href=\"https://fundor333.com/social/2022/12/21/help-choose-the-syntax-for-css-nesting--webkit/?utm_medium=rss\">https://fundor333.com/social/2022/12/21/help-choose-the-syntax-for-css-nesting--webkit/?utm_medium=rss</a>)",
|
||||
"text": "New way for nesting in CSS. Which one do you like more? (https://fundor333.com/social/2022/12/21/help-choose-the-syntax-for-css-nesting--webkit/?utm_medium=rss)"
|
||||
},
|
||||
"mention-of": "https://fundor333.com/social/2022/12/21/help-choose-the-syntax-for-css-nesting--webkit/?utm_medium=rss",
|
||||
"wm-property": "mention-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,25 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "fundor333",
|
||||
"photo": "https://webmention.io/avatar/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg",
|
||||
"url": "https://bsky.app/profile/fundor333.com"
|
||||
},
|
||||
"url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3kzeapjzuik2w",
|
||||
"published": "2024-08-10T10:24:41+00:00",
|
||||
"wm-received": "2024-08-10T10:24:43Z",
|
||||
"wm-id": 1842666,
|
||||
"wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3kzeapjzuik2w%23bridgy-fed-create",
|
||||
"wm-target": "https://fundor333.com/social/2022/12/23/whats-with-all-the-ducks--the-github-blog/?utm_medium=rss",
|
||||
"wm-protocol": "webmention",
|
||||
"content": {
|
||||
"html": "DUUUUCKS (<a href=\"https://fundor333.com/social/2022/12/23/whats-with-all-the-ducks--the-github-blog/?utm_medium=rss\">https://fundor333.com/social/2022/12/23/whats-with-all-the-ducks--the-github-blog/?utm_medium=rss</a>)",
|
||||
"text": "DUUUUCKS (https://fundor333.com/social/2022/12/23/whats-with-all-the-ducks--the-github-blog/?utm_medium=rss)"
|
||||
},
|
||||
"mention-of": "https://fundor333.com/social/2022/12/23/whats-with-all-the-ducks--the-github-blog/?utm_medium=rss",
|
||||
"wm-property": "mention-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,25 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "fundor333",
|
||||
"photo": "https://webmention.io/avatar/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg",
|
||||
"url": "https://bsky.app/profile/fundor333.com"
|
||||
},
|
||||
"url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3kzeapiyqsx2k",
|
||||
"published": "2024-08-10T10:24:40+00:00",
|
||||
"wm-received": "2024-08-10T10:24:43Z",
|
||||
"wm-id": 1842665,
|
||||
"wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3kzeapiyqsx2k%23bridgy-fed-create",
|
||||
"wm-target": "https://fundor333.com/social/2022/12/27/spyxfamily-e-le-poltrone-di-design---digital-tea-room/?utm_medium=rss",
|
||||
"wm-protocol": "webmention",
|
||||
"content": {
|
||||
"html": "Spy x Family e l’uso delle poltrone per spiegare i personaggi (<a href=\"https://fundor333.com/social/2022/12/27/spyxfamily-e-le-poltrone-di-design---digital-tea-room/?utm_medium=rss\">https://fundor333.com/social/2022/12/27/spyxfamily-e-le-poltrone-di-design---digital-tea-room/?utm_medium=rss</a>)",
|
||||
"text": "Spy x Family e l’uso delle poltrone per spiegare i personaggi (https://fundor333.com/social/2022/12/27/spyxfamily-e-le-poltrone-di-design---digital-tea-room/?utm_medium=rss)"
|
||||
},
|
||||
"mention-of": "https://fundor333.com/social/2022/12/27/spyxfamily-e-le-poltrone-di-design---digital-tea-room/?utm_medium=rss",
|
||||
"wm-property": "mention-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,25 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "fundor333",
|
||||
"photo": "https://webmention.io/avatar/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg",
|
||||
"url": "https://bsky.app/profile/fundor333.com"
|
||||
},
|
||||
"url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3kzeapaphnq26",
|
||||
"published": "2024-08-10T10:24:32+00:00",
|
||||
"wm-received": "2024-08-10T10:24:34Z",
|
||||
"wm-id": 1842664,
|
||||
"wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3kzeapaphnq26%23bridgy-fed-create",
|
||||
"wm-target": "https://fundor333.com/social/2023/01/05/i-feel-contractually-obliged-to-link-to-a-post-like-bring-back-personal-blogging---chris-coyier/?utm_medium=rss",
|
||||
"wm-protocol": "webmention",
|
||||
"content": {
|
||||
"html": "post (<a href=\"https://fundor333.com/social/2023/01/05/i-feel-contractually-obliged-to-link-to-a-post-like-bring-back-personal-blogging---chris-coyier/?utm_medium=rss\">https://fundor333.com/social/2023/01/05/i-feel-contractually-obliged-to-link-to-a-post-like-bring-back-personal-blogging---chris-coyier/?utm_medium=rss</a>)",
|
||||
"text": "post (https://fundor333.com/social/2023/01/05/i-feel-contractually-obliged-to-link-to-a-post-like-bring-back-personal-blogging---chris-coyier/?utm_medium=rss)"
|
||||
},
|
||||
"mention-of": "https://fundor333.com/social/2023/01/05/i-feel-contractually-obliged-to-link-to-a-post-like-bring-back-personal-blogging---chris-coyier/?utm_medium=rss",
|
||||
"wm-property": "mention-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,25 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "fundor333",
|
||||
"photo": "https://webmention.io/avatar/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg",
|
||||
"url": "https://bsky.app/profile/fundor333.com"
|
||||
},
|
||||
"url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3kzeaoxxbti26",
|
||||
"published": "2024-08-10T10:24:22+00:00",
|
||||
"wm-received": "2024-08-10T10:24:25Z",
|
||||
"wm-id": 1842662,
|
||||
"wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3kzeaoxxbti26%23bridgy-fed-create",
|
||||
"wm-target": "https://fundor333.com/social/2023/01/08/the-year-of-the-personal-website--matthias-ott--user-experience-designer/?utm_medium=rss",
|
||||
"wm-protocol": "webmention",
|
||||
"content": {
|
||||
"html": "post (<a href=\"https://fundor333.com/social/2023/01/08/the-year-of-the-personal-website--matthias-ott--user-experience-designer/?utm_medium=rss\">https://fundor333.com/social/2023/01/08/the-year-of-the-personal-website--matthias-ott--user-experience-designer/?utm_medium=rss</a>)",
|
||||
"text": "post (https://fundor333.com/social/2023/01/08/the-year-of-the-personal-website--matthias-ott--user-experience-designer/?utm_medium=rss)"
|
||||
},
|
||||
"mention-of": "https://fundor333.com/social/2023/01/08/the-year-of-the-personal-website--matthias-ott--user-experience-designer/?utm_medium=rss",
|
||||
"wm-property": "mention-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,25 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "fundor333",
|
||||
"photo": "https://webmention.io/avatar/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg",
|
||||
"url": "https://bsky.app/profile/fundor333.com"
|
||||
},
|
||||
"url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3kzeap5r35y2a",
|
||||
"published": "2024-08-10T10:24:29+00:00",
|
||||
"wm-received": "2024-08-10T10:24:31Z",
|
||||
"wm-id": 1842663,
|
||||
"wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3kzeap5r35y2a%23bridgy-fed-create",
|
||||
"wm-target": "https://fundor333.com/social/2023/01/08/this-virtual-twitch-streamer-is-controlled-entirely-by-ai/?utm_medium=rss",
|
||||
"wm-protocol": "webmention",
|
||||
"content": {
|
||||
"html": "Every day between 6 to 11 pm GMT, Neuro-sama streams herself playing Minecraft and osu, a musical rhythm game. Like many V-tubers, or virtual YouTubers, Neuro-sama appears as a […] <a href=\"https://fundor333.com/social/2023/01/08/this-virtual-twitch-streamer-is-controlled-entirely-by-ai/?utm_medium=rss\">https://fundor333.com/social/2023/01/08/this-virtual-twitch-streamer-is-controlled-entirely-by-ai/?utm_medium=rss</a>",
|
||||
"text": "Every day between 6 to 11 pm GMT, Neuro-sama streams herself playing Minecraft and osu, a musical rhythm game. Like many V-tubers, or virtual YouTubers, Neuro-sama appears as a […] https://fundor333.com/social/2023/01/08/this-virtual-twitch-streamer-is-controlled-entirely-by-ai/?utm_medium=rss"
|
||||
},
|
||||
"mention-of": "https://fundor333.com/social/2023/01/08/this-virtual-twitch-streamer-is-controlled-entirely-by-ai/?utm_medium=rss",
|
||||
"wm-property": "mention-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,25 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "fundor333",
|
||||
"photo": "https://webmention.io/avatar/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg",
|
||||
"url": "https://bsky.app/profile/fundor333.com"
|
||||
},
|
||||
"url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3kzeaovb3272m",
|
||||
"published": "2024-08-10T10:24:20+00:00",
|
||||
"wm-received": "2024-08-10T10:24:22Z",
|
||||
"wm-id": 1842661,
|
||||
"wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3kzeaovb3272m%23bridgy-fed-create",
|
||||
"wm-target": "https://fundor333.com/social/2023/01/11/i-got-genuenly-exited-to-find-out-about-a-secret-society--peter-goes/?utm_medium=rss",
|
||||
"wm-protocol": "webmention",
|
||||
"content": {
|
||||
"html": "Another way to be on the web, strangly new, done with feed (<a href=\"https://fundor333.com/social/2023/01/11/i-got-genuenly-exited-to-find-out-about-a-secret-society--peter-goes/?utm_medium=rss\">https://fundor333.com/social/2023/01/11/i-got-genuenly-exited-to-find-out-about-a-secret-society--peter-goes/?utm_medium=rss</a>)",
|
||||
"text": "Another way to be on the web, strangly new, done with feed (https://fundor333.com/social/2023/01/11/i-got-genuenly-exited-to-find-out-about-a-secret-society--peter-goes/?utm_medium=rss)"
|
||||
},
|
||||
"mention-of": "https://fundor333.com/social/2023/01/11/i-got-genuenly-exited-to-find-out-about-a-secret-society--peter-goes/?utm_medium=rss",
|
||||
"wm-property": "mention-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,25 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "fundor333",
|
||||
"photo": "https://webmention.io/avatar/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg",
|
||||
"url": "https://bsky.app/profile/fundor333.com"
|
||||
},
|
||||
"url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3kzeaoszd5y2a",
|
||||
"published": "2024-08-10T10:24:17+00:00",
|
||||
"wm-received": "2024-08-10T10:24:20Z",
|
||||
"wm-id": 1842660,
|
||||
"wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3kzeaoszd5y2a%23bridgy-fed-create",
|
||||
"wm-target": "https://fundor333.com/social/2023/01/12/the-dungeons--dragons-ogl-11-tightens-grip-on-competition/?utm_medium=rss",
|
||||
"wm-protocol": "webmention",
|
||||
"content": {
|
||||
"html": "Or How Wizzard of the Coast is killing D&D ecosystem (<a href=\"https://fundor333.com/social/2023/01/12/the-dungeons--dragons-ogl-11-tightens-grip-on-competition/?utm_medium=rss\">https://fundor333.com/social/2023/01/12/the-dungeons--dragons-ogl-11-tightens-grip-on-competition/?utm_medium=rss</a>)",
|
||||
"text": "Or How Wizzard of the Coast is killing D&D ecosystem (https://fundor333.com/social/2023/01/12/the-dungeons--dragons-ogl-11-tightens-grip-on-competition/?utm_medium=rss)"
|
||||
},
|
||||
"mention-of": "https://fundor333.com/social/2023/01/12/the-dungeons--dragons-ogl-11-tightens-grip-on-competition/?utm_medium=rss",
|
||||
"wm-property": "mention-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,25 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "fundor333",
|
||||
"photo": "https://webmention.io/avatar/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg",
|
||||
"url": "https://bsky.app/profile/fundor333.com"
|
||||
},
|
||||
"url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3kzeaoqhd4v23",
|
||||
"published": "2024-08-10T10:24:15+00:00",
|
||||
"wm-received": "2024-08-10T10:24:17Z",
|
||||
"wm-id": 1842659,
|
||||
"wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3kzeaoqhd4v23%23bridgy-fed-create",
|
||||
"wm-target": "https://fundor333.com/social/2023/01/13/playing-dd-without-wizards-of-the-coast---alternatives-to-5e/?utm_medium=rss",
|
||||
"wm-protocol": "webmention",
|
||||
"content": {
|
||||
"html": "Some alternative for D&D (<a href=\"https://fundor333.com/social/2023/01/13/playing-dd-without-wizards-of-the-coast---alternatives-to-5e/?utm_medium=rss\">https://fundor333.com/social/2023/01/13/playing-dd-without-wizards-of-the-coast---alternatives-to-5e/?utm_medium=rss</a>)",
|
||||
"text": "Some alternative for D&D (https://fundor333.com/social/2023/01/13/playing-dd-without-wizards-of-the-coast---alternatives-to-5e/?utm_medium=rss)"
|
||||
},
|
||||
"mention-of": "https://fundor333.com/social/2023/01/13/playing-dd-without-wizards-of-the-coast---alternatives-to-5e/?utm_medium=rss",
|
||||
"wm-property": "mention-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,25 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "fundor333",
|
||||
"photo": "https://webmention.io/avatar/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg",
|
||||
"url": "https://bsky.app/profile/fundor333.com"
|
||||
},
|
||||
"url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3kzeanmtsbb2u",
|
||||
"published": "2024-08-10T10:23:37+00:00",
|
||||
"wm-received": "2024-08-10T10:23:39Z",
|
||||
"wm-id": 1842658,
|
||||
"wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3kzeanmtsbb2u%23bridgy-fed-create",
|
||||
"wm-target": "https://fundor333.com/social/2023/02/13/git-based-dotfile-management-without-symlinks--stefan-judis-web-development/?utm_medium=rss",
|
||||
"wm-protocol": "webmention",
|
||||
"content": {
|
||||
"html": "post (<a href=\"https://fundor333.com/social/2023/02/13/git-based-dotfile-management-without-symlinks--stefan-judis-web-development/?utm_medium=rss\">https://fundor333.com/social/2023/02/13/git-based-dotfile-management-without-symlinks--stefan-judis-web-development/?utm_medium=rss</a>)",
|
||||
"text": "post (https://fundor333.com/social/2023/02/13/git-based-dotfile-management-without-symlinks--stefan-judis-web-development/?utm_medium=rss)"
|
||||
},
|
||||
"mention-of": "https://fundor333.com/social/2023/02/13/git-based-dotfile-management-without-symlinks--stefan-judis-web-development/?utm_medium=rss",
|
||||
"wm-property": "mention-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,25 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "fundor333",
|
||||
"photo": "https://webmention.io/avatar/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg",
|
||||
"url": "https://bsky.app/profile/fundor333.com"
|
||||
},
|
||||
"url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3kzeankmqqp2k",
|
||||
"published": "2024-08-10T10:23:35+00:00",
|
||||
"wm-received": "2024-08-10T10:23:37Z",
|
||||
"wm-id": 1842657,
|
||||
"wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3kzeankmqqp2k%23bridgy-fed-create",
|
||||
"wm-target": "https://fundor333.com/social/2023/02/13/why-i-use-web-components---my-use-cases---dev-community/?utm_medium=rss",
|
||||
"wm-protocol": "webmention",
|
||||
"content": {
|
||||
"html": "A god example of WebComponents (<a href=\"https://fundor333.com/social/2023/02/13/why-i-use-web-components---my-use-cases---dev-community/?utm_medium=rss\">https://fundor333.com/social/2023/02/13/why-i-use-web-components---my-use-cases---dev-community/?utm_medium=rss</a>)",
|
||||
"text": "A god example of WebComponents (https://fundor333.com/social/2023/02/13/why-i-use-web-components---my-use-cases---dev-community/?utm_medium=rss)"
|
||||
},
|
||||
"mention-of": "https://fundor333.com/social/2023/02/13/why-i-use-web-components---my-use-cases---dev-community/?utm_medium=rss",
|
||||
"wm-property": "mention-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,25 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "fundor333",
|
||||
"photo": "https://webmention.io/avatar/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg",
|
||||
"url": "https://bsky.app/profile/fundor333.com"
|
||||
},
|
||||
"url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3kzeaniaghr2c",
|
||||
"published": "2024-08-10T10:23:32+00:00",
|
||||
"wm-received": "2024-08-10T10:23:34Z",
|
||||
"wm-id": 1842656,
|
||||
"wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3kzeaniaghr2c%23bridgy-fed-create",
|
||||
"wm-target": "https://fundor333.com/social/2023/02/15/use-your-domain-for-the-mastodon-account-without-hosting-an-instance--pawelgrzybekcom/?utm_medium=rss",
|
||||
"wm-protocol": "webmention",
|
||||
"content": {
|
||||
"html": "Use your domain as alias for mastondon (<a href=\"https://fundor333.com/social/2023/02/15/use-your-domain-for-the-mastodon-account-without-hosting-an-instance--pawelgrzybekcom/?utm_medium=rss\">https://fundor333.com/social/2023/02/15/use-your-domain-for-the-mastodon-account-without-hosting-an-instance--pawelgrzybekcom/?utm_medium=rss</a>)",
|
||||
"text": "Use your domain as alias for mastondon (https://fundor333.com/social/2023/02/15/use-your-domain-for-the-mastodon-account-without-hosting-an-instance--pawelgrzybekcom/?utm_medium=rss)"
|
||||
},
|
||||
"mention-of": "https://fundor333.com/social/2023/02/15/use-your-domain-for-the-mastodon-account-without-hosting-an-instance--pawelgrzybekcom/?utm_medium=rss",
|
||||
"wm-property": "mention-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,25 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "fundor333",
|
||||
"photo": "https://webmention.io/avatar/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg",
|
||||
"url": "https://bsky.app/profile/fundor333.com"
|
||||
},
|
||||
"url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3kzeanfl4wx2s",
|
||||
"published": "2024-08-10T10:23:30+00:00",
|
||||
"wm-received": "2024-08-10T10:23:32Z",
|
||||
"wm-id": 1842655,
|
||||
"wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3kzeanfl4wx2s%23bridgy-fed-create",
|
||||
"wm-target": "https://fundor333.com/social/2023/02/17/apple-doesnt-want-you-developing-hobby-apps--bennett-notes/?utm_medium=rss",
|
||||
"wm-protocol": "webmention",
|
||||
"content": {
|
||||
"html": "Apple don’t want hobbistic developer (<a href=\"https://fundor333.com/social/2023/02/17/apple-doesnt-want-you-developing-hobby-apps--bennett-notes/?utm_medium=rss\">https://fundor333.com/social/2023/02/17/apple-doesnt-want-you-developing-hobby-apps--bennett-notes/?utm_medium=rss</a>)",
|
||||
"text": "Apple don’t want hobbistic developer (https://fundor333.com/social/2023/02/17/apple-doesnt-want-you-developing-hobby-apps--bennett-notes/?utm_medium=rss)"
|
||||
},
|
||||
"mention-of": "https://fundor333.com/social/2023/02/17/apple-doesnt-want-you-developing-hobby-apps--bennett-notes/?utm_medium=rss",
|
||||
"wm-property": "mention-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,25 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "fundor333",
|
||||
"photo": "https://webmention.io/avatar/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg",
|
||||
"url": "https://bsky.app/profile/fundor333.com"
|
||||
},
|
||||
"url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3kzeandby4z2e",
|
||||
"published": "2024-08-10T10:23:27+00:00",
|
||||
"wm-received": "2024-08-10T10:23:29Z",
|
||||
"wm-id": 1842654,
|
||||
"wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3kzeandby4z2e%23bridgy-fed-create",
|
||||
"wm-target": "https://fundor333.com/social/2023/02/28/the-fediverse-is-already-dead--nora-codes/?utm_medium=rss",
|
||||
"wm-protocol": "webmention",
|
||||
"content": {
|
||||
"html": "Why are Fedverse dead and who kill it. A good article about Fedverse and some of the problem that came with it.\n\nI am not sure about the all the point but I found the article interesting (<a href=\"https://fundor333.com/social/2023/02/28/the-fediverse-is-already-dead--nora-codes/?utm_medium=rss\">https://fundor333.com/social/2023/02/28/the-fediverse-is-already-dead--nora-codes/?utm_medium=rss</a>)",
|
||||
"text": "Why are Fedverse dead and who kill it. A good article about Fedverse and some of the problem that came with it.\n\nI am not sure about the all the point but I found the article interesting (https://fundor333.com/social/2023/02/28/the-fediverse-is-already-dead--nora-codes/?utm_medium=rss)"
|
||||
},
|
||||
"mention-of": "https://fundor333.com/social/2023/02/28/the-fediverse-is-already-dead--nora-codes/?utm_medium=rss",
|
||||
"wm-property": "mention-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,25 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "fundor333",
|
||||
"photo": "https://webmention.io/avatar/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg",
|
||||
"url": "https://bsky.app/profile/fundor333.com"
|
||||
},
|
||||
"url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3kzeanb5etr2c",
|
||||
"published": "2024-08-10T10:23:25+00:00",
|
||||
"wm-received": "2024-08-10T10:23:27Z",
|
||||
"wm-id": 1842653,
|
||||
"wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3kzeanb5etr2c%23bridgy-fed-create",
|
||||
"wm-target": "https://fundor333.com/social/2023/03/03/dont-use-stale-bots/?utm_medium=rss",
|
||||
"wm-protocol": "webmention",
|
||||
"content": {
|
||||
"html": "Why a stale bot is a bad thing for your bug tracker and why you don’t need to use it (<a href=\"https://fundor333.com/social/2023/03/03/dont-use-stale-bots/?utm_medium=rss\">https://fundor333.com/social/2023/03/03/dont-use-stale-bots/?utm_medium=rss</a>)",
|
||||
"text": "Why a stale bot is a bad thing for your bug tracker and why you don’t need to use it (https://fundor333.com/social/2023/03/03/dont-use-stale-bots/?utm_medium=rss)"
|
||||
},
|
||||
"mention-of": "https://fundor333.com/social/2023/03/03/dont-use-stale-bots/?utm_medium=rss",
|
||||
"wm-property": "mention-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,25 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "fundor333",
|
||||
"photo": "https://webmention.io/avatar/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg",
|
||||
"url": "https://bsky.app/profile/fundor333.com"
|
||||
},
|
||||
"url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3kzean2zbgs2m",
|
||||
"published": "2024-08-10T10:23:19+00:00",
|
||||
"wm-received": "2024-08-10T10:23:21Z",
|
||||
"wm-id": 1842652,
|
||||
"wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3kzean2zbgs2m%23bridgy-fed-create",
|
||||
"wm-target": "https://fundor333.com/social/2023/04/05/feedly-launches-strikebreaking-as-a-service/?utm_medium=rss",
|
||||
"wm-protocol": "webmention",
|
||||
"content": {
|
||||
"html": "Feedly claims they did not consider that the tool could be misused against protesters and striking workers (<a href=\"https://fundor333.com/social/2023/04/05/feedly-launches-strikebreaking-as-a-service/?utm_medium=rss\">https://fundor333.com/social/2023/04/05/feedly-launches-strikebreaking-as-a-service/?utm_medium=rss</a>)",
|
||||
"text": "Feedly claims they did not consider that the tool could be misused against protesters and striking workers (https://fundor333.com/social/2023/04/05/feedly-launches-strikebreaking-as-a-service/?utm_medium=rss)"
|
||||
},
|
||||
"mention-of": "https://fundor333.com/social/2023/04/05/feedly-launches-strikebreaking-as-a-service/?utm_medium=rss",
|
||||
"wm-property": "mention-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,25 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "fundor333",
|
||||
"photo": "https://webmention.io/avatar/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg",
|
||||
"url": "https://bsky.app/profile/fundor333.com"
|
||||
},
|
||||
"url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3kzeamyjzak2c",
|
||||
"published": "2024-08-10T10:23:16+00:00",
|
||||
"wm-received": "2024-08-10T10:23:18Z",
|
||||
"wm-id": 1842651,
|
||||
"wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3kzeamyjzak2c%23bridgy-fed-create",
|
||||
"wm-target": "https://fundor333.com/social/2023/04/05/playing-dd-with-chatgpt-as-the-dm--nicola-iarocci/?utm_medium=rss",
|
||||
"wm-protocol": "webmention",
|
||||
"content": {
|
||||
"html": "One session of D&D with ChatGPT (<a href=\"https://fundor333.com/social/2023/04/05/playing-dd-with-chatgpt-as-the-dm--nicola-iarocci/?utm_medium=rss\">https://fundor333.com/social/2023/04/05/playing-dd-with-chatgpt-as-the-dm--nicola-iarocci/?utm_medium=rss</a>)",
|
||||
"text": "One session of D&D with ChatGPT (https://fundor333.com/social/2023/04/05/playing-dd-with-chatgpt-as-the-dm--nicola-iarocci/?utm_medium=rss)"
|
||||
},
|
||||
"mention-of": "https://fundor333.com/social/2023/04/05/playing-dd-with-chatgpt-as-the-dm--nicola-iarocci/?utm_medium=rss",
|
||||
"wm-property": "mention-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,25 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "fundor333",
|
||||
"photo": "https://webmention.io/avatar/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg",
|
||||
"url": "https://bsky.app/profile/fundor333.com"
|
||||
},
|
||||
"url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3kzeamto6vo2r",
|
||||
"published": "2024-08-10T10:23:11+00:00",
|
||||
"wm-received": "2024-08-10T10:23:13Z",
|
||||
"wm-id": 1842650,
|
||||
"wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3kzeamto6vo2r%23bridgy-fed-create",
|
||||
"wm-target": "https://fundor333.com/social/2023/04/11/the-cost-of-javascript-frameworks---web-performance-consulting--timkadleccom/?utm_medium=rss",
|
||||
"wm-protocol": "webmention",
|
||||
"content": {
|
||||
"html": "A beautifull analisys of how mach cost a frameword for a site (<a href=\"https://fundor333.com/social/2023/04/11/the-cost-of-javascript-frameworks---web-performance-consulting--timkadleccom/?utm_medium=rss\">https://fundor333.com/social/2023/04/11/the-cost-of-javascript-frameworks---web-performance-consulting--timkadleccom/?utm_medium=rss</a>)",
|
||||
"text": "A beautifull analisys of how mach cost a frameword for a site (https://fundor333.com/social/2023/04/11/the-cost-of-javascript-frameworks---web-performance-consulting--timkadleccom/?utm_medium=rss)"
|
||||
},
|
||||
"mention-of": "https://fundor333.com/social/2023/04/11/the-cost-of-javascript-frameworks---web-performance-consulting--timkadleccom/?utm_medium=rss",
|
||||
"wm-property": "mention-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,25 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "fundor333",
|
||||
"photo": "https://webmention.io/avatar/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg",
|
||||
"url": "https://bsky.app/profile/fundor333.com"
|
||||
},
|
||||
"url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3kzeamqaedq2a",
|
||||
"published": "2024-08-10T10:23:07+00:00",
|
||||
"wm-received": "2024-08-10T10:23:09Z",
|
||||
"wm-id": 1842649,
|
||||
"wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3kzeamqaedq2a%23bridgy-fed-create",
|
||||
"wm-target": "https://fundor333.com/social/2023/04/17/3-benefits-of-migrating-and-consolidating-your-source-code--the-github-blog/?utm_medium=rss",
|
||||
"wm-protocol": "webmention",
|
||||
"content": {
|
||||
"html": "Why you need to migrate and consolidating your code (<a href=\"https://fundor333.com/social/2023/04/17/3-benefits-of-migrating-and-consolidating-your-source-code--the-github-blog/?utm_medium=rss\">https://fundor333.com/social/2023/04/17/3-benefits-of-migrating-and-consolidating-your-source-code--the-github-blog/?utm_medium=rss</a>)",
|
||||
"text": "Why you need to migrate and consolidating your code (https://fundor333.com/social/2023/04/17/3-benefits-of-migrating-and-consolidating-your-source-code--the-github-blog/?utm_medium=rss)"
|
||||
},
|
||||
"mention-of": "https://fundor333.com/social/2023/04/17/3-benefits-of-migrating-and-consolidating-your-source-code--the-github-blog/?utm_medium=rss",
|
||||
"wm-property": "mention-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,25 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "fundor333",
|
||||
"photo": "https://webmention.io/avatar/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg",
|
||||
"url": "https://bsky.app/profile/fundor333.com"
|
||||
},
|
||||
"url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3kzeamnnd2e2c",
|
||||
"published": "2024-08-10T10:23:04+00:00",
|
||||
"wm-received": "2024-08-10T10:23:07Z",
|
||||
"wm-id": 1842648,
|
||||
"wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3kzeamnnd2e2c%23bridgy-fed-create",
|
||||
"wm-target": "https://fundor333.com/social/2023/04/17/glyphhanger--a-tool-to-subset-and-optimize-fonts--stefan-judis-web-development/?utm_medium=rss",
|
||||
"wm-protocol": "webmention",
|
||||
"content": {
|
||||
"html": "Make your web page smaller (<a href=\"https://fundor333.com/social/2023/04/17/glyphhanger--a-tool-to-subset-and-optimize-fonts--stefan-judis-web-development/?utm_medium=rss\">https://fundor333.com/social/2023/04/17/glyphhanger--a-tool-to-subset-and-optimize-fonts--stefan-judis-web-development/?utm_medium=rss</a>)",
|
||||
"text": "Make your web page smaller (https://fundor333.com/social/2023/04/17/glyphhanger--a-tool-to-subset-and-optimize-fonts--stefan-judis-web-development/?utm_medium=rss)"
|
||||
},
|
||||
"mention-of": "https://fundor333.com/social/2023/04/17/glyphhanger--a-tool-to-subset-and-optimize-fonts--stefan-judis-web-development/?utm_medium=rss",
|
||||
"wm-property": "mention-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,25 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "fundor333",
|
||||
"photo": "https://webmention.io/avatar/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg",
|
||||
"url": "https://bsky.app/profile/fundor333.com"
|
||||
},
|
||||
"url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3kzeammpiwp2b",
|
||||
"published": "2024-08-10T10:23:04+00:00",
|
||||
"wm-received": "2024-08-10T10:23:06Z",
|
||||
"wm-id": 1842647,
|
||||
"wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3kzeammpiwp2b%23bridgy-fed-create",
|
||||
"wm-target": "https://fundor333.com/social/2023/04/19/see-the-websites-that-make-ai-bots-like-chatgpt-sound-so-smart---washington-post/?utm_medium=rss",
|
||||
"wm-protocol": "webmention",
|
||||
"content": {
|
||||
"html": "Do your site teach something to ChatGPT? (<a href=\"https://fundor333.com/social/2023/04/19/see-the-websites-that-make-ai-bots-like-chatgpt-sound-so-smart---washington-post/?utm_medium=rss\">https://fundor333.com/social/2023/04/19/see-the-websites-that-make-ai-bots-like-chatgpt-sound-so-smart---washington-post/?utm_medium=rss</a>)",
|
||||
"text": "Do your site teach something to ChatGPT? (https://fundor333.com/social/2023/04/19/see-the-websites-that-make-ai-bots-like-chatgpt-sound-so-smart---washington-post/?utm_medium=rss)"
|
||||
},
|
||||
"mention-of": "https://fundor333.com/social/2023/04/19/see-the-websites-that-make-ai-bots-like-chatgpt-sound-so-smart---washington-post/?utm_medium=rss",
|
||||
"wm-property": "mention-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,25 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "fundor333",
|
||||
"photo": "https://webmention.io/avatar/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg",
|
||||
"url": "https://bsky.app/profile/fundor333.com"
|
||||
},
|
||||
"url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3kzeamfdvws2n",
|
||||
"published": "2024-08-10T10:22:56+00:00",
|
||||
"wm-received": "2024-08-10T10:22:58Z",
|
||||
"wm-id": 1842646,
|
||||
"wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3kzeamfdvws2n%23bridgy-fed-create",
|
||||
"wm-target": "https://fundor333.com/social/2023/04/21/my-impractical-rss-reader-in-google-sheets---cridev/?utm_medium=rss",
|
||||
"wm-protocol": "webmention",
|
||||
"content": {
|
||||
"html": "You can build your rss reader in Google Sheets but why do you need it? (<a href=\"https://fundor333.com/social/2023/04/21/my-impractical-rss-reader-in-google-sheets---cridev/?utm_medium=rss\">https://fundor333.com/social/2023/04/21/my-impractical-rss-reader-in-google-sheets---cridev/?utm_medium=rss</a>)",
|
||||
"text": "You can build your rss reader in Google Sheets but why do you need it? (https://fundor333.com/social/2023/04/21/my-impractical-rss-reader-in-google-sheets---cridev/?utm_medium=rss)"
|
||||
},
|
||||
"mention-of": "https://fundor333.com/social/2023/04/21/my-impractical-rss-reader-in-google-sheets---cridev/?utm_medium=rss",
|
||||
"wm-property": "mention-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,44 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "Francesco Maida",
|
||||
"photo": "https://webmention.io/avatar/files.mastodon.social/8875cc3f513aa2c7d4d1d52c172cd79caf48306535b2d2bb0ce9f14bdcabfb0f.jpg",
|
||||
"url": "https://livellosegreto.it/@cesco"
|
||||
},
|
||||
"url": "https://livellosegreto.it/@cesco/110819907094582946",
|
||||
"published": "2023-08-02T11:59:46",
|
||||
"wm-received": "2023-08-03T08:29:52Z",
|
||||
"wm-id": 1700840,
|
||||
"wm-source": "https://brid.gy/comment/mastodon/@fundor333@mastodon.social/110816428174225025/110819907118442504",
|
||||
"wm-target": "https://fundor333.com/social/2023/08/01/rss-zero-isnt-the-path-to-rss-joy--dan-q/",
|
||||
"wm-protocol": "webmention",
|
||||
"content": {
|
||||
"html": "<p><span class=\"h-card\"><a href=\"https://mastodon.social/@fundor333\" class=\"u-url\">@<span>fundor333</span></a></span> Anch'io ho questo problema 😅</p>",
|
||||
"text": "@fundor333 Anch'io ho questo problema 😅"
|
||||
},
|
||||
"in-reply-to": "https://fundor333.com/social/2023/08/01/rss-zero-isnt-the-path-to-rss-joy--dan-q/",
|
||||
"wm-property": "in-reply-to",
|
||||
"wm-private": false
|
||||
},
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "Francesco Maida",
|
||||
"photo": "https://webmention.io/avatar/files.mastodon.social/8875cc3f513aa2c7d4d1d52c172cd79caf48306535b2d2bb0ce9f14bdcabfb0f.jpg",
|
||||
"url": "https://livellosegreto.it/@cesco"
|
||||
},
|
||||
"url": "https://mastodon.social/@fundor333/110816428174225025#favorited-by-108199951616266001",
|
||||
"published": null,
|
||||
"wm-received": "2023-08-03T08:29:52Z",
|
||||
"wm-id": 1700841,
|
||||
"wm-source": "https://brid.gy/like/mastodon/@fundor333@mastodon.social/110816428174225025/108199951616266001",
|
||||
"wm-target": "https://fundor333.com/social/2023/08/01/rss-zero-isnt-the-path-to-rss-joy--dan-q/",
|
||||
"wm-protocol": "webmention",
|
||||
"like-of": "https://fundor333.com/social/2023/08/01/rss-zero-isnt-the-path-to-rss-joy--dan-q/",
|
||||
"wm-property": "like-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,44 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "Francesco Maida",
|
||||
"photo": "https://webmention.io/avatar/files.mastodon.social/8875cc3f513aa2c7d4d1d52c172cd79caf48306535b2d2bb0ce9f14bdcabfb0f.jpg",
|
||||
"url": "https://livellosegreto.it/@cesco"
|
||||
},
|
||||
"url": "https://livellosegreto.it/@cesco/110819907094582946",
|
||||
"published": "2023-08-02T11:59:46",
|
||||
"wm-received": "2023-08-03T08:29:52Z",
|
||||
"wm-id": 1700842,
|
||||
"wm-source": "https://brid.gy/comment/mastodon/@fundor333@mastodon.social/110816428174225025/110819907118442504",
|
||||
"wm-target": "https://fundor333.com/social/2023/08/01/rss-zero-isnt-the-path-to-rss-joy--dan-q/?amp%3Butm_source=dlvr.it",
|
||||
"wm-protocol": "webmention",
|
||||
"content": {
|
||||
"html": "<p><span class=\"h-card\"><a href=\"https://mastodon.social/@fundor333\" class=\"u-url\">@<span>fundor333</span></a></span> Anch'io ho questo problema 😅</p>",
|
||||
"text": "@fundor333 Anch'io ho questo problema 😅"
|
||||
},
|
||||
"in-reply-to": "https://fundor333.com/social/2023/08/01/rss-zero-isnt-the-path-to-rss-joy--dan-q/?amp%3Butm_source=dlvr.it",
|
||||
"wm-property": "in-reply-to",
|
||||
"wm-private": false
|
||||
},
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "Francesco Maida",
|
||||
"photo": "https://webmention.io/avatar/files.mastodon.social/8875cc3f513aa2c7d4d1d52c172cd79caf48306535b2d2bb0ce9f14bdcabfb0f.jpg",
|
||||
"url": "https://livellosegreto.it/@cesco"
|
||||
},
|
||||
"url": "https://mastodon.social/@fundor333/110816428174225025#favorited-by-108199951616266001",
|
||||
"published": null,
|
||||
"wm-received": "2023-08-03T08:29:53Z",
|
||||
"wm-id": 1700843,
|
||||
"wm-source": "https://brid.gy/like/mastodon/@fundor333@mastodon.social/110816428174225025/108199951616266001",
|
||||
"wm-target": "https://fundor333.com/social/2023/08/01/rss-zero-isnt-the-path-to-rss-joy--dan-q/?amp%3Butm_source=dlvr.it",
|
||||
"wm-protocol": "webmention",
|
||||
"like-of": "https://fundor333.com/social/2023/08/01/rss-zero-isnt-the-path-to-rss-joy--dan-q/?amp%3Butm_source=dlvr.it",
|
||||
"wm-property": "like-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,25 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "fundor333",
|
||||
"photo": "https://webmention.io/avatar/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg",
|
||||
"url": "https://bsky.app/profile/fundor333.com"
|
||||
},
|
||||
"url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3kzealllupy2t",
|
||||
"published": "2024-08-10T10:22:29+00:00",
|
||||
"wm-received": "2024-08-10T10:22:31Z",
|
||||
"wm-id": 1842643,
|
||||
"wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3kzealllupy2t%23bridgy-fed-create",
|
||||
"wm-target": "https://fundor333.com/social/2023/08/01/rss-zero-isnt-the-path-to-rss-joy--dan-q/?utm_medium=rss",
|
||||
"wm-protocol": "webmention",
|
||||
"content": {
|
||||
"html": "Do you use your feed reader as your email client? (<a href=\"https://fundor333.com/social/2023/08/01/rss-zero-isnt-the-path-to-rss-joy--dan-q/?utm_medium=rss\">https://fundor333.com/social/2023/08/01/rss-zero-isnt-the-path-to-rss-joy--dan-q/?utm_medium=rss</a>)",
|
||||
"text": "Do you use your feed reader as your email client? (https://fundor333.com/social/2023/08/01/rss-zero-isnt-the-path-to-rss-joy--dan-q/?utm_medium=rss)"
|
||||
},
|
||||
"mention-of": "https://fundor333.com/social/2023/08/01/rss-zero-isnt-the-path-to-rss-joy--dan-q/?utm_medium=rss",
|
||||
"wm-property": "mention-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,25 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "fundor333",
|
||||
"photo": "https://webmention.io/avatar/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg",
|
||||
"url": "https://bsky.app/profile/fundor333.com"
|
||||
},
|
||||
"url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3kzealj2fbo2k",
|
||||
"published": "2024-08-10T10:22:26+00:00",
|
||||
"wm-received": "2024-08-10T10:22:28Z",
|
||||
"wm-id": 1842642,
|
||||
"wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3kzealj2fbo2k%23bridgy-fed-create",
|
||||
"wm-target": "https://fundor333.com/social/2023/09/20/bots-spiders-and-crawlers--manu/?utm_medium=rss",
|
||||
"wm-protocol": "webmention",
|
||||
"content": {
|
||||
"html": "Curiosus test… I want to see the results (<a href=\"https://fundor333.com/social/2023/09/20/bots-spiders-and-crawlers--manu/?utm_medium=rss\">https://fundor333.com/social/2023/09/20/bots-spiders-and-crawlers--manu/?utm_medium=rss</a>)",
|
||||
"text": "Curiosus test… I want to see the results (https://fundor333.com/social/2023/09/20/bots-spiders-and-crawlers--manu/?utm_medium=rss)"
|
||||
},
|
||||
"mention-of": "https://fundor333.com/social/2023/09/20/bots-spiders-and-crawlers--manu/?utm_medium=rss",
|
||||
"wm-property": "mention-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,25 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "fundor333",
|
||||
"photo": "https://webmention.io/avatar/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg",
|
||||
"url": "https://bsky.app/profile/fundor333.com"
|
||||
},
|
||||
"url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3kzealgnyy22c",
|
||||
"published": "2024-08-10T10:22:24+00:00",
|
||||
"wm-received": "2024-08-10T10:22:26Z",
|
||||
"wm-id": 1842641,
|
||||
"wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3kzealgnyy22c%23bridgy-fed-create",
|
||||
"wm-target": "https://fundor333.com/social/2023/10/02/bots-spiders-and-crawlers---the-results--manu/?utm_medium=rss",
|
||||
"wm-protocol": "webmention",
|
||||
"content": {
|
||||
"html": "A good test about trying to understand how much the crawlers follows the Robots.txt (<a href=\"https://fundor333.com/social/2023/10/02/bots-spiders-and-crawlers---the-results--manu/?utm_medium=rss\">https://fundor333.com/social/2023/10/02/bots-spiders-and-crawlers---the-results--manu/?utm_medium=rss</a>)",
|
||||
"text": "A good test about trying to understand how much the crawlers follows the Robots.txt (https://fundor333.com/social/2023/10/02/bots-spiders-and-crawlers---the-results--manu/?utm_medium=rss)"
|
||||
},
|
||||
"mention-of": "https://fundor333.com/social/2023/10/02/bots-spiders-and-crawlers---the-results--manu/?utm_medium=rss",
|
||||
"wm-property": "mention-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,25 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "fundor333",
|
||||
"photo": "https://webmention.io/avatar/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg",
|
||||
"url": "https://bsky.app/profile/fundor333.com"
|
||||
},
|
||||
"url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3kzealdwbht2t",
|
||||
"published": "2024-08-10T10:22:21+00:00",
|
||||
"wm-received": "2024-08-10T10:22:24Z",
|
||||
"wm-id": 1842640,
|
||||
"wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3kzealdwbht2t%23bridgy-fed-create",
|
||||
"wm-target": "https://fundor333.com/social/2024/01/05/block-the-bots-that-feed-ai-models-by-scraping-your-website--neil-clarke/?utm_medium=rss",
|
||||
"wm-protocol": "webmention",
|
||||
"content": {
|
||||
"html": "Some suggestions for the battle Bloggers VS AI: robots.txt, meta tags, CDN… (<a href=\"https://fundor333.com/social/2024/01/05/block-the-bots-that-feed-ai-models-by-scraping-your-website--neil-clarke/?utm_medium=rss\">https://fundor333.com/social/2024/01/05/block-the-bots-that-feed-ai-models-by-scraping-your-website--neil-clarke/?utm_medium=rss</a>)",
|
||||
"text": "Some suggestions for the battle Bloggers VS AI: robots.txt, meta tags, CDN… (https://fundor333.com/social/2024/01/05/block-the-bots-that-feed-ai-models-by-scraping-your-website--neil-clarke/?utm_medium=rss)"
|
||||
},
|
||||
"mention-of": "https://fundor333.com/social/2024/01/05/block-the-bots-that-feed-ai-models-by-scraping-your-website--neil-clarke/?utm_medium=rss",
|
||||
"wm-property": "mention-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,97 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "Salva Rivas",
|
||||
"photo": "https://webmention.io/avatar/cdn.bsky.app/51492fc81fc987141a26f2ed91fe3eebeebc02652eba5b078b4bf175e89c0f09.jpg",
|
||||
"url": "https://bsky.app/profile/srivas.bsky.social"
|
||||
},
|
||||
"url": "https://bsky.app/profile/fundor333.bsky.social/post/3kywmxsskkk2t#liked_by_did:plc:rmighyqfgqo37snbbv46xkkd",
|
||||
"published": null,
|
||||
"wm-received": "2024-08-05T00:57:55Z",
|
||||
"wm-id": 1841585,
|
||||
"wm-source": "https://brid.gy/like/bluesky/did:plc:u7piwonv4s27ysugjaa6im2q/at%253A%252F%252Fdid%253Aplc%253Au7piwonv4s27ysugjaa6im2q%252Fapp.bsky.feed.post%252F3kywmxsskkk2t/did%253Aplc%253Armighyqfgqo37snbbv46xkkd",
|
||||
"wm-target": "https://fundor333.com/social/2024/08/05/why-hagoromo-chalk-is-so-expensive--so-expensive--business-insider---youtube/",
|
||||
"wm-protocol": "webmention",
|
||||
"like-of": "https://fundor333.com/social/2024/08/05/why-hagoromo-chalk-is-so-expensive--so-expensive--business-insider---youtube/",
|
||||
"wm-property": "like-of",
|
||||
"wm-private": false
|
||||
},
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "",
|
||||
"photo": "https://webmention.io/avatar/cdn.bsky.app/00e0e7e5fb92568e4cdc1f9da2327d0282eff437e7b31683fe7a114222b7d7c7.jpg",
|
||||
"url": "https://bsky.app/profile/renoviana.dev"
|
||||
},
|
||||
"url": "https://bsky.app/profile/fundor333.bsky.social/post/3kywmxsskkk2t#liked_by_did:plc:32ejvo3lggl47tlvhzn35td7",
|
||||
"published": null,
|
||||
"wm-received": "2024-08-05T00:57:56Z",
|
||||
"wm-id": 1841586,
|
||||
"wm-source": "https://brid.gy/like/bluesky/did:plc:u7piwonv4s27ysugjaa6im2q/at%253A%252F%252Fdid%253Aplc%253Au7piwonv4s27ysugjaa6im2q%252Fapp.bsky.feed.post%252F3kywmxsskkk2t/did%253Aplc%253A32ejvo3lggl47tlvhzn35td7",
|
||||
"wm-target": "https://fundor333.com/social/2024/08/05/why-hagoromo-chalk-is-so-expensive--so-expensive--business-insider---youtube/",
|
||||
"wm-protocol": "webmention",
|
||||
"like-of": "https://fundor333.com/social/2024/08/05/why-hagoromo-chalk-is-so-expensive--so-expensive--business-insider---youtube/",
|
||||
"wm-property": "like-of",
|
||||
"wm-private": false
|
||||
},
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "amateur crastinator",
|
||||
"photo": "https://webmention.io/avatar/cdn.bsky.app/bd8d1dc1e85bf90b22324686903e9643c3e167821e7936f888ff2aece940636c.jpg",
|
||||
"url": "https://bsky.app/profile/amateurcrastinator.com"
|
||||
},
|
||||
"url": "https://bsky.app/profile/fundor333.bsky.social/post/3kywmxsskkk2t#liked_by_did:plc:sbswaj5gkbeumzfvjgyytuqo",
|
||||
"published": null,
|
||||
"wm-received": "2024-08-05T01:40:11Z",
|
||||
"wm-id": 1841587,
|
||||
"wm-source": "https://brid.gy/like/bluesky/did:plc:u7piwonv4s27ysugjaa6im2q/at%253A%252F%252Fdid%253Aplc%253Au7piwonv4s27ysugjaa6im2q%252Fapp.bsky.feed.post%252F3kywmxsskkk2t/did%253Aplc%253Asbswaj5gkbeumzfvjgyytuqo",
|
||||
"wm-target": "https://fundor333.com/social/2024/08/05/why-hagoromo-chalk-is-so-expensive--so-expensive--business-insider---youtube/",
|
||||
"wm-protocol": "webmention",
|
||||
"like-of": "https://fundor333.com/social/2024/08/05/why-hagoromo-chalk-is-so-expensive--so-expensive--business-insider---youtube/",
|
||||
"wm-property": "like-of",
|
||||
"wm-private": false
|
||||
},
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "POP Culture Now",
|
||||
"photo": "https://webmention.io/avatar/cdn.bsky.app/91a77a7c94a2ccf8d4936330590d04a4879ae91018fc0c3f6c74974457f71291.jpg",
|
||||
"url": "https://bsky.app/profile/popculturenow.bsky.social"
|
||||
},
|
||||
"url": "https://bsky.app/profile/fundor333.bsky.social/post/3kywmxsskkk2t#liked_by_did:plc:l73qmlket35rholtb4bj3uww",
|
||||
"published": null,
|
||||
"wm-received": "2024-08-05T13:25:31Z",
|
||||
"wm-id": 1841623,
|
||||
"wm-source": "https://brid.gy/like/bluesky/did:plc:u7piwonv4s27ysugjaa6im2q/at%253A%252F%252Fdid%253Aplc%253Au7piwonv4s27ysugjaa6im2q%252Fapp.bsky.feed.post%252F3kywmxsskkk2t/did%253Aplc%253Al73qmlket35rholtb4bj3uww",
|
||||
"wm-target": "https://fundor333.com/social/2024/08/05/why-hagoromo-chalk-is-so-expensive--so-expensive--business-insider---youtube/",
|
||||
"wm-protocol": "webmention",
|
||||
"like-of": "https://fundor333.com/social/2024/08/05/why-hagoromo-chalk-is-so-expensive--so-expensive--business-insider---youtube/",
|
||||
"wm-property": "like-of",
|
||||
"wm-private": false
|
||||
},
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "Raya ???? | Vtuber | EN | Fx Twitch",
|
||||
"photo": "https://webmention.io/avatar/cdn.bsky.app/79df3042bff3b88e3d7660dbf661ebcfafe490e3e52e530653039d613fb66e5f.jpg",
|
||||
"url": "https://bsky.app/profile/hi01.bsky.social"
|
||||
},
|
||||
"url": "https://bsky.app/profile/fundor333.bsky.social/post/3kywmxsskkk2t#liked_by_did:plc:bpphohr6ngb62tc6j4tko2if",
|
||||
"published": null,
|
||||
"wm-received": "2024-08-16T15:15:02Z",
|
||||
"wm-id": 1843408,
|
||||
"wm-source": "https://brid.gy/like/bluesky/did:plc:u7piwonv4s27ysugjaa6im2q/at%253A%252F%252Fdid%253Aplc%253Au7piwonv4s27ysugjaa6im2q%252Fapp.bsky.feed.post%252F3kywmxsskkk2t/did%253Aplc%253Abpphohr6ngb62tc6j4tko2if",
|
||||
"wm-target": "https://fundor333.com/social/2024/08/05/why-hagoromo-chalk-is-so-expensive--so-expensive--business-insider---youtube/",
|
||||
"wm-protocol": "webmention",
|
||||
"like-of": "https://fundor333.com/social/2024/08/05/why-hagoromo-chalk-is-so-expensive--so-expensive--business-insider---youtube/",
|
||||
"wm-property": "like-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,25 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "fundor333",
|
||||
"photo": "https://webmention.io/avatar/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg",
|
||||
"url": "https://bsky.app/profile/fundor333.com"
|
||||
},
|
||||
"url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3kywmxsskkk2t",
|
||||
"published": "2024-08-05T00:26:48+00:00",
|
||||
"wm-received": "2024-08-05T00:26:52Z",
|
||||
"wm-id": 1841584,
|
||||
"wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3kywmxsskkk2t%23bridgy-fed-create",
|
||||
"wm-target": "https://fundor333.com/social/2024/08/05/why-hagoromo-chalk-is-so-expensive--so-expensive--business-insider---youtube/?utm_medium=rss",
|
||||
"wm-protocol": "webmention",
|
||||
"content": {
|
||||
"html": "If you have a good product you will find someone to sell it. If you have the best product the client will come to you… Even when you are sell chalk (<a href=\"https://fundor333.com/social/2024/08/05/why-hagoromo-chalk-is-so-expensive--so-expensive--business-insider---youtube/?utm_medium=rss\">https://fundor333.com/social/2024/08/05/why-hagoromo-chalk-is-so-expensive--so-expensive--business-insider---youtube/?utm_medium=rss</a>)",
|
||||
"text": "If you have a good product you will find someone to sell it. If you have the best product the client will come to you… Even when you are sell chalk (https://fundor333.com/social/2024/08/05/why-hagoromo-chalk-is-so-expensive--so-expensive--business-insider---youtube/?utm_medium=rss)"
|
||||
},
|
||||
"mention-of": "https://fundor333.com/social/2024/08/05/why-hagoromo-chalk-is-so-expensive--so-expensive--business-insider---youtube/?utm_medium=rss",
|
||||
"wm-property": "mention-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,21 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "Raya ???? | Vtuber | EN | Fx Twitch",
|
||||
"photo": "https://webmention.io/avatar/cdn.bsky.app/79df3042bff3b88e3d7660dbf661ebcfafe490e3e52e530653039d613fb66e5f.jpg",
|
||||
"url": "https://bsky.app/profile/hi01.bsky.social"
|
||||
},
|
||||
"url": "https://bsky.app/profile/fundor333.bsky.social/post/3kzeuwzfkby2t#liked_by_did:plc:bpphohr6ngb62tc6j4tko2if",
|
||||
"published": null,
|
||||
"wm-received": "2024-08-16T15:15:01Z",
|
||||
"wm-id": 1843407,
|
||||
"wm-source": "https://brid.gy/like/bluesky/did:plc:u7piwonv4s27ysugjaa6im2q/at%253A%252F%252Fdid%253Aplc%253Au7piwonv4s27ysugjaa6im2q%252Fapp.bsky.feed.post%252F3kzeuwzfkby2t/did%253Aplc%253Abpphohr6ngb62tc6j4tko2if",
|
||||
"wm-target": "https://fundor333.com/social/2024/08/10/dont-prefill-config-files/",
|
||||
"wm-protocol": "webmention",
|
||||
"like-of": "https://fundor333.com/social/2024/08/10/dont-prefill-config-files/",
|
||||
"wm-property": "like-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,25 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "fundor333",
|
||||
"photo": "https://webmention.io/avatar/shiitake.us-east.host.bsky.network/745ae7c92d33ea40ee0a0cc07825d49dcf5f0375c9b77cf4404889a238e66f93.jpg",
|
||||
"url": "https://bsky.app/profile/fundor333.com"
|
||||
},
|
||||
"url": "https://bsky.app/profile/did:plc:u7piwonv4s27ysugjaa6im2q/post/3kzeuwzfkby2t",
|
||||
"published": "2024-08-10T16:26:47+00:00",
|
||||
"wm-received": "2024-08-10T16:26:50Z",
|
||||
"wm-id": 1842721,
|
||||
"wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3kzeuwzfkby2t%23bridgy-fed-create",
|
||||
"wm-target": "https://fundor333.com/social/2024/08/10/dont-prefill-config-files/?utm_medium=rss",
|
||||
"wm-protocol": "webmention",
|
||||
"content": {
|
||||
"html": "A short post about how to implement a config file in your app with future in head. It look like it is the git way to the config file (<a href=\"https://fundor333.com/social/2024/08/10/dont-prefill-config-files/?utm_medium=rss\">https://fundor333.com/social/2024/08/10/dont-prefill-config-files/?utm_medium=rss</a>)",
|
||||
"text": "A short post about how to implement a config file in your app with future in head. It look like it is the git way to the config file (https://fundor333.com/social/2024/08/10/dont-prefill-config-files/?utm_medium=rss)"
|
||||
},
|
||||
"mention-of": "https://fundor333.com/social/2024/08/10/dont-prefill-config-files/?utm_medium=rss",
|
||||
"wm-property": "mention-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,25 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "fundor333",
|
||||
"photo": "https://webmention.io/avatar/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/3l4mmdf5co62k",
|
||||
"published": "2024-09-20T22:29:31+00:00",
|
||||
"wm-received": "2024-09-20T22:30:09Z",
|
||||
"wm-id": 1848500,
|
||||
"wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3l4mmdf5co62k%23bridgy-fed-create",
|
||||
"wm-target": "https://fundor333.com/social/2024/09/20/1726869831/",
|
||||
"wm-protocol": "webmention",
|
||||
"content": {
|
||||
"html": "Someone can suggest to me some account to follow about code, tech and/or photography ?\nTwitter/X or Mastodon please!\nOr some good blog about the same subjects thanks\n\n<a href=\"https://fundor333.com/social/2024/09/20/1726869831/\">fundor333.com/social/2024/...</a>",
|
||||
"text": "Someone can suggest to me some account to follow about code, tech and/or photography ?\nTwitter/X or Mastodon please!\nOr some good blog about the same subjects thanks\n\nfundor333.com/social/2024/..."
|
||||
},
|
||||
"mention-of": "https://fundor333.com/social/2024/09/20/1726869831/",
|
||||
"wm-property": "mention-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,21 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "Photography Feed",
|
||||
"photo": "https://webmention.io/avatar/files.mastodon.social/2a355e8ebe7968eff2c0f472b2ddf0e673bb20294c43adc29145fbe2c2a358e9.png",
|
||||
"url": "https://newsmast.community/@photography"
|
||||
},
|
||||
"url": "https://mastodon.social/@fundor333/113177929638244931#reblogged-by-111653095630935220",
|
||||
"published": null,
|
||||
"wm-received": "2024-09-22T00:52:38Z",
|
||||
"wm-id": 1848568,
|
||||
"wm-source": "https://brid.gy/repost/mastodon/@fundor333@mastodon.social/113177929638244931/111653095630935220",
|
||||
"wm-target": "https://fundor333.com/social/2024/09/21/1726957916/",
|
||||
"wm-protocol": "webmention",
|
||||
"repost-of": "https://fundor333.com/social/2024/09/21/1726957916/",
|
||||
"wm-property": "repost-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,25 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "fundor333",
|
||||
"photo": "https://webmention.io/avatar/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/3l4ocdgs7it27",
|
||||
"published": "2024-09-21T14:35:55+00:00",
|
||||
"wm-received": "2024-09-21T14:38:30Z",
|
||||
"wm-id": 1848545,
|
||||
"wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3l4ocdgs7it27%23bridgy-fed-create",
|
||||
"wm-target": "https://fundor333.com/social/2024/09/21/webmentions-on-hugo-fediverse-and-the-magic-of-the-indieweb--indigos-den/",
|
||||
"wm-protocol": "webmention",
|
||||
"content": {
|
||||
"html": "A good article about webmention, fediverse and other stuff I implemented into my blog\n\nFundor 333 (<a href=\"https://fundor333.com/social/2024/09/21/webmentions-on-hugo-fediverse-and-the-magic-of-the-indieweb--indigos-den/\">https://fundor333.com/social/2024/09/21/webmentions-on-hugo-fediverse-and-the-magic-of-the-indieweb--indigos-den/</a>)",
|
||||
"text": "A good article about webmention, fediverse and other stuff I implemented into my blog\n\nFundor 333 (https://fundor333.com/social/2024/09/21/webmentions-on-hugo-fediverse-and-the-magic-of-the-indieweb--indigos-den/)"
|
||||
},
|
||||
"mention-of": "https://fundor333.com/social/2024/09/21/webmentions-on-hugo-fediverse-and-the-magic-of-the-indieweb--indigos-den/",
|
||||
"wm-property": "mention-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,25 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "fundor333",
|
||||
"photo": "https://webmention.io/avatar/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/3l5mlm4ndtw2m",
|
||||
"published": "2024-10-03T15:41:42+00:00",
|
||||
"wm-received": "2024-10-03T15:41:46Z",
|
||||
"wm-id": 1850406,
|
||||
"wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3l5mlm4ndtw2m%23bridgy-fed-create",
|
||||
"wm-target": "https://fundor333.com/social/2024/10/03/threads---the-inside-story-of-metas-newest-social-app---engineering-at-meta/",
|
||||
"wm-protocol": "webmention",
|
||||
"content": {
|
||||
"html": "Two social network dev with Django\n\nFundor 333 (<a href=\"https://fundor333.com/social/2024/10/03/threads---the-inside-story-of-metas-newest-social-app---engineering-at-meta/\">https://fundor333.com/social/2024/10/03/threads---the-inside-story-of-metas-newest-social-app---engineering-at-meta/</a>)",
|
||||
"text": "Two social network dev with Django\n\nFundor 333 (https://fundor333.com/social/2024/10/03/threads---the-inside-story-of-metas-newest-social-app---engineering-at-meta/)"
|
||||
},
|
||||
"mention-of": "https://fundor333.com/social/2024/10/03/threads---the-inside-story-of-metas-newest-social-app---engineering-at-meta/",
|
||||
"wm-property": "mention-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1,25 +0,0 @@
|
||||
[
|
||||
{
|
||||
"type": "entry",
|
||||
"author": {
|
||||
"type": "card",
|
||||
"name": "fundor333",
|
||||
"photo": "https://webmention.io/avatar/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/3l7enrmtpre2z",
|
||||
"published": "2024-10-25T22:49:40+00:00",
|
||||
"wm-received": "2024-10-25T22:49:43Z",
|
||||
"wm-id": 1854565,
|
||||
"wm-source": "https://bsky.brid.gy/convert/web/at://did:plc:u7piwonv4s27ysugjaa6im2q/app.bsky.feed.post/3l7enrmtpre2z%23bridgy-fed-create",
|
||||
"wm-target": "https://fundor333.com/social/2024/10/25/web-components-are-not-the-future---dev-community/",
|
||||
"wm-protocol": "webmention",
|
||||
"content": {
|
||||
"html": "A web framework author wrote about web components and I love this analisys\n\nFundor 333 (<a href=\"https://fundor333.com/social/2024/10/25/web-components-are-not-the-future---dev-community/\">https://fundor333.com/social/2024/10/25/web-components-are-not-the-future---dev-community/</a>)",
|
||||
"text": "A web framework author wrote about web components and I love this analisys\n\nFundor 333 (https://fundor333.com/social/2024/10/25/web-components-are-not-the-future---dev-community/)"
|
||||
},
|
||||
"mention-of": "https://fundor333.com/social/2024/10/25/web-components-are-not-the-future---dev-community/",
|
||||
"wm-property": "mention-of",
|
||||
"wm-private": false
|
||||
}
|
||||
]
|
||||
@@ -1 +1,2 @@
|
||||
feedparser==6.0.11
|
||||
requests
|
||||
|
||||
@@ -1,71 +0,0 @@
|
||||
const fs = require("fs");
|
||||
const https = require("https");
|
||||
|
||||
fetchWebmentions().then(webmentions => {
|
||||
webmentions.forEach(webmention => {
|
||||
const slug = webmention["wm-target"]
|
||||
.replace("https://fundor333.com/", "")
|
||||
.replace(/\/$/, "")
|
||||
.replace("/", "--");
|
||||
|
||||
const filename = `${__dirname}/data/webmentions/${slug}.json`;
|
||||
|
||||
|
||||
if (!fs.existsSync(filename)) {
|
||||
fs.mkdirSync(`${__dirname}/data/webmentions/${slug}`, { recursive: true });
|
||||
fs.writeFileSync(filename, JSON.stringify([webmention], null, 2));
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
const entries = JSON.parse(fs.readFileSync(filename))
|
||||
.filter(wm => wm["wm-id"] !== webmention["wm-id"])
|
||||
.concat([webmention]);
|
||||
|
||||
entries.sort((a, b) => a["wm-id"] - b["wm-id"]);
|
||||
|
||||
fs.writeFileSync(filename, JSON.stringify(entries, null, 2));
|
||||
});
|
||||
});
|
||||
|
||||
function fetchWebmentions() {
|
||||
const token = process.env.WEBMENTIONS_TOKEN;
|
||||
|
||||
const since = new Date();
|
||||
since.setDate(since.getDate() - 15);
|
||||
|
||||
const url =
|
||||
"https://webmention.io/api/mentions.jf2" +
|
||||
"?domain=fundor333.com" +
|
||||
`&token=${token}` +
|
||||
`&since=${since.toISOString()}` +
|
||||
"&per-page=999";
|
||||
|
||||
return new Promise((resolve, reject) => {
|
||||
https
|
||||
.get(url, res => {
|
||||
let body = "";
|
||||
|
||||
res.on("data", chunk => {
|
||||
body += chunk;
|
||||
});
|
||||
|
||||
res.on("end", () => {
|
||||
try {
|
||||
resolve(JSON.parse(body));
|
||||
} catch (error) {
|
||||
reject(error);
|
||||
}
|
||||
});
|
||||
})
|
||||
.on("error", error => {
|
||||
reject(error);
|
||||
});
|
||||
}).then(response => {
|
||||
if (!("children" in response)) {
|
||||
throw new Error("Invalid webmention.io response.");
|
||||
}
|
||||
|
||||
return response.children;
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user