Tootfinder

Opt-in global Mastodon full text search. Join the index!

@tiotasram@kolektiva.social
2025-10-13 06:16:23

Just finished "Beasts Made of Night" by Tochi Onyebuchi...
Indirect CW for fantasy police state violence.
So I very much enjoyed Onyebuchi's "Riot Baby," and when I grabbed this at the library, I was certain it would be excellent. But having finished it, I'm not sure I like it that much overall?
The first maybe third is excellent, including the world-building, which is fascinating. I feel like Onyebuchi must have played "Shadow of the Colossus" at some point. Onyebuchi certainly does know how to make me care for his characters.
Some spoilers from here on out...
.
.
.
I felt like it stumbles towards the middle, with Bo's reactions neither making sense in the immediate context, nor in retrospect by the end when we've learned more. Things are a bit floaty in the middle with an unclear picture of what exactly is going on politics-wise and what the motivations are. Here I think there were some nuances that didn't make it to the page, or perhaps I'm just a bit thick and not getting stuff I should be? More is of course revealed by the end, but I still wasn't satisfied with the explanations of things. For example, (spoilers) I don't feel I understand clearly what kind of power the army of aki was supposed to represent within the city? Perhaps necessary to wield the threat of offensive inisisia use? In that case, a single scene somewhere of Izu's faction deploying that tactic would have been helpful I think.
Then towards the end, for me things really started to jumble, with unclear motivations, revelations that didn't feel well-paced or -structured, and a finale where both the action & collapsing concerns felt stilted and disjointed. Particularly the mechanics/ethics of the most important death that set the finale in motion bothered me, and the unexplained mechanism by which that led to what came next? I can read a couple of possible interesting morals into the whole denouement, but didn't feel that any of them were sufficiently explored. Especially if we're supposed to see some personal failing in the protagonist's actions, I don't think it's made clear enough what that is, since I feel his reasons to reject each faction are pretty solid, and if we're meant to either pity or abjure his indecision, I don't think the message lands clearly enough.
There *is* a sequel, which honestly I wasn't sure of after the last page, and which I now very interested in. Beasts is Onyebuchi's debut, which maybe makes sense of me feeling that Riot Baby didn't have the same plotting issues. It also maybe means that Onyebuchi couldn't be sure a sequel would make it to publication in terms of setting up the ending.
Overall I really enjoyed at least 80% of this, but was expecting even better (especially politically) given Onyebuchi's other work, and I didn't feel like I found it.
#AmReading

@tiotasram@kolektiva.social
2025-08-04 15:49:00

