Google, a brief history
2004: Don’t be evil
2018: OK, be evil but at least don’t kill people
2025: Fuck it, kill people
https://www.independent.co.uk/business/google-drops-pledge-not-to-use-ai-for-weapons-b2692533.html
#Google #BigTech #AI #SiliconValley #USA #capitalism #fascism
The self-destruction of the OSI has no end.
“Get ready to vote for OSI’s board of directors in 2025. […] Please have a look at the Data Governance in Open Source AI […]”
Seems like only candidates who are in favour of their “OSAID” (badly named, as it violates Open Source standards) are even considerable anyway, and voters are directed with leading messages months in advance.
Oh well, they are in the USA after all.
Demistificare e porre le domande giuste sono i due obiettivi di questa critica sistematica e multidisciplinare a ChatGPT, il più noto tra gli strumenti di intelligenza artificiale prepotentemente entrati nelle nostre vite. E se da un lato è necessario decostruire le narrazioni tecno-entusiaste che prospettano un avvenire radioso, dall’altro appare cruciale stimolare una riflessione più consapevole sul tipo di mondo che stiamo costruendo quando accogliamo – senza farci troppe domande – la rivoluzione tecnologica in atto.
Il 31 gennaio esce in libreria la nostra seconda novità dell'anno "Critica di ChatGPT" di Antonio Santangelo, Alberto Sissa, Maurizio Borghi.
scheda del libro:
https://www.eleuthera.it/scheda_libro.php?idlib=608
leggi la prefazione:
https://www.eleuthera.it/files/materiali/Santangelo_sissa_borhi_chatGPT_indice_prefazione.pdf
007: la spia che insegnava sarebbe soltanto un film.
Pare che la preoccupazione di @aisa sull'articolo 31 del #ddlsicurezza sia un "allarmismo ingiustificato".
Ma se fosse vero che l'articolo 31 del #ddlsicurezza non rende obbligatoria, per le università e gli enti di ricerca, la collaborazione con i servizi, perché introdurre una norma che non cambia nulla rispetto a quella vigente e ostinarsi a difenderla, magari evocando usanze non solo "statunitensi" ma "asiatiche"?
Anche Tomaso Montanari, che pure interpreta la norma in discussione in senso restrittivo, almeno per le università, suona bizzarramente allarmista, al punto di scomodare Orwell
Oggi ho discusso con gli studenti del problema della liceità del regicidio nella Metafisica dei costumi di Kant - tema di scottante attualità nell'ultimo decennio del XVIII secolo. Se gli studenti sapessero che io posso (o devo?) spiarli, che il mio rettore può (o deve?) farlo, ricerca e didattica diventerebbero più libere e sicure, o meno?
La Commissione UE è accusata di aver trasferito a Meta, negli Stati Uniti, senza le adeguate garanzie previste dal GDPR i dati personali di un cittadino che ha effettuato l'autenticazione con Facebook
A book about writing a toy operating system for RISC-V in 1000 lines of C.
ho costruito una cucina ikea
I might boost... IF ONLY #NextCloud had not endorsed #OSAID, the #OpenWashing #AI definition published by #OSI on behalf of its sponsors.
Now I don't know if NextCloud can be trusted anymore.
"Pseudo-decentralizzazione
Un pericolo differente e più subdolo è la "pseudo-decentralizzazione".
L'esempio più chiaro ed evidente è BlueSky, un social network commerciale che si finge decentralizato, mentre di fatto rende "Bluesky Social, PBC" un gatekeeper in condizione di decidere cosa ciascuno possa leggere.
Ma una forma più subdola di "pseudo-decentralizzazione" è causata da grandi fornitori di istanze gestite come masto.host o toot.io: è bello vedere fornitori professionali di applicazioni connesse al fediverso, ma il loro utilizzo da parte di istanze con centinaia o migliaia di utenti riduce nettamente la resilienza del sistema e l'autonomia delle comunità più piccole.
E se ti lamenti troppo dei rischi che queste aziende pongono per i dati personali degli utenti, verrai presto silenziato o bloccato da quegli amministratori che non hanno le competenze per amministrare in prima persona i server che forniscono agli altri."
tratto da Come creare il tuo social network (con Snac) di @giacomo
#fediverso #snac #decentralizzazione
https://encrypted.tesio.it/2024/12/18/come-creare-il-tuo-social-network.html
Gajim’s port to GTK4 is almost finished. Currently we’re testing thoroughly to make the switch as smooth as possible.
We went ahead and made lots of small improvements, e.g. writing messages while offline, better styling for image previews, improved chat filters and more.
Gajim also improved its spam fighting toolkit: The next release will allow you to moderate all messages of a spammer at once.
If you like to support Gajim, please consider making a donation: https://liberapay.com/Gajim
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.
They are both just bullies with billions to spare.
@jrconlin Have you tried #snac from @grunfink? Even more lightweight than GoToSocial (like remote images don't even get downloaded and cached on your system, saving disk space). Has post expiry (system-wide and user-configurable), has post editing and has an odd ball minimalistic web UI that I really liked.