openbiblio.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
Der Einstieg in das Fediverse für Bibliotheksmenschen

Administered by:

Server stats:

606
active users

#koha

2 posts2 participants0 posts today

Today, as an evening amusement, I fixed a very nast Bug in the #Koha test suite, that did not occure when running only the affected test file, but only when also running some other tests: bugs.koha-community.org/bugzil

The root cause was a function returning a list, but the test calling the function in scalar context. Unfortunately a classic #Perl footgun :-(

bugs.koha-community.org39700 – Fix test case t/db_dependent/Authority/Merge.t broken in 34739enhancement, P5 - low, assigned to chris, Needs Signoff, in Test Suite, Koha

Today I fought against AI bots that where scraping / DDoSing one of our customers library OPAC. The quick fix was to block all non-EU IP address. We don't have a good fix yet, but can draw on a lot of ideas that where discussed at #Koha Hackfest. #JohnConner

Today I opened 5 "bugs" (in fact feature requests) regarding #Koha Elasticsearch, QA'ed a rather complex one and did a code review on #37020 (bulkmarcimport dieing on large files). And had a very nice last day at the Koha Hackfest!

Today I moderated a discussion about #Koha ElasticSearch bugs and improvement ideas. It was very helpful for me to get feedback from experienced Koha devs. I still need to set up bugs in Bugzilla, though.

Today I failed quite a few of joubus Perl Quiz questions at #Koha hackfest. I blame my brain for being mostly trained on sane Perl code to fail to recognize all the horrible corner cases he presented.

So we had a question on our online chat room thing. A person is trans wanted to change the name on their card and asked how to do so. This isn't an option on our OPAC/discover layer, but it is on the back end. I wasn't sure of the answer, so I waited to see what someone else says.

A neat new thing in #Koha is "preferred name." It comes up in parentheses in Koha. Not sure what it does in #Aspen . Might need to test that...

Anyway, it seems our rules to change that are you can do it over chat, just prove who you are with your library card number and a couple other bits of info, (I call this "20 questions",) and that will be amended.

To change the actual name however, you have to come in. I don't think it has to be changed on a legal ID, but you have to prove more acutely who you are.

I suspect we keep a note on legal name on file, but I don't know.

Still, it's nice that you don't have to be deadnamed at checkout.

Today I tried to extract a list of IDs stored in a JSON struct stored in a XML column stored in a MySQL table into virtual rows (one id per row), so I could do a select on them. Didn't manage it, but in the end it was fast enough to work with the IDs stored in a string and some regex. #Koha