Should we teach vibe coding? Here's why not.
Should AI coding be taught in undergrad CS education?
1/2
I teach undergraduate computer science labs, including for intro and more-advanced core courses. I don't publish (non-negligible) scholarly work in the area, but I've got years of craft expertise in course design, and I do follow the academic literature to some degree. In other words, In not the world's leading expert, but I have spent a lot of time thinking about course design, and consider myself competent at it, with plenty of direct experience in what knowledge & skills I can expect from students as they move through the curriculum.
I'm also strongly against most uses of what's called "AI" these days (specifically, generative deep neutral networks as supplied by our current cadre of techbro). There are a surprising number of completely orthogonal reasons to oppose the use of these systems, and a very limited number of reasonable exceptions (overcoming accessibility barriers is an example). On the grounds of environmental and digital-commons-pollution costs alone, using specifically the largest/newest models is unethical in most cases.
But as any good teacher should, I constantly question these evaluations, because I worry about the impact on my students should I eschew teaching relevant tech for bad reasons (and even for his reasons). I also want to make my reasoning clear to students, who should absolutely question me on this. That inspired me to ask a simple question: ignoring for one moment the ethical objections (which we shouldn't, of course; they're very stark), at what level in the CS major could I expect to teach a course about programming with AI assistance, and expect students to succeed at a more technically demanding final project than a course at the same level where students were banned from using AI? In other words, at what level would I expect students to actually benefit from AI coding "assistance?"
To be clear, I'm assuming that students aren't using AI in other aspects of coursework: the topic of using AI to "help you study" is a separate one (TL;DR it's gross value is not negative, but it's mostly not worth the harm to your metacognitive abilities, which AI-induced changes to the digital commons are making more important than ever).
So what's my answer to this question?
If I'm being incredibly optimistic, senior year. Slightly less optimistic, second year of a masters program. Realistic? Maybe never.
The interesting bit for you-the-reader is: why is this my answer? (Especially given that students would probably self-report significant gains at lower levels.) To start with, [this paper where experienced developers thought that AI assistance sped up their work on real tasks when in fact it slowed it down] (arxiv.org/abs/2507.09089) is informative. There are a lot of differences in task between experienced devs solving real bugs and students working on a class project, but it's important to understand that we shouldn't have a baseline expectation that AI coding "assistants" will speed things up in the best of circumstances, and we shouldn't trust self-reports of productivity (or the AI hype machine in general).
Now we might imagine that coding assistants will be better at helping with a student project than at helping with fixing bugs in open-source software, since it's a much easier task. For many programming assignments that have a fixed answer, we know that many AI assistants can just spit out a solution based on prompting them with the problem description (there's another elephant in the room here to do with learning outcomes regardless of project success, but we'll ignore this over too, my focus here is on project complexity reach, not learning outcomes). My question is about more open-ended projects, not assignments with an expected answer. Here's a second study (by one of my colleagues) about novices using AI assistance for programming tasks. It showcases how difficult it is to use AI tools well, and some of these stumbling blocks that novices in particular face.
But what about intermediate students? Might there be some level where the AI is helpful because the task is still relatively simple and the students are good enough to handle it? The problem with this is that as task complexity increases, so does the likelihood of the AI generating (or copying) code that uses more complex constructs which a student doesn't understand. Let's say I have second year students writing interactive websites with JavaScript. Without a lot of care that those students don't know how to deploy, the AI is likely to suggest code that depends on several different frameworks, from React to JQuery, without actually setting up or including those frameworks, and of course three students would be way out of their depth trying to do that. This is a general problem: each programming class carefully limits the specific code frameworks and constructs it expects students to know based on the material it covers. There is no feasible way to limit an AI assistant to a fixed set of constructs or frameworks, using current designs. There are alternate designs where this would be possible (like AI search through adaptation from a controlled library of snippets) but those would be entirely different tools.
So what happens on a sizeable class project where the AI has dropped in buggy code, especially if it uses code constructs the students don't understand? Best case, they understand that they don't understand and re-prompt, or ask for help from an instructor or TA quickly who helps them get rid of the stuff they don't understand and re-prompt or manually add stuff they do. Average case: they waste several hours and/or sweep the bugs partly under the rug, resulting in a project with significant defects. Students in their second and even third years of a CS major still have a lot to learn about debugging, and usually have significant gaps in their knowledge of even their most comfortable programming language. I do think regardless of AI we as teachers need to get better at teaching debugging skills, but the knowledge gaps are inevitable because there's just too much to know. In Python, for example, the LLM is going to spit out yields, async functions, try/finally, maybe even something like a while/else, or with recent training data, the walrus operator. I can't expect even a fraction of 3rd year students who have worked with Python since their first year to know about all these things, and based on how students approach projects where they have studied all the relevant constructs but have forgotten some, I'm not optimistic seeing these things will magically become learning opportunities. Student projects are better off working with a limited subset of full programming languages that the students have actually learned, and using AI coding assistants as currently designed makes this impossible. Beyond that, even when the "assistant" just introduces bugs using syntax the students understand, even through their 4th year many students struggle to understand the operation of moderately complex code they've written themselves, let alone written by someone else. Having access to an AI that will confidently offer incorrect explanations for bugs will make this worse.
To be sure a small minority of students will be able to overcome these problems, but that minority is the group that has a good grasp of the fundamentals and has broadened their knowledge through self-study, which earlier AI-reliant classes would make less likely to happen. In any case, I care about the average student, since we already have plenty of stuff about our institutions that makes life easier for a favored few while being worse for the average student (note that our construction of that favored few as the "good" students is a large part of this problem).
To summarize: because AI assistants introduce excess code complexity and difficult-to-debug bugs, they'll slow down rather than speed up project progress for the average student on moderately complex projects. On a fixed deadline, they'll result in worse projects, or necessitate less ambitious project scoping to ensure adequate completion, and I expect this remains broadly true through 4-6 years of study in most programs (don't take this as an endorsement of AI "assistants" for masters students; we've ignored a lot of other problems along the way).
There's a related problem: solving open-ended project assignments well ultimately depends on deeply understanding the problem, and AI "assistants" allow students to put a lot of code in their file without spending much time thinking about the problem or building an understanding of it. This is awful for learning outcomes, but also bad for project success. Getting students to see the value of thinking deeply about a problem is a thorny pedagogical puzzle at the best of times, and allowing the use of AI "assistants" makes the problem much much worse. This is another area I hope to see (or even drive) pedagogical improvement in, for what it's worth.
1/2

