lingo.lol is one of the many independent Mastodon servers you can use to participate in the fediverse.
A place for linguists, philologists, and other lovers of languages.

Server stats:

70
active users

#async

1 post1 participant0 posts today

New Kitten update

🥳 Kitten HTML templates and kitten.Component render functions can now be async.

kitten.small-web.org

This is quite a big one and it took me finally biting the bullet and getting my head around generators in JavaScript to implement properly.

So now you can mix synchronous and asynchronous components as you like and if there are any asynchronous components in your templates they will automatically be awaited (even if you forget to use await) ;)

I’ll write a proper post/tutorial/documentation for it soon but for the time being enjoy the screenshots where a layout template gets the latest three posts from my mock fediverse public timeline service and displays them on the page.

The kitten.Component version also has a refresh button that streams a different three to the page.

For those of you unfamiliar with Kitten, this is all the code in either example. No scaffolding, nothing. Pop either into a file called index.page.js and run kitten in that folder and visit https://localhost to see the example run.

Enjoy!

:kitten:💕

Continued thread

for now, it pops up a scrolling table, based on data loaded by a multi-threaded indexing loop (doing concurrency in #rust is pretty enjoyable! no #async needed, either). lets you edit it (but crashes on backspace, lol). doesn't save it yet. pre-alpha stuff.

How browsers REALLY load Web pages

When browsers load a Web page and its subresources, A LOT happens under the hood. They need to take into account render/parsing blocking resources, use a preload scanner, listen to resource hints (like preload/preconnect), loading modifiers (async/defer/module), fetchpriority, responsive images, and much more. […]

📺 fosdem.org/2025/schedule/event

fosdem.orgFOSDEM 2025 - How browsers REALLY load Web pages
#video#web#browser

I need some obscure python help, fellow mastodonians:

I have a nested async function inside a regular function.

I need to test whether to await on it inside a decorator, but neither of `inspect` or `asyncio` helpers work, and .__code__.co_flags do not indicate it being a coroutine/awaitable/...

Right now I've added a flag to my decorator to manually control wrapped function behavior, but it's just a workaround.

Any tips? Thanks.

Continued thread
This is now completed after also implementing "#async" read:
https://github.com/Zirias/xmoji/commit/b93f12e532571bf1ab0e044992ed202ec9a187b9
... and write:
https://github.com/Zirias/xmoji/commit/73ba1d414202c0a5e3bc8899383131131620b35a

During startup, everything is done synchronously as before. It's easier that way to check for issues and, if necessary, abort ... and it would be pointless anyways as I'm also e.g. looking for fonts with fontconfig, which reads lots of local files ... besides, without the GUI "running", there's nothing to "keep responsive" 😉

Well, next time my NFS becomes unresponsive for whatever reason, I'll see whether Xmoji is still affected – it shouldn't be! 🥳

#C #development #X11
GitHubConfigFile: Read async on changes · Zirias/xmoji@b93f12eExcept on initial creation, do reading the config file on a thread job if the thread pool is available to avoid stalling the main thread on I/O issues.
Having my $HOME on #NFS, I'm sometimes annoyed by lots of applications "freezing" when there's some issue with the NFS server. I just decided I'll try to prevent this in #Xmoji.

Now, how to do that? Nonblocking mode (which I use for sockets etc) doesn't do anything for regular files, they're always "ready to read/write". Still, actually reading or writing might block your thread. Then there's #POSIX #aio. From what I found, this has issues in real implementations, e.g. #FreeBSD uses kernel workers for implementing it, which are limited, and also doesn't even allow it on NFS by default, because it could cause deadlocks. Looking at the #Linux side, there seems to be some platform-specific async I/O implementation in the kernel, but #glibc implements the POSIX aio entirely in userspace... 🤯

Ok, screw all that. I'll do the simple thing and use worker #threads for file I/O calls, should be somewhat easy as I already have a "threadpool" in #poser. I just started doing that in my "filewatcher" in case it needs to use stat():
https://github.com/Zirias/xmoji/commit/8ba637c482e82791c9e20db21ce95a3e854b6f86

More to follow ... 😉

#C #development #async
GitHubFileWatcher: Async stat method · Zirias/xmoji@8ba637cWhen using stat() for watching a file and poser's threadpool is running, do the stat() call on a worker thread to prevent stalling the main thread on possible I/O issues.

Sorry for recent silence, if I can summarize most of my past two weeks or so:

"Async all the thi.ngs, what colud posibsyl og wrngo!" [1]

1) New package thi.ng/transducers-async (restarted development after originally stopping it in 2018 due to lack of async iterable support)
2) Updates to thi.ng/rstream (adapters from/to async iterables)
3) Upcoming, a new & simplified implementation of thi.ng/csp (currently still only on a feature branch[2]) for building blocks for Communicating Sequential Processes.
4) Also still WIP only, async iterable support for thi.ng/rdom, i.e. in the same way as rstream subscriptions, such async iterables can soon be directly embedded as component/element bodies or attribute values and then perform pinpointed DOM updates each time their value changes...

