C Project Turns Into Full-Fledged OS
While some of us may have learned C in order to interact with embedded electronics or deep with computing hardware of some sort, others learn C for the challenge alone. Compared to newer languages like Python there’s a lot that C leaves up to the programmer that can be incredibly daunting. At the beginning of the year [Ethan] set out with a goal of learning C for its own sake and ended up with a working operating system from scratch programmed in not only C but Assembly as well.
[Ethan] calls his project Moderate Overdose of System Eccentricity, or MooseOS. Original programming and testing was done in QEMU on a Mac where he was able to build all of the core components of the operating system one-by-one including a kernel, a basic filesystem, and drivers for PS/2 peripherals as well as 320×200 VGA video. It also includes a dock-based GUI with design cues from operating systems like Macintosh System 1. From that GUI users can launch a few applications, from a text editor, a file explorer, or a terminal. There’s plenty of additional information about this OS on his GitHub page as well as a separate blog post.
The project didn’t stay confined to the QEMU virtual machine either. A friend of his was throwing away a 2009-era desktop which [Ethan] quickly grabbed to test his operating system on bare metal. There was just one fault that the real hardware threw that QEMU never did, but with a bit of troubleshooting it was able to run. He also notes that this was inspired by a wiki called OSDev which, although a bit dated now, is a great place to go to learn about the fundamentals of operating systems. We’d also recommend checking out this project that performs a similar task but on the RISC-V instruction set instead.
Ben Eater Explains How Aircraft Systems Communicate With the ARINC 429 Protocol
Over on his YouTube channel the inimitable [Ben Eater] takes a look at an electronic altimeter which replaces an old mechanical altimeter in an airplane.
The old altimeter was entirely mechanical, except for a pair of wires which can power a backlight. Both the old and new altimeters have a dial on the front for calibrating the meter. The electronic altimeter has a connector on the back for integrating with the rest of the airplane. [Ben] notes that this particular electronic altimeter is only a backup in the airplane it is installed in, it’s there for a “second opinion” or in case of emergency.
The back of the electronic altimeter has a 26-pin connector. The documentation — the User Guide for MD23-215 Multifunction Digital Counter Drum Altimeter — explains the pinout. The signals of interest are ARINC Out A & B (a differential pair on pins 2 and 3) and ARINC In A & B (a differential pair on pins 5 and 14).
Here “ARINC” refers to the ARINC 429 protocol which is a serial protocol for communicating between systems in aircraft. Essentially the protocol transmits labeled values with some support for error detection. The rest of the video is spent investigating these ARINC signals in detail, both in the specification and via the oscilloscope.
Of course we’ve heard from [Ben Eater] many times before, see Ben Eater Vs. Microsoft BASIC and [Ben Eater]’s Breadboarding Tips for some examples.
youtube.com/embed/mhBya3JYteQ?…
Say goodbye to the Guy Fawkes masks and hello to inflatable frogs and dinosaurs.#News
Breaking News Channel reshared this.
Standalone CNC Tube Cutter/Notcher Does it With Plasma
Tubes! Not only is the internet a series of them, many projects in the physical world are, too. If you’re building anything from a bicycle to a race cart to and aeroplane, you might find yourself notching and welding metal tubes together. That notching part can be a real time-suck. [Jornt] from HOMEMADE MADNESS (it’s so mad you have to shout the channel name, apparently) thought so when he came up with this 3-axis CNC tube notcher.
If you haven’t worked with chrome-molly or other metal tubing, you may be forgiven for wondering what the big deal is, but it’s pretty simple: to get a solid weld, you need the tubes to meet. Round tubes don’t really want to do that, as a general rule. Imagine the simple case of a T-junction: the base of the T will only meet the crosspiece in a couple of discreet points. To get a solid joint, you have to cut the profile of the crosspiece from the end of the base. Easy enough for a single T, but for all the joins in all the angles of a space-frame? Yeah, some technological assistance would not go amiss.
Which is where [Jornt]’s project comes in. A cheap plasma cutter sits on one axis, to cut the tubes as they move under it. The second axis spins the tube, which is firmly gripped by urethane casters with a neat cam arrangement. The third axis slides the tube back and forth, allowing arbitarily long frame members to be cut, despite the very compact build of the actual machine. It also allows multiple frame members to be cut from a single long length of tubing, reducing setup time and speeding up the overall workflow.
The project is unfortunately not open source– instead [Jornt] is selling plans, which is something we’re seeing more and more of these days. (Some might say that open source hardware is dead, but that’s overstating things.) It sucks, but we understand that hackers do need money to eat, and the warm fuzzy feeling you get with a GPL license doesn’t contain many calories. Luckily [Jornt] has put plenty of info into his build video; if you watch the whole thing, you’ll have a good idea of the whole design. You will quite possibly walk away with enough of an idea to re-engineer the device for yourself, but [Jornt] is probably assuming you value your time enough that if you want the machine, you’ll still pay for the plans.
This isn’t the first tubing cutter we’ve featured, though the last build was built into a C (It wasn’t open-source either; maybe it’s a metalworking thing.)NC table, rather than being stand-alone on the bench like this one.
Thanks to [Shotgun Moose] for the tip! Unlike tubing, you can just toss your projects into the line, no complex notching needed.
youtube.com/embed/FhsAKh7Dkm0?…
2025 Component Abuse Challenge: Making A TTL Demultiplexer Sweat
When we think of a motor controller it’s usual to imagine power electronics, and a consequent dent in the wallet when it’s time to order the parts. But that doesn’t always have to be the case, as it turns out that there are many ways to control a motor. [Bram] did it with a surprising part, a 74ACT139 dual 4-line demultiplexer.
A motor controller is little more than a set of switches between the supply rails and the motor terminals, and thus how it performs depends on a few factors such as how fast it can be switched, how much current it can pass, and how susceptible it is to any back EMF or other electrical junk produced by the motor.
In this particular application the motor was a tiny component in a BEAM robot, so the unexpected TTL motor controller could handle it. The original hack was done a few decades ago and it appears to have become a popular hack in the BEAM community.
This project is part of the Hackaday Component Abuse Challenge, in which competitors take humble parts and push them into applications they were never intended for. You still have time to submit your own work, so give it a go!
OpenSCAD in Living Color
I modified a printer a few years ago to handle multiple filaments, but I will admit it was more or less a stunt. It worked, but it felt like you had to draw mystic symbols on the floor of the lab and dance around the printer, chanting incantations for it to go right. But I recently broke down and bought a color printer. No, probably not the one you think, but one that is pretty similar to the other color machines out there.
Of course, it is easy to grab ready-made models in various colors. It is also easy enough to go into a slicer and “paint” colors, but that’s not always desirable. In particular, I like to design in OpenSCAD, and adding a manual intervention step into an otherwise automatic compile process is inconvenient.
The other approach is to create a separate STL file for each filament color you will print with. Obviously, if your printer can only print four colors, then you will have four or fewer STLs. You import them, assign each one a color, and then, if you like, you can save the whole project as a 3MF or other file that knows how to handle the colors. That process is quick and painless, so the question now becomes how to get OpenSCAD to put out multiple STLs, one for each color.
But… color()
OpenSCAD has a color function, but that just shows you colors on the screen, and doesn’t actually do anything to your printed models. You can fill your screen with color, but the STL file you export will be the same. OpenSCAD is also parametric, so it isn’t that hard to just generate several OpenSCAD files for each part of the assembly. But you do have to make sure everything is referenced to the same origin, which can be tricky.OpenSCAD Development Version Test
It turns out, the development version of OpenSCAD has experimental support for exporting 3MF files, which would allow me to sidestep the four STLs entirely. However, to make it work, you not only have to run the development version, but you also have to enable lazy unions in the preferences. You might try it, but you might also want to wait until the feature is more stable.
Besides, even with the development version, at least as I tried it, every object in the design will still need its color set in the slicer. The OpenSCAD export makes them separate objects, but doesn’t seem to communicate their color in a way that the slicer expects it. If you have a large number of multi-color parts, that will be a problem. It appears that if you do go this way, you might consider only setting the color on the very top-most objects unless things change as the feature gets more robust.
A Better Way
What I really wanted to do is create one OpenSCAD file that shows the colors I am using on the screen. Then, when I’m ready to generate STL files, I should be able to just pick one color for each color I am using.
Luckily, OpenSCAD lets you easily define modifiers using children()
. You can define a module and then refer to things that are put after the module. That lets you write things that act like translate or scale that modify the things that come after them. Or, come to think of it, the built-in color command.
Simple Example
Before we look at color output, let’s just play with the children
function. Consider this code:
module redpart() {
color("red") children();
}
redpart() cube([5,5,5]);
That makes a red cube. Of course, you could remind me that you could just replace redpart()
with color("red")
and you’d be right. But there’s more to it.
Let’s add a variable that we set to 1 if we don’t want color output:
mono=0;
module redpart() {
if (mono==0) color("red") children();
else children();
}
redpart() cube([5,5,5]);
Now We’re Getting Somewhere
So what we need is a way to mark different parts of the OpenSCAD model as belonging to a specific filament spool. An array of color names would work. Then you can select all colors or just a specific one to show in the output.
colors=[ "black", "white", "blue","green"];
// Set to -1 for everything
current_color=-1;
All we need now is a way to mark which spool goes with what part. I put this in colorstl.scad so I could include it in other files:
module colorpart(clr) {
color(colors[clr])
if (clr==current_color || current_color==-1) {
children();
}
else {
}
}
So you can say something like:
colorpart(2) mounting_plate();
This will not only set the mounting_plate
to the right color on your screen. It will also ensure that the mounting_plate
will only appear in exports for color 2 (or, if you export with all colors).
Some Better Examples
The letters are ever so slightly raised over the surface of the backing.
Since Supercon is coming up, I decided I wanted a “hello” badge that wouldn’t run out of batteries like my last one. It was easy enough to make a big plastic plate in OpenSCAD, import a Jolly Wrencher, and then put some text in, too.
Of course, if you print this, you might just want to modify some of the text. You could also make the text some different colors if you wanted to get creative.
Here’s the script:
colors=[ "black", "white", "blue","green"];
// Set to -1 for everything
current_color=-1;
include <colorstl.scad>
colorpart(0) cube([100,75,3]);
colorpart(1) translate([5,40,2.8]) scale([.25,.25,1]) linear_extrude(height=0.4) import("wrencher2.svg");
colorpart(1) translate([37,48,2.8]) linear_extrude(height=0.4) text("Hackaday",size=10);
colorpart(1) translate([3,18,2.8]) linear_extrude(height=0.4) text("Al Williams",size=14);
colorpart(1) translate([25,2,2.8]) linear_extrude(height=0.4) text("WD5GNR",size=8);
Once it looks good in preview, you just change current_color
to 0, export, then change it to 1 and export again to a different file name. Then you simply import both into your slicer. The Slic3r clones, like Orca, will prompt you when you load multiple files if you want them to be a single part. The answer, of course, is yes.Epoxy a magnet to the back and ready for Supercon!
The only downside is that the slicer won’t know which part goes with which filament spool. So you’ll still have to pick each part and assign an extruder. In Orca, you flip from Global view to Objects view. Then you can pick each file and assign the right filament slot number. If you put the number of the color in each file name, you’ll have an easier time of it. Unlike the development version, you’ll only have to set each filament color once. All the white parts will lump together, for example.
Of course, too, the slicer preview will show you the colors, so if it doesn’t look right, go back and fix it before you print. I decided it might be confusing if too many people printed name tags, so here’s a more general-purpose example:
colors=[ "black", "white", "blue","black"];
current_color=-1;
include <colorstl.scad>
$fn=128;
radius=25; // radius of coin
thick=3; // thickness of coin base
topdeck=thick-0.1;
ring_margin=0.5;
ring_thick=0.5;
feature_height=0.8;
inner_ring_outer_margin=radius-ring_margin;
inner_ring_inner_margin=inner_ring_outer_margin-ring_thick;
module center2d(size) {
translate([-size[0]/2, -size[1]/2]) children();
}
colorpart(0) cylinder(r=radius,h=thick); // the coin base
// outer ring
colorpart(1) translate([0,0,topdeck]) difference() {
cylinder(r=inner_ring_outer_margin,h=feature_height);
translate([0,0,-feature_height]) cylinder(r=inner_ring_inner_margin,h=feature_height*3);
}
// the wrencher (may have to adjust scale depending on where you got your SVG)
colorpart(1) translate([0,0,topdeck]) scale([.3,.3,1]) linear_extrude(height=feature_height,center=true) center2d([118, 108]) import("wrencher2.svg");
How did it come out? Judge for yourself. Or find me at Supercon, and unless I forget it, I’ll have a few to hand out. Or, make your own and we’ll trade.
Belgio: l’Unione dei religiosi riconosce “problemi che non si possono giustificare” e attiva punti d’ascolto riservati - AgenSIR
“Questa puntata parla di problemi che non si possono giustificare. Riconosciamo la realtà per quella che è”.Riccardo Benotti (AgenSIR)
e comunque complimenti al Premio Liquore di poesia, che apre la serata della premiazione, l'8 ottobre, con la poesia palestinese, e però è finanziato da Bper, banca che con SGR Arca Fondi ancora al 31 luglio deteneva "titoli di guerra" israeliani per 195 milioni di euro.
facebook.com/share/v/17511XUPK…
altreconomia.it/le-banche-e-i-…
reshared this
Open letter: The EU must safeguard the independence of data protection authorities
EDRi and 40 civil society organisations urge the European Commission to assess the independence of Ireland’s newly appointed Data Protection Commissioner (DPC), who previously held a senior public affairs role at Meta. The appointment raises serious concerns about impartiality and the credibility of data protection enforcement in the EU.
The post Open letter: The EU must safeguard the independence of data protection authorities appeared first on European Digital Rights (EDRi).
Nuova destra, vecchio nazionalismo.
Quello che interessa alle forze politiche che organizzano le masse è molto spesso un riconoscimento identitario. Il tentativo, riuscito, di solleticare il narcisismo degli individui che hanno bisogno di rappresentarsi in uno spettacolo che li faccia sentire migliori, aderenti al proprio sè ideale, purtroppo piuttosto distante da quello impersonato durante la settimana lavorativa e nel tempo libero. Da questo orizzonte pre-politico di mobilitazione popolare le destre non hanno nessuna intenzione di uscire, perchè gli interessi che vanno a rappresentare sono soltanto quelli delle élites, e Trump negli USA lo ha mostrato senza dubbio. Il rilancio del nazionalismo sciovinista serve solo a vincere le elezioni e indirizzare i disoccupati verso l'arruolamento militare. Per le forze socialiste, invece, la sfida è proprio quella di canalizzare l'indignazione in protesta, governandola, per arrivare a costruire forme di organizzazione trasformativa su obiettivi condivisi. Continua a leggere→
Von Windows 10 auf Linux: Was tun, wenn der Computer nicht für Windows 11 geeignet ist?
Il fastidio della memoria
@Giornalismo e disordine informativo
articolo21.org/2025/10/il-fast…
C’è un disagio profondo nella destra di governo ogni volta che si parla di memoria. Lo si è visto con chiarezza nelle parole della ministra Eugenia Roccella al convegno dell’Unione delle Comunità Ebraiche Italiane, quando ha definito le visite ad Auschwitz “gite”. Gite, come se si parlasse di una
La presidenza del Consiglio dice di ignorare chi abbia autorizzato Netanyahu a sorvolare l’Italia
quindi in italia non sappiamo neppure chi è delegato a prendere queste decisioni? o chi ne ha responsabilità? oppure chi le prende non ha la coerenza di sostenere le proprie decisioni pubblicamente? in entrambi i casi siamo un paese di buffoni. oppure è un altro atto illegale di israele?
quanto successo si può vedere in molto modi e molte cose possono essere possibili, ma in nessuno scenario l'italia ci fa una bella figura. siamo burattini.
dillo piccola meloncina che hai fatto tutto per arruffianarti trump. tanto sappiamo che sei così e niente cambi ma al massimo passi per coerente. che tu non ne sappia niente è pure giù grave.
GULMh - Siete pronti per un nuovo inizio?
gulmh.it/siete-pronti-per-un-n…
Segnalato da Linux Italia e pubblicato sulla comunità Lemmy @GNU/Linux Italia
Il fatidico giorno è arrivato, oggi, 14 ottobre 2025, Microsoft decreta la fine del supporto ufficiale a Windows...
C’è un buco nello scudo magnetico della Terra, e si allarga ogni anno di più
La missione Swarm dell’Agenzia Spaziale Europea scopre la “falla” sopra l’Atlantico. Satelliti a rischio e mistero nel cuore della TerraRoberto Zonca (Tiscali.it)
c'è già stato in india un servizio che tramite ai generava codice e poi si è scoperto che erano tanti poveri indianini sottopagati... che intendano seguire lo stesso modello?
il famoso criceto che gira la ruota praticamente
Scoperto il più piccolo grumo di materia oscura mai visto
Un telescopio radio globale rileva l'oggetto oscuro con massa minore mai trovato, un milione di volte il Sole, grazie al lensing gravitazionale.Antonello Buzzi (Tom's Hardware)
Elicotteri italiani per l’esercito americano? I dettagli dell’intesa tra Leonardo e Boeing
@Notizie dall'Italia e dal mondo
Nel cuore della competizione globale sull’addestramento militare, Leonardo e Boeing uniscono le forze per proporre all’Esercito statunitense una nuova formula di formazione dei piloti. L’intesa nasce dentro una gara che ridefinisce i confini
La guerra ibrida, l’industria e le opinioni pubbliche. Tutti i nodi della difesa europea al dibattito Ecfr
@Notizie dall'Italia e dal mondo
Da cosa dipenderà il mantenimento della pace in Europa? Sempre che quella attuale possa essere definita pace, la sua fine o il suo prosieguo saranno dettati anche da come si comporterà l’Europa stessa nei
Stavo domandandomi in quale altro posto peggiore si potrebbe nascere ma credo che la Palestina non abbia rivali.
Poliversity - Università ricerca e giornalismo reshared this.
Some random loong chaotic thoughts on fediverse clients and my experience
every now and then I return here on friendica to try and see if I like it as much as sharkey, not feeling any particular difference.
i'm realising the question is wrong-worded: basically the contents are the same, as long as I can follow the same ppl in both (or all three, if we want to add my Mastodon profile currently in standby), so it's only a matter of ui/ux and features on my end? Probably I think. And this is pretty much the good thing of the Fediverse, in theory; the bad thing is that the way this is delivered AND communicated outside of the fedi clique is not always the best imho
Couple days ago a friend managed to (MAYBE) comprehensibly explain me how federation btw instances works, and it kinda doesn't feel that optimal, or basically good. And, notwithstanding all the hashtags, antennas, or any other stuff, I still can't find a quick, simple way to tailor my feed; I understand the control etc but there must be a way to keep control of my presence while not having to spend a week to set it up -and see it doesn't work-.
Ho da mesi un account su questa istanza Friendica e da qualche settimana anche uno su un'istanza Mastodon.
A me sembra che Friendica sia una spanna sopra come usabilità, mi domando perché sia Mastodon la piattaforma più usata nel Fediverso.
C'è qualcuno che ha un account su entrambe le piattaforme, preferisce Mastodon e può spiegarmi perché?
Magari sto sbagliando qualcosa io...
reshared this
L’Afghanistan si avvicina all’India ma esplode lo scontro con il Pakistan
@Notizie dall'Italia e dal mondo
Mentre l’India e l’Afghanistan si avvicinano, tra l’Afghanistan e il Pakistan è esplosa nei giorni scorsi una gravissima crisi, con ricadute non indifferenti per gli equilibri dell’Asia meridionale
L'articolo L’Afghanistan si avvicina all’India ma esplode lo scontro
Hanno creato un deserto e la chiamano pace 😬
Ieri mentre facevo un lavoretto domestico seguivo distrattamente la diretta di Rai 1 dedicata al "Giorno della Pace". Uno spettacolo veramente indegno. A parte vabbe', i deliri di Trump alla Knesset, le battute, le risatine, le spallate di complicità con i suoi partners in crime già andate in mondovisione. Poi il modo in cui ha trattato Meloni, da sottoposta due volte, una perché donna l'altra perché premier di un paese vassallo. Ma a dire il vero mentre lui delirava e si vantava di questo e di quello come un bambino di sette anni la cosa che ho trovato più raccapricciante era il tono trionfalistico e i commenti dei vari presentatori e ospiti della diretta. Esperti e giornalisti vari che si affannavano a consacrare la vittoria del capo tribù. Mentre ascoltavo sbigottito tutto questa mostra di servilismo ogni tanto buttavo un occhio e queste persone che sproloquiavano le immaginavo con la bocca sporca di merda, come in certe scene di Salò di Pasolini per intenderci. Raccapricciante. Molinari in particolare mi ha fatto venire i conati di vomito. Abbiamo veramente raggiunto uno dei momenti più bui e vergognosi della nostra storia occidentale. Spero riusciremo presto ad uscire da questo abisso e a raddrizzare un pochino la rotta, altrimenti l'unica cosa che possiamo aspettarci è l'arrivo del crollo definitivo e di un nuovo medioevo.
🤖: L'espressione "hanno creato un deserto e la chiamano pace" è la traduzione o una rielaborazione della frase latina "Ubi solitudinem faciunt, pacem appellant" (tradotto anche come "dove fanno il deserto, lo chiamano pace").
Questa frase fu pronunciata, secondo lo storico romano Publio Cornelio Tacito, dal capo dei Caledoni, Calgaco, nel suo discorso contro l'imperialismo romano, riportato nell'opera Agricola. La citazione completa, attribuita a Calgaco, è spesso resa come: "Rubano, massacrano, rapinano e, con falso nome, lo chiamano impero; infine, dove hanno fatto il deserto, lo chiamano pace" (Auferre, trucidare, rapere falsis nominibus imperium, atque ubi solitudinem faciunt, pacem appellant).
L'immagine mostra uno screenshot di una trasmissione televisiva. Al centro dell'immagine c'è un rettangolo blu scuro con il testo bianco "IL GIORNO DELLA PACE". All'interno del rettangolo si vede una vista aerea di una città. La città sembra essere densamente popolata con edifici ravvicinati. In basso a destra si trova il logo "TGI". Nell'angolo in basso a sinistra c'è la parola "ica".
Alt-text: L'immagine mostra uno screenshot di una trasmissione televisiva con un rettangolo blu scuro che contiene il testo "IL GIORNO DELLA PACE" sopra una vista aerea di una città. Il logo "TGI" si trova nell'angolo in basso a destra e la parola "ica" nell'angolo in basso a sinistra. L'immagine mostra una vista dall'alto di una città densamente popolata con molti edifici.
Fornito da @altbot, generato localmente e privatamente utilizzando Gemma3:27b
🌱 Energia utilizzata: 0.138 Wh
REPORTAGE. Siria. Nei campi con i prigionieri dell’Isis anche due giovani italiane
@Notizie dall'Italia e dal mondo
Silvia Casadei è andata ad Al Hol e Roj, dove da anni si trovano centinaia di famiglie di miliziani dell'Isis uccisi. Le italiane sono combattute tra la possibilità di tornare in Europa e il desiderio di vivere in una società fondata sui
PREMIO DI POESIA ELIO PAGLIARANI: SINTESI DELLE INFORMAZIONI
slowforward.net/2025/10/05/xi-…
reshared this
sostenere le librerie indipendenti: iniziando da ‘mannaggia’, di perugia, che ha un ricchissimo catalogo online e spedisce in tutta italia
sostenere le librerie indipendenti: iniziando da ‘mannaggia’, di perugia, che ha un ricchissimo catalogo online e spedisce in tutta italia | differx
!! ordinare libri di editori indipendenti da librerie indipendenti !!differx.noblogs.org
reshared this
differx.noblogs.org/2025/10/14…
reshared this
Don Letts The Rebel Dread at Echo Beach
iyezine.com/va-don-letts-the-r…
@Musica Agorà #musica #reggae #musicareggae
VA - Don Letts The Rebel Dread at Echo Beach
Scopri "Don Letts The Rebel Dread at Echo Beach", una raccolta che celebra il meglio del dub digitale con selezioni d'autore dal catalogo della leggendaria etichetta.Massimo Argo (In Your Eyes ezine)
reshared this
Gaza, non c’è pace senza giustizia
@Giornalismo e disordine informativo
articolo21.org/2025/10/gaza-no…
L’importanza della giornata di ieri è sotto gli occhi di tutti, è un passo simbolico verso la pace e la riparazione delle ferite di Gaza. Il mondo ha assistito a un momento di profonda rilevanza storica: la firma di un accordo di pace che mira a mettere fine a decenni di
freezonemagazine.com/rubriche/…
Iniziamo con la definizione del termine Reunion data dall’Oxford Advanced Learner’s Dictionary. “incontro, dopo un lungo periodo di separazione, di persone che in altri tempi sono stati amici (nel nostro caso sono fratelli) o che hanno lavorato insieme“. Il 27 agosto scorso è stata annunciata la reunion degli Oasis o meglio dei fratelli coltelli Liam […]
L'articolo Reunions tra business
freezonemagazine.com/rubriche/…
Con questo concerto inauguro il recupero del materiale video degli anni 90 che ho registrato in vari concerti, qui in particolare alla rassegna storica di Musica in Collina ad Olgiate Comasco per iniziativa del compianto amico Giulio Bianchi. Quindi questa documentazione è soprattutto un omaggio che voglio fare all’impegno e alla passione che hanno contraddistinto […]
L'articolo David
Afghanistan e Pakistan, combattimenti alla frontiera con decine di morti
@Notizie dall'Italia e dal mondo
Decine di soldati uccisi e postazioni occupate in entrambe le direzioni, mentre Islamabad e Kabul chiudono i valichi di frontiera e rafforzano la sicurezza lungo il confine settentrionale
L'articolo Afghanistan e Pakistan, combattimenti alla frontiera con decine
La “Pax americana” imposta dall’alto da Washington
@Giornalismo e disordine informativo
articolo21.org/2025/10/la-pax-…
La collocazione dei capi di stato dietro il lungo tavolo marrone di Shrarm el sheik dice tutto. Al centro , a condurre tutta la cerimonia, quasi fosse il padrone di casa, il trionfatore assoluto: Donald Trump. In prima fila i
GAZA. Concluso scambio ostaggi israeliani-prigionieri politici palestinesi
@Notizie dall'Italia e dal mondo
Consegnati alla Croce Rossa i 20 israeliani. Scarcerati 2000 prigionieri palestinesi. Durante il discorso di Trump alla Knesset, due deputati della sinistra, Ayman Odeh e Ofer Cassif, sono stati espulsi per aver mostrato un cartello con la scritta
È disponibile il nuovo numero della newsletter del Ministero dell’Istruzione e del Merito.
Ministero dell'Istruzione
#NotiziePerLaScuola È disponibile il nuovo numero della newsletter del Ministero dell’Istruzione e del Merito.Telegram
#USA-#Cina, l'escalation impossibile
USA-Cina, l’escalation impossibile
La risposta cinese alle ultime decisioni dell’amministrazione Trump sulle restrizioni all’export di microchip con tecnologia statunitense sembra segnare un punto di svolta nella “guerra commerciale” in corso, con gravi incognite e possibili destabili…www.altrenotizie.org
Le strumentalizzazioni di una ministra, il silenzio delle comunità ebraiche. Meno male che c’è Liliana Segre
@Giornalismo e disordine informativo
articolo21.org/2025/10/le-stru…
La terribile doppia accusa della Ministra Roccella –
Big Brother Awards: Überwachungs-Oscar geht an Innenminister Dobrindt
FREE ASSANGE Italia
Giornalisti palestinesi premiati a Roma, appello a Tajani - Città Nuova https://share.google/FEK1NSvoyPb1SUZJjTelegram
JP Morgan sgancia la bomba, un trilione e mezzo di dollari sulla sicurezza nazionale. I dettagli
@Notizie dall'Italia e dal mondo
“È diventato dolorosamente chiaro che gli Stati Uniti hanno permesso a sé stessi di dipendere troppo da fonti inaffidabili di minerali critici, prodotti e manifattura”. È con questa premessa che Jaime Dimon, presidente e ceo di JP Morgan Chase, ha annunciato
ILS Roma - Linux Day Roma 2025 – Here we go!
roma.ils.org/2025/10/13/linux-…
Segnalato da Linux Italia e pubblicato sulla comunità Lemmy @GNU/Linux Italia
Salve ciurma! Ottobre è il mese del Linux Day, e qui ne abbiamo più di uno! Iniziamo subito con un “aperitivo digitale” di benvenuto presso la Maker Faire, dove Il Faro
DajeLinux reshared this.
𝓑𝓻𝓸𝓷𝓼𝓸𝓷 🐐
in reply to Max - Poliverso 🇪🇺🇮🇹 • • •Ogni piattaforma ha le sue caratteristiche che possono esserci congeniali o no, l'importante è averne tante e distribuirci il più possibile.
Una delle tante bellezze del Fediverso è proprio la sua varietà.