@LaChasseuse@mastodon.scot
2025-10-08 21:54:41

Challenge: "Name 20 female authors you admire, 1 per day"
Day 15:
Jenni Fagan
She is like a volcano of creativity - 4 novels, numerous books of poetry, film, sculpture, painting ... she is amazingly productive, and unique in her style and voice.
I particularly enjoyed The Sunlight Pilgrims and some of the things in it helped explain odd things I'd notice when I moved to rural Scotland. Can also recommend her first novel The Panopticon.

the author against a background of books, possibly at a library. She is signing books and looking up
@tiotasram@kolektiva.social
2025-07-30 17:56:35

Just read this post by @… on an optimistic AGI future, and while it had some interesting and worthwhile ideas, it's also in my opinion dangerously misguided, and plays into the current AGI hype in a harmful way.
social.coop/@eloquence/1149406
My criticisms include:
- Current LLM technology has many layers, but the biggest most capable models are all tied to corporate datacenters and require inordinate amounts of every and water use to run. Trying to use these tools to bring about a post-scarcity economy will burn up the planet. We urgently need more-capable but also vastly more efficient AI technologies if we want to use AI for a post-scarcity economy, and we are *not* nearly on the verge of this despite what the big companies pushing LLMs want us to think.
- I can see that permacommons.org claims a small level of expenses on AI equates to low climate impact. However, given current deep subsidies on place by the big companies to attract users, that isn't a great assumption. The fact that their FAQ dodges the question about which AI systems they use isn't a great look.
- These systems are not free in the same way that Wikipedia or open-source software is. To run your own model you need a data harvesting & cleaning operation that costs millions of dollars minimum, and then you need millions of dollars worth of storage & compute to train & host the models. Right now, big corporations are trying to compete for market share by heavily subsidizing these things, but it you go along with that, you become dependent on them, and you'll be screwed when they jack up the price to a profitable level later. I'd love to see open dataset initiatives SBD the like, and there are some of these things, but not enough yet, and many of the initiatives focus on one problem while ignoring others (fine for research but not the basis for a society yet).
- Between the environmental impacts, the horrible labor conditions and undercompensation of data workers who filter the big datasets, and the impacts of both AI scrapers and AI commons pollution, the developers of the most popular & effective LLMs have a lot of answer for. This project only really mentions environmental impacts, which makes me think that they're not serious about ethics, which in turn makes me distrustful of the whole enterprise.
- Their language also ends up encouraging AI use broadly while totally ignoring several entire classes of harm, so they're effectively contributing to AI hype, especially with such casual talk of AGI and robotics as if embodied AGI were just around the corner. To be clear about this point: we are several breakthroughs away from AGI under the most optimistic assumptions, and giving the impression that those will happen soon plays directly into the hands of the Sam Altmans of the world who are trying to make money off the impression of impending huge advances in AI capabilities. Adding to the AI hype is irresponsible.
- I've got a more philosophical criticism that I'll post about separately.
I do think that the idea of using AI & other software tools, possibly along with robotics and funded by many local cooperatives, in order to make businesses obsolete before they can do the same to all workers, is a good one. Get your local library to buy a knitting machine alongside their 3D printer.
Lately I've felt too busy criticizing AI to really sit down and think about what I do want the future to look like, even though I'm a big proponent of positive visions for the future as a force multiplier for criticism, and this article is inspiring to me in that regard, even if the specific project doesn't seem like a good one.

@nemobis@mamot.fr
2025-08-22 15:15:40

