问题: 互联网互联网访问

Structured Internet Client

+3  

Like browser, but structured, based on high level protocols?

YAML 想法

For all intents and purposes, browser can be thought of as "Unstructured Internet Client", because it can render arbitrary UI interact with arbitrary backends. However, the Internet data is getting increasingly structured. This can be seen in the shift of paradigm from creating custom HTML pages to creating public APIs as the main entry point to what application has to offer.

The idea of structured internet client, is thus a client, that defines protocols for ranges of similar apps.

An example of a structured multi-protocol client, is Trillian, a multi-protocol messenger. However, it is not only chat that has the need for very similar UI. For example, E-mail had same UI, regardless if POP or IMAP protocol was used. Also, there are many other things that are similar, like: shopping, video viewing, forums, etc., that today have hundreds of unique apps, that rely on their APIs, but coherent open-source UIs could be developed to allow the display and interact with such common content.

If a general purpose client for Internet's structured data is created, then everyone's day-to-day work may be simplified.

Mindey,




(别通知) (可选) 请,登录

I agree, and working on such an idea for more than 5 years now. And could explain my ideas. Let us connect.



    : Mindey
    :  -- 
    :  -- 
    

kriz,

//并致力于此类想法已有5年以上的历史了

真的吗?是的,让我们连接。任何时候在[mindey.com/meet](https://mindey.com/meet)上为您工作?

// and working on such an idea for more than 5 years now

Really? Yeah, let's connect. Any times on mindey.com/meet work for you?


我们要避免XMPP发生的事情-XMPP是一个委员会,它将任何旧内容添加到协议中,使其无法简单地实现。因为这并不简单。

目标是使协议简单。我有一个epollserver,可用于在C中构建基于文本的协议:

https://github.com/samsquire/epoll-server

We want to avoid what has happened to XMPP - which is a committee which adds any old stuff into the protocol making it impossible to implement simply. Because it's not simple.

Making protocols simple is the goal. I have an epollserver which is useful for building text based protocols in C:

https://github.com/samsquire/epoll-server



    : Mindey
    :  -- 
    :  -- 
    

chronological,

异步 IO 可以让结构化的 Internet 客户端感觉非常活泼,因为您可以并行发出 IO 请求。

我发现使用 lib uring 的最简单示例在这里

https://github.com/robn/yoctochat/blob/main/yc_uring.c

Asynchronous IO could make a structured internet client feel very snappy because you can make IO requests in parallel.

Simplest example I have found that uses lib uring and is here

https://github.com/robn/yoctochat/blob/main/yc_uring.c