Modern XMPP project discussion - 2024-11-07


  1. sch

    Good day!

  2. sch

    Good day to one and all. I have a question which is not directly related to Jabber, yet it is related to HTML based software that are intended for XMPP.

  3. sch

    I suppose, that to understanding how to port my software to Gemini, I would be required to utilize the asynchronous practice of Python. Is there anything special that I need to care for handling TCP + TLS, at least, as good as Uvicorn attempts to make people to _believe_? By that, I mean, to provide Gemini based software as ASGI. I state so, due to the "scary" statements of https://www.uvicorn.org which is related to https://fastapi.tiangolo.com > Uvicorn is an ASGI web server implementation for Python. _Until_ recently Python has lacked a minimal low-level server/application interface for async frameworks. The ASGI specification fills this gap, and means we're now able to start building a common set of tooling usable across all async frameworks.

  4. arcanicanis

    ASGI just sounds like it's more about being able to use async/awaitable functions for fulfilling a request rather than synchronous functions, meanwhile protocol communication would still of course be sequential, otherwise you don't really have a protocol