Hello with client cert my old friend. Today I needed to connect a ticket system to you.

I had to tweak it a little though, because I have no idea where to put client certificates for Python’s requests lib and my current customer requires that. Any HTTPS request without will fail with status code 400: No required SSL certificate was sent. On top it’s a self signed so let’s ignore self signed server certs (I know…).

For this I edited ~/.local/lib/python3.11/site-packages/bugzilla/_backendxmlrpc.py line 43 from this:

        # pylint: disable=raise-missing-from
        try:
            response = self.__bugzillasession.request(
                "POST", url, data=request_body)

to

        # pylint: disable=raise-missing-from
        cert = ()
        verify = True
        
        if url.startswith('https://bugzilla.example.com/'):
            log.debug("Adding client certs for url: %s", url)
            cert=('/path/to/client.crt', '/path/to/client.key')
            verify = False

        try:
            response = self.__bugzillasession.request(
                "POST", url, verify=verify, data=request_body,
                cert=cert)

This time I even added my extra bits in a conditional way so other bugzilla configs should not be affected. There may be better ways to achieve this but I’ve seen no obvious in the docs at https://bugwarrior.readthedocs.io/en/latest/services/bugzilla.html – YMMV.

I held an online presentation and talk for 2h about some weeks ago **in German**. The presentation itself (20m) went live today with **English subtitles** on the channel of @Sciencekeeper@troet.cafe (Stellanebula project lead). I mention as example for native games but the main focus is, due to the audience: a huge German Elite Dangerous wing, focused on (and some for good measure). I’m going to release the talk that happened after this eventually but I have to cut this first, which is _a lot_ of work, so no promises yet. Mebbe this is of interest for someone else too: https://www.youtube.com/watch?v=wmaj-MyRkPs.

This presentation was made for absolute beginners as intro into the topic .

CC-SA versions on https://www.youtube.com/watch?v=o7Qj5NvrbWQ / https://tube.tchncs.de/w/tuQs2dBSDSTdUv5DYcA6Mv

Al right peeps, the 1:1 ( | https://www.buildsbybaz.com/) build is basically done but Baz is stuck now. He made plans for a trailer to haul it around but he is out of materials: https://www.youtube.com/watch?v=4EfnB02gxFg

Baz is not asking for donations yet. Personally I think he should, because his builds spark joy in the heart of people. Like his awesome build of an suit for the benefit of sick kids in hospitals did before.

We may even support him without some GoFundMe. If you’re into you may be interested in some of his at https://shop.buildsbybaz.com/.

I’ll update this should I learn about a GoFundMe campaign, of course.

Edith says: Awesome, apparently it took one night for some sales to appear and Baz can proceed building the trailer now: https://www.youtube.com/watch?v=I8O9MK_vu1k

Kissing, I hope they caught us by ShawshankShawshank (voidifremoved.net)

I’ve gotta start taking more pictures. I’m starting to double up the featured images here. This one I’ve already used. Last week I think. It’s all good. Good morning my friends. It’s Sunday, and you know what that means- chores and bacon. Bacon and chores. I did the laundry yesterday, because I was given some…

We got hardly any snow this year @Shawshank. In fact we didn’t even have to order new food for the heater. That’s not normal at all :-/

Not saying I missed snow but I miss snow. Does this make sense?

Anyway, now it’s spring and we get this rich fresh green everywhere that can only be seen for ~2ish weeks each year – and I love it 🤓

Bloggers, what is your primary topic or focus? (openmentions.com)
We ask a new question every Monday – you can reply using your own blog, website, or social media account and then ping us using WebMention so your reply appears as a comment. If you have difficulties, try brid.gy which has fabulous tools to help send mentions. Come back next week for a new questio...

There’s no such thing like a primary topic or focus on mine. It’s an ongoing ever evolving side project and it’s topics change with whatever my hyperfocus latches on next 🙃

I know many separate their ongoing projects or thoughts via profiles or even completely different websites.

That’s too much work for my taste. So there is the full package or nothing. Or well… one could sub to a feed by category only. A nifty RSS feature 😀

Oh Hello Ana (Jottings from Ana)
Ana's personal blog

I’d say we had a different kind of “content pressure” when creating a blog back then. I mean how else would we explain the amount of under_construction gifs? 🙃

It is indeed a shame though that any activity on the net is associated with the question how to make money of it 🙁

Sometimes existing is really enough 👍

All the (active) sites using Webmention that I found so far [March 2024] by Matthew BrownMatthew Brown (lordmatt.co.uk)

Readers with long memories will remember my post “All the (active) sites using Webmention that I find (sic) so far” – the May 2022 edition and then the June 2022 edition. This is that list but updated for March 2024 and put in some sort of logical order in a post with a grammatically improved […]

Wonder where you look, because that list doesn’t look _that_ exhaustive 🙃

Also Hi from an IndieWeb-Priest 🤓