WordPressにhuman.jsonを追加する
FOAF(Friend-Of-A-Friend)の概念を再発明する動きが数年ごとに現れます。これは、Aliceが「私はBobを知っていて信頼している」と表明し、BobがAliceとCarlを知っていると表明することで、信頼関係を理解するためのソーシャルグラフを構築するものです。WordPressにhuman.jsonを追加することで、このような人間中心のデータ表現を実現します。
FOAF(Friend-Of-A-Friend)の概念を再発明する動きが数年ごとに現れます。これは、Aliceが「私はBobを知っていて信頼している」と表明し、BobがAliceとCarlを知っていると表明することで、信頼関係を理解するためのソーシャルグラフを構築するものです。WordPressにhuman.jsonを追加することで、このような人間中心のデータ表現を実現します。
The "use client" directive in React marks a component as a client component, separating it from server components. This allows developers to use client-side features like state, effects, and event handlers that aren't available in server components.
The article discusses React Server Components (RSC) for Astro developers, describing them as "islands, but make it fractal." It explains how RSC extends the islands architecture concept in a more complex, nested manner.
HTML, GraphQL, and React Server Components all share a common architectural principle: they aim to minimize roundtrips between client and server during navigation. This approach reduces latency and improves user experience by consolidating data fetching into single requests.
React Server Components use a layered module system where imports are resolved differently on server and client. This enables components to run exclusively on the server while allowing client components to import server components only for their children.
The article discusses how social protocols function as APIs, enabling decentralized social interactions. It explores the concept of open social networks built on protocol-based architectures.