This is a rant about how a decentralized network for storing structured data
might look like.
The goal is to allow third party developers to build applications and services
that use it as a data-store and allow users to switch between any application or
service without loosing their data.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <glib.h> | |
#include <stdlib.h> | |
#include <stdio.h> | |
// MyJIT homepage: http://myjit.sourceforge.net/index.htm | |
#include "myjit/jitlib.h" | |
struct string_builder{ | |
GString *gstring; |