this post was submitted on 28 Nov 2023
1 points (100.0% liked)

Side Project

29 readers
1 users here now

A community for sharing and receiving constructive feedback on side projects.

founded 10 months ago
MODERATORS
 

I'm thinking of creating a new SNS platform. The keyword is 'Immutable'. Consider, for example, the following JSON file:

json

{
  "id": "page1",
  "ref": "cid",
  "profile": {
    "identifier": "user123",
    "username": "username",
    "image": "resource1" // Reference to a base64 encoded image in the resources section
  },
  "content": "<p>This is a test page</p>",
  "resources": {
    "resource1": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD..." // Base64 encoded image
    // ... other resources
  }
}

This alone can handle all the information necessary for a post. In other words, it all comes down to just exchanging JSON files. This would enable it to be hosted on a distributed storage system like IPFS.

IF someone likes this idea, join to the discord and let's chat https://discord.gg/fXaRxxQG

you are viewing a single comment's thread
view the rest of the comments
[–] edzorg@alien.top 1 points 9 months ago

You just invented RSS?