I randomly bought this book in a quirky bookshop in Copenhagen for the sole reason that it said all the wrong things right on the cover.
(Sales: the single most important profession. NLP™: not natural language processing but neuro-linguistic programming. Meta: the Meta Model™ and Meta Publications™.)
I just started reading it and boy oh boy, I was not disappointed. It's outrageously hilarious.
"Persuasion engineering".

"For many years now, the single most important professionals in the world have been ignored by our educational institutions: Sales"
"While it may seem that some of the sentence structures in this book read as grammatically incorrect, they are written for a purpose"
«"Some of them really work hard. They can’t afford these cars. But every time one of them buys one, I smile because I know they are going to be the most motivated they can be just to keep up with the payments. I like my sales people to be a little hungry. There’s nothing better to keep them moving.” And so, he considers them to be self motivated. Anytime one of them starts to slack off a little, he asks them how the new car is.

What you do is you induce a wanton buying state and show them the …
@qurlyjoe@mstdn.social
2025-07-25 20:50:58

Library Comic
librarycomic.com
#Librarians are awesome.

Four panel comic, from Library Comic. Interaction between a patron, P, and a worker, W.
P: I have questions about the multiverse.
W: Are you looking for a book on physics?

P: In some other universe do I have superpowers? A winning personality? A full head of hair?
W: I could show you to the graphic novels, the self help section, or both…

P: Don’t you ever wish things could be different?
W: Sure, but that doesn’t really get m anywhere.
P: So what do you do?

W: I ask people if I can help them …
@arXiv_csSE_bot@mastoxiv.page
2025-07-25 09:36:52

Scheduzz: Constraint-based Fuzz Driver Generation with Dual Scheduling
Yan Li, Wenzhang Yang, Yuekun Wang, Jian Gao, Shaohua Wang, Yinxing Xue, Lijun Zhang
arxiv.org/abs/2507.18289

@chris@mstdn.chrisalemany.ca
2025-08-09 16:01:53

I think maybe it isn't #mastodon that is slowing down and filling up #footiMac.
It's the 700GB of webcam images/videos.
Just bought a fast dual USB A/C 500GB flash stick to offload this stuff and lighten things up a bit.
This is stuff I need to archive anyway. I want to gradually build a physical USB stick based digital library of webcam imagery from the cams @….
#mastoadmin #weather #webcams

@tiotasram@kolektiva.social
2025-09-27 12:26:53

Day 4: Adiba Jaigirdar
Thought I'd mix things up a bit in terms of intensity & genre. Jaigirdar has written several lovely sapphic teen romances that grapple with parental acceptance in Muslim Bengali immigrant culture, along with racism and other aspects of second generation immigrant life in Dublin.
I've discovered a few other Southeast Asian authors at my local library who will appear on this list, but I'm putting Jaigirdar first because of just how enjoyable her books are, and because I generally find queer romance to be more engaging than non-queer romance. Jaigirdar's characters are sympathetic and convincing, and their problems are both dramatic and a little funny. "Hani & Ishu's Guide to Fake Dating" is probably my favorite by Jaigirdar, but I also enjoyed "The Henna Wars" and "Rani Choudhury Must Die." "A Million to One" is a bit of a departure from her other books, as historical fiction with a heist plot, but it still engages with Irish culture, immigrants, and queer romance.
#20WomenAuthors

@mgorny@social.treehouse.systems
2025-08-18 08:42:07

If you're writing a library, you should really avoid #CMake. CMake is designed to lock you in. As in, once you release a #FreeSoftware project using CMake, you can't switch to another build system with causing real trouble to your users. And if you support multiple build systems, as soon as you start supporting CMake, some of your users are going to start locking everyone else in.
That's because CMake uses a custom package discovery mechanism that's hardly compatible with anything else, and that is so complex that it's very hard to reimplement it with any other build system. So when others start relying on the CMake config files being installed (and they naturally will, since that's how CMake does things), you can't stop installing them without actually breaking stuff. And if you want to preserve them without actually using CMake, well, good luck with that.
And if CMake is one of the options you support, then some of your consumers will accidentally start relying on it anyway. And this will be much worse for everyone, because now their projects won't work for people who build your project with any other build system. Which in turn will force more projects to use CMake anyway. Which in turn will make more people rely on CMake being used…
Use #Meson as the build system, it's clean and not designed to lock you in. Use pkg-config for library data; it's simple and portable.
#OpenSource