Show newer

Sometimes my brain says "You're not really a Renamon" but the joy I get just from artwork of my rena self is unlike anything I've gotten for any of my other forms/OCs! Sorry brain, you're wrong; I am a Renamon!

Now It Can Be Told

If you saw a jolly person of size in a red parka and flying a sleigh pulled by 8 reindeer a couple nights ago, you probably thought nothing of it.
We're happy to announce the successful extraction of a #trans man and 16 queer #furries from the North Pole, where conditions have been deteriorating for #queer people for some time.
We would like to thank members of the furry community, Chimney Sweeps Union local 69, and Good Vibrations, who provided the presents.

@lgbtqia

This was a piece I did for Enbyeon as they were wanting to create a community piece made of doodles and the like relevant to their streams for their office after they moved and I really wanted to do something for them c:

I had intended to do more but time unfortunately wasn't on my side but I'm happy with how this came out.

They've actually had the piece for a couple weeks now but I wanted to give them time to collate it all, get it printed etc. before I posted it :3 It looks good honestly bsky.app/profile/enbyeon.moe/p 

#DOsArt #FurryArt #Umbreon #Enbyeon #MasterSystem #SEGAMasterSystem

This German meme was just brought to my attention and I feel obligated to reshare it here

Frohe Weihnachten

Abigail Thorn weighs in on NHS trans care and Wes Streeting. Good analysis and some interesting hints of what’s going on inside the NHS:

transwrites.world/my-doctor-em

[Not heavily doomy or depressing, but the usual CWs for trans care in the UK apply]

Adam McAmis' aptly-named 'saturn.fm' is a painstaking loveletter to the beleaguered (and beloved) 90s videogame console's built-in CD player. Feed it local MP3s and jam out to the faithfully recreated sound-reactive cube-orbs.

saturn.fm/

adam.mcamis.lol

Prototypes of Jimmy White's Whirlwind Snooker game for #AtariST computers were found in the floppy disks of Archer Maclean (who sadly passed away two years ago) @gamesthatwerent gamesthatwerent.com/2024/12/ar #atari #retrogames

Want to get #cyber patches at #38c3?

I will pack some of the stock for congress, but if you want to make sure your favorite patch will be available:
I've added free 38c3 pickup as a shipping option to the checkout!

cyberpatch.shop

DECT will be posted on day 1

#chaos #xenia #patches #cyber

I’ll be honest, hearing SEO people complain about the state of Google now is like hearing an arsonist complain that they just can’t get the quality of kerosene they used to.

melancholy, trans 

A little bit melancholy this eve remembering that I'm still like three/four years away from my first appointment at my local GIC.

Really glad that I've started my journey but wishing that I'd done it like 20 years ago.

Internalised transphobia, brought on by the remenants of growing up with section 28 in schools, which stopped me from just accepting who I am.

I'm really glad that I'm doing all this but I just wish that it wasn't going to take so long to officially get meds.

I finally turned off GitHub Copilot yesterday. I’ve been using it for about a year on the ‘free for open-source maintainers’ tier. I was skeptical but didn’t want to dismiss it without a fair trial.

It has cost me more time than it has saved. It lets me type faster, which has been useful when writing tests where I’m testing a variety of permutations of an API to check error handling for all of the conditions.

I can recall three places where it has introduced bugs that took me more time to to debug than the total time saving:

The first was something that initially impressed me. I pasted the prose description of how to communicate with an Ethernet MAC into a comment and then wrote some method prototypes. It autocompleted the bodies. All very plausible looking. Only it managed to flip a bit in the MDIO read and write register commands. MDIO is basically a multiplexing system. You have two device registers exposed, one sets the command (read or write a specific internal register) and the other is the value. It got the read and write the wrong way around, so when I thought I was writing a value, I was actually reading. When I thought I was reading, I was actually seeing the value in the last register I thought I had written. It took two of us over a day to debug this. The fix was simple, but the bug was in the middle of correct-looking code. If I’d manually transcribed the command from the data sheet, I would not have got this wrong because I’d have triple checked it.

Another case it had inverted the condition in an if statement inside an error-handling path. The error handling was a rare case and was asymmetric. Hitting the if case when you wanted the else case was okay but the converse was not. Lots of debugging. I learned from this to read the generated code more carefully, but that increased cognitive load and eliminated most of the benefit. Typing code is not the bottleneck and if I have to think about what I want and then read carefully to check it really is what I want, I am slower.

Most recently, I was writing a simple binary search and insertion-deletion operations for a sorted array. I assumed that this was something that had hundreds of examples in the training data and so would be fine. It had all sorts of corner-case bugs. I eventually gave up fixing them and rewrote the code from scratch.

Last week I did some work on a remote machine where I hadn’t set up Copilot and I felt much more productive. Autocomplete was either correct or not present, so I was spending more time thinking about what to write. I don’t entirely trust this kind of subjective judgement, but it was a data point. Around the same time I wrote some code without clangd set up and that really hurt. It turns out I really rely on AST-aware completion to explore APIs. I had to look up more things in the documentation. Copilot was never good for this because it would just bullshit APIs, so something showing up in autocomplete didn’t mean it was real. This would be improved by using a feedback system to require autocomplete outputs to type check, but then they would take much longer to create (probably at least a 10x increase in LLM compute time) and wouldn’t complete fragments, so I don’t see a good path to being able to do this without tight coupling to the LSP server and possibly not even then.

Yesterday I was writing bits of the CHERIoT Programmers’ Guide and it kept autocompleting text in a different writing style, some of which was obviously plagiarised (when I’m describing precisely how to implement a specific, and not very common, lock type with a futex and the autocomplete is a paragraph of text with a lot of detail, I’m confident you don’t have more than one or two examples of that in the training set). It was distracting and annoying. I wrote much faster after turning it off.

So, after giving it a fair try, I have concluded that it is both a net decrease in productivity and probably an increase in legal liability.

Discussions I am not interested in having:

  • You are holding it wrong. Using Copilot with this magic config setting / prompt tweak makes it better. At its absolute best, it was a small productivity increase, if it needs more effort to use, that will be offset.
  • This other LLM is much better. I don’t care. The costs of the bullshitting far outweighed the benefits when it worked, to be better it would have to not bullshit, and that’s not something LLMs can do.
  • It’s great for boilerplate! No. APIs that require every user to write the same code are broken. Fix them, don’t fill the world with more code using them that will need fixing when the APIs change.
  • Don’t use LLMs for autocomplete, use them for dialogues about the code. Tried that. It’s worse than a rubber duck, which at least knows to stay silent when it doesn’t know what it’s talking about.

The one place Copilot was vaguely useful was hinting at missing abstractions (if it can autocomplete big chunks then my APIs required too much boilerplate and needed better abstractions). The place I thought it might be useful was spotting inconsistent API names and parameter orders but it was actually very bad at this (presumably because of the way it tokenises identifiers?). With a load of examples with consistent names, it would suggest things that didn't match the convention. After using three APIs that all passed the same parameters in the same order, it would suggest flipping the order for the fourth.

#GitHubCopilot #CHERIoT

Show older
Computer Fairies

Computer Fairies is a Mastodon instance that aims to be as queer, friendly and furry as possible. We welcome all kinds of computer fairies!