sakurajima.moe is one of the many independent Mastodon servers you can use to participate in the fediverse.
A comfy, non-toxic, and inclusive Anime/Manga/Japanese Media fandom and Japanese Media/Culture Content Creators (Bloggers/Artists/Video Creators/Podcasters/etc.) Mastodon Server

Server stats:

266
active users

#coding

30 posts21 participants2 posts today
Public

One would assume to delete a binary stream in memory you saved with a class called "bytesIO", the appropriate method to call would be "bytesIO.flush".

There is a flush method.

No, it doesn't delete the stream.

In fact…
#Python #coding

Public

The cards are done! Styling was a challenge, but I’m happy with the result. Still tweaking the “read more” and screen reader order, but for now — done! Also fixed the menu bug.

Check it out:
github.com/Rosita311/RulesbyRo
rosita311.github.io/RulesbyRos

Ik bouw mijn eigen WordPress thema. Contribute to Rosita311/RulesbyRosita-theme development by creating an account on GitHub.
GitHubGitHub - Rosita311/RulesbyRosita-theme: Ik bouw mijn eigen WordPress thema.Ik bouw mijn eigen WordPress thema. Contribute to Rosita311/RulesbyRosita-theme development by creating an account on GitHub.
Public

Having to learn how to program is gatekeeping, because average people who aren't nerdy and don't know computer code like they've been writing it for years won't be able to make programs to help them without paying super cash like $1000 plus to get someone to do the work for them, so if AI becomes good enough to do real code that works, I'm all for it. #AI, #Coding, #Programming

Public

DId lots of smaller improvements to #swad ... but first, I had to hunt down a crash 🤯. Finally found it was caused by my #poser lib (to be fixed later): A connection there can resolve the hostname of a remote end and does so in a thread job to avoid blocking. If the connection dies meanwhile, the job is canceled. Seems my canceling mechanism relying on a signal to the thread is, well, not reliable (the signal can arrive delayed). Ok, for now just disabled name resolution to sidestep that.

Now, integration with #nginx is much better. I intrdoduced (optional) custom headers to transport the authentication realm and the redirect URI, plus state management in the session, so these can be passed to the "auth" endpoint. This requires to make sure nginx always passes the session #cookie, Unfortunately, I still need a "hacky" redirect configuration for login in nginx. If auth_request could just pass the response body, this would be unnecessary .... 🙄

The nginx configuration shows #swad running on "files" and another nginx running on "wwwint" serving #poudriere output there. This nginx instance helpfully adds cache hints, which I have to override, so a redirect works as expected when for example the swad session times out.

Public

First "production test" successful 💪 ... after band-aid "deployment" (IOW, scp binaries to the prod jail).

#swad integrates with #nginx exactly as I planned it. And #PAM authentication using a child process running as root also just works (while the main process dropped privileges). 🥳

So, I guess I can say goodbye to #AI #bots hammering my poor DSL connection just to download poudriere build logs.

Still a lot to do for #swad: Make it nicer. So many ideas. Best start would probably be to implement more credentials checking modules besides PAM.

Public

Question, I really need your opinion:

I have red as my brand color (#E00000).

But I also have a more green/teal color as a contrast color, also on darkmode. My boyfriend says it clashes with the red color. And what do you think of the hover effect on the cards?
Personaly I really like the pink hover effect on the cards.
This is not finished yet. by the way.
rosita311.github.io/RulesbyRos

rosita311.github.ioHome
Public

This, btw, was yet another reminder of the horrible can of worms #stdio's #buffering is.

I created a little tool running as a child process to do the *actual* #PAM authentication, so it will be possible to have this run as root while the real service drops all privileges. This little tool uses a simple line-based protocol for communication on stdin/stdout. It worked well when testing directly on the terminal.

On the first real test though, my service just went hanging. 🙄 I suspected a deadlock caused by pthread mutexes. Wasted quite some time looking into that. Then I finally realized communication over the pipes was stalled.

Ok, just set buffering mode to "line buffering" after fdopen'ing the #pipe. Turned out that didn't help either. I *assume* that even in the child process, the stdio streams automatically created on the pipes were somehow fully buffered. But at that point, I was really fed up with trial and error and rewrote the whole mess to do I/O using plain #POSIX APIs (read, write), sidestepping any buffering. Worked like a charm. 🙈

Public

I am working on creating a handbook that describes the assistive technologies available in the FreeBSD operating system, which will be freely available online for anyone to consult. Currently, the effort is focused on gathering and documenting accessibility features for visual impairments, and it is sponsored by the @FreeBSDFoundation

If you are interested in the topic, a public repository is available for suggestions and corrections: gitlab.com/alfix/freebsd-acces