As I said, async all the thi.ngs...

[1] h/t @sjb3d for an ancient tweet with a similar sentiment & outcome :)

[2] The CSP package too was somewhat deprecated (for similar reasons) and a while ago I added another alternative CSP implementation via thi.ng/fibers, but that package too might see some more refactoring/simplifying by switching to async generators...

thi.ngAsync versions of various highly composable transducers, reducers and iterators

Async isn't just for the datacenter. Consider the case of a raspberry pi 3. loading that thing up with threads is going to bog it down and lead to bad performance. keeping just a couple threads with tasks scheduled across them is a much better use of resources

That's the primary reason why I got into async programming in the first place. My infrastructure has always been single-board computers, and single-board computers have always had low amounts of RAM and slower CPUs than your average computer.

Async Rust is a Bad Language by Matt Kline.

Very good intro and thought provoking article on #concurrency and #parallelism, and their use in #Rust.

It champions #TonyHoare's #CSP model of concurrency which takes me back. Back to the time I failed to get funding for a start-up to build an #Occam compiler targeting i386. Which was largely a ploy to get the UK government to buy me some neat kit 🤷‍♂️

Anyway, here's the article:
bitbashing.io/async-rust.html

Bit BashingAsync Rust Is A Bad LanguageYet another programming blog. Thoughts on software and related misadventures.

Django 4.2 LTS has just been released. 🎉

From the Django official post: 💡

"The release notes cover the farrago of new features in detail, but a few highlights are:
- psycopg version 3 support
- comments on columns and tables
- support for asynchronous streaming responses, and async interfaces for related managers and models"

More info: 👇
djangoproject.com/weblog/2023/

#Django #Python #Release #LTS #Psycopg #Async

CC @psycopg

Django ProjectDjango 4.2 releasedPosted by Mariusz Felisiak on April 3, 2023

Have you ever tried using AsyncPublisher? I have. And some of its behavior has surprised me. I looked into it in-depth in my newest article, where I show how to use its behavior for your advantage, as well as how to get around its limitations. As you will see, some aspects can quite differ from observing publisher in Combine. #combine #swift #asyncpublisher #async

cleevio.com/blog/the-not-so-eq

www.cleevio.comThe Not So Equivalent Code: Demystifying Async Publisher | CleevioThe article explores the behavior of AsyncPublisher in depth, shows how to use its behavior for your advantage, as well as how to get around its limitations.

Workshop - hands-on : 'Publishing from Collections: Introducing Computational Publishing for Culture' at the #COPIM @copim 20.Feb 15:00-17:00 (GMT) - During the workshop, we will auto-compile catalogue publications for exhibitions from multiple open data sources; and published multi-format: web, PDF, ebook, notebooks, etc. - using #Jupyter Notebooks, Wikidata, and a rendering engine >>> Info/Register: experimentalbooks.pubpub.org/p #async #computational #rapidpublishing