@arne@uplegger.eu GlĂŒckwunsch, das ist in der Tat doch mal eine erfreuliche Abwechslung. :-)
@arne@uplegger.eu Hals- und Beinbruch! Die Bahn hat ja nur die vier Feinde: FrĂŒhling, Sommer, Herbst und Winter. Wurdest Du heute positiv ĂŒberrascht?
Torizon and Texas Instruments Collaborate on Cybersecurity Compliance for Embedded Systems
Torizon and Texas Instruments have announced a collaboration aimed at simplifying cybersecurity compliance and development for industrial and medical embedded systems. The partnership integrates Torizonâs software platform with TIâs Arm-based, Linux-capable processors, addressing increasing security requirements such as those outlined in the EU Cyber Resilience Ac ⊠â Read more
@arne@uplegger.eu Thatâs nice, but ⊠where do they get the money for this? Must be expensive as heck. đ
Good luck @arne@uplegger.eu !
@bender@twtxt.net @arne@uplegger.eu Hahaha, I love it! :-D
@movq@www.uninformativ.de @arne@uplegger.eu Ach Herrjeh, was fĂŒr ein Interview! O_o Unfassbar. Da kannste den Sender auch gleich dichtmachen, sowas braucht ja echt niemand. Der Moderator hört sich in der Tat arg versprengt an. :-(
@bender@twtxt.net @prologic@twtxt.net The outcome was to be expected but itâs still pretty catastrophic. Hereâs an overview:
East Germany is dominated by AfD. Bavaria is dominated by CSU (itâs always been that way, but this is still a conservative/right party). Black is CDU, the other conservative/right party.
The guy whoâs probably going to be chancellor recently insulted the millions of people who did demonstrations for peace/anti-right. âIdiotsâ, âtheyâre nutsâ, stuff like that. This was before the election. He already earned the nickname âMini Trumpâ.
Both the right and the left got more votes this time, but the left only gained 3.87 percentage points while the right (CDU/CSU + AfD) gained 14.72:
The Green party lost, SPD (âmid-leftâ) lost massively (worst result in their history). FDP also lost. These three were the previous government.
This isnât looking good at all, especially when you think about whatâs going to happen in the next 4 years. What will CDU (the winner) do? Will they be able to âturn the ship aroundâ? Highly unlikely. They are responsible for the current situation (in large parts). They will continue to do business as usual. They will do anything but help poor/ordinary people. This means that AfD will only get stronger over the next 4 years.
Our only hope would be to ban AfD altogether. So far, nobody but non-profit organizations is willing to do that (for unknown reasons).
I donât even know if banning the AfD would help (but itâs probably our best/only option). AfD politicians are nothing but spiteful, hateful, angry, similar to Trump/MAGA. If youâve seen these people talk and still vote for them, then you must be absolutely filled with rage and hatred. Very concerning.
Correct me if Iâm wrong, @lyse@lyse.isobeef.org, @arne@uplegger.eu, @johanbove@johanbove.info.
@arne@uplegger.eu @eapl_en@eapl.me Iâm sorry if I donât respond to a reply. I donât have a notification system for mentions at the moment. The work is manual!
I added to my bookmark. Good job @arne@uplegger.eu đ
@arne@uplegger.eu Nur gebrauchtes Lego ist gutes Lego!
@arne@uplegger.eu Right, theyâre great for upcycling. I knew youâd love that part. ;-)
Heute waren das Ziehkind und ich zwei Stunden lang auf drei SpielplĂ€tzen und quer durch die Stadt unterwegs. Ein riesiger SpaĂ!
Vorab habe ich im hiesigen Spielzeugladen ein Konvolut von Klemmbausteinen erstanden, welche wohl zu einer Polizeistation gehörten!?
@arne@uplegger.eu Amazing!!! đ
here is my progress so far: https://github.com/eapl-gemugami/twtxt-direct-message-php
The encryption part seems to work, if I decrypt it the message with OpenSSL.
I think it can help you for some key parts not well explained in OpenSSL documentation.
@andros@twtxt.andros.dev reading your spec I wrote a few notes here: https://github.com/eapl-gemugami/twtxt-direct-message-php/blob/main/direct_message_spec.md
@arne@uplegger.eu I havenât check your repo yet, although you are using sodium, right?
@arne@uplegger.eu Here are the results of the german jury:
Known salt (B64): Tb9oj07UhwU= (8)
Known key (B64): MII0yj+MC0mHNx254Voar80bi9P7jmocs0+x+inaxBE=
Known iv (B64): l/PvkDjOKMFZe73KptrvWw== (16)
Shared Key (B64): ql8zvN03p6kroSwNrcKbxk4zSBQFkgQZEumvqVIDMAE=
** DECRYPT **
Encrypted Message: ...
Decoded Salt (B64): Tb9oj07UhwU= (8)
PBKDF2 KEY (B64): MII0yj+MC0mHNx254Voar80bi9P7jmocs0+x+inaxBE=
iv (B64): JanbU1jI30lb6yfjq/adjA== (16)
Decrypted Message:
đ
echo "Lorem ipsum" | openssl enc -aes-256-cbc -pbkdf2 -iter 100000 -out message.enc -pass file:shared_key.bin
will take the input string from echo
to openssl
. It then will
@arne@uplegger.eu With the OpenSSL option -p
one can get an output of salt
, key
and iv
. My stupid PHP-code can get everything right from the encrypted data (from OpenSSL) - except the iv
! Damn âevpKDFâ đ
@arne@uplegger.eu I think you want to use the sodium_crypto functions/modules for PHP đ€đ€
@arne@uplegger.eu Hi! I love that youâre implementing it! Maybe, when weâre both done, we could test the clients by communicating both.
I donât think Iâm going to be able to help you much, my knowledge of OpenSSL and PHP is not as high as Iâd like it to be.
Maybe the OpenSSL version uses SHA-1 by default in PHP. Or that the IV is derived together with the key (not generated separately). But Iâm not able to answer your questions, sorry.
Iâm invoking the commands directly, without any libraries in between. Maybe that would help you?
@arne@uplegger.eu Well, just for my understanding. The command:
echo "Lorem ipsum" | openssl enc -aes-256-cbc -pbkdf2 -iter 100000 -out message.enc -pass file:shared_key.bin
will take the input string from echo
to openssl
. It then will
- use the content of
shared_key.bin
as password
- use
PBKDF2
with an iteration of 100000 to generate a encryption key from the given password (shared_key.bin
)
- use the
PBKDF2
generated key for anaes-256-cbc
encryption
The final result is encrypted data with the prepended salt (which was generated by runtime), e.g.: Salted__qïżœ;ïżœïżœ-ïżœTïżœïżœïżœ"h%ïżœïżœ5ïżœïżœ ...
.
With a dummy script I now can generate a valide shared key within PHP âopenssl_pkey_derive()â - identical to OpenSSL.
I also can en-/decrypt salted data within my script, but not with OpenSSL. There are several parameters of PBKDF2
unknown to me.
Question:
- Is the salt, used by
aes-256-cbc
andPBKDF2
the same, prepended in the encrypted data?
- Witch algorithm/cipher is used within
PBKDF2
: sha1, sha256, �
- What is the desired key length of
PBKDF2
(https://www.php.net/manual/en/function.openssl-pbkdf2.php)?
To be continued âŠ
But that is not how it should work. đ
Iâm continuing my tt
rewrite in Go and quickly implemented a stack widget for tview. The builtin Pages is similar but way too complicated for my use case. I would have to specify a mandatory name and some additional options for each page. Also, it allows me to randomly jump around between pages using names, but only gives me direct access the first, however, not the last page. Weird. I donât wanna remember names. All I really need is a classic stack. You open a new fullscreen dialog and maybe another one on top of that. Closing the upper most brings you back to the previous one and so on.
The very first dialog I added is viewing the raw message text. Unlike in @arne@uplegger.euâs TwtxtReader, Iâm not able to include the original timestamp, though. I donât have it in its original form in the database. :-/
Next up is a URL view.
@arne@uplegger.eu Der Real-O-Mat ging neulich auch rum: https://real-o-mat.de/ (Ăndert bei mir im Ergebnis nix, die Antworten/BegrĂŒndungen sind aber interessant(er).)
@prologic@twtxt.net In the EU there are Laws, Rules and Regulations for many things. Iâm not an expert, but your case may sound like it could match to the EU Digital Services Act.
[âŠ] for example, the obligation to establish points of contact for authorities and citizens [âŠ]
To all my EU friends out there, is it this hardâą to reach a human in European companies that allow, perform or permit silly shenanigans? đ€ Or is it just US companies? đ€
@arne@uplegger.eu Ohjemine, TYPO3! O_o Lass mich schreiend davonlaufen!
Mit dieser absoluten Katastrophensoftware vor dem Herrn haben wir mal ein Studienprojekt gemacht. Die hat alle Vorurteile komplett ĂŒbererfĂŒllt. Angefangen von Fehlerseiten, die statt 4xx oder dergleichen immer mit HTTP 200 ausgeliefert wurden oder auch, dass das generierte HTML leider einfach ungĂŒltig war. Ăber die Implementierung von Löschen durch einen Deleted-Schalter in der Datenbank, das Speichern von Passwörtern im Klartext bis hin zu völlig umstĂ€ndlichen Bedienungskonzepten. Alles hat immer brutal viele Schritte gebraucht. Das Zeilennummernrumgeeier im TYPO-Script erinnerte eher an Basic. Uns kam es auch so vor, als ob man damit nicht ernsthaft was sinnvolles machen könnte.
Zu allem Ăberfluss hatte irgendwer noch ein ganz hundsmiserables Buch ausgegraben, das als Vorbereitung dienen sollte. Ich kann mich zum GlĂŒck weder an den Titel noch den Autor erinnern, aber ich weiĂ noch, wie das komplett inkonsistent geschrieben war. Anfangs gabs mehrere Seiten zu Unicode und UTF-8 wurde angepriesen, aber alle Beispiele haben dann auf ISO-8859-1 gesetzt. Gezeigter Beispielcode war hĂ€ufig unterste Schublade. Selten hab ich so merkwĂŒrdige ErklĂ€rungen gelesen: âWenn Sie die Sicherheitswarnhinweise stören, kommentieren Sie doch bitte im Quelltext die die()
-Funktion in $ZEILE
aus.â Oder ein anderer Klassiker: âAusgeschrieben wĂŒrde der Code wohl folgendes tunâŠâ. War sich der Autor also nicht ganz sicher, ob sein Codeschnipsel vllt. doch in Wahrheit was ganz anderes tut.
Seit diesem gigantischen Trauma (das hat mich wirklich sehr nachhaltig geprÀgt, wie man Dinge nicht machen sollte) hab ich erfolgreich einen Bogen um das TYPO3-Universum gemacht.
Ich kann nur hoffen, dass es zwischenzeitlich ein wenig besser geworden ist. Aber Deinem Kurzbericht zufolge scheint da ja immer noch der Wurm drin zu sein. Mein Beileid! :-(
@arne@uplegger.eu Manchmal HASSE ich TYPO3! đ©
@arne@uplegger.eu Operation geglĂŒckt, Patient tot - oder so. Die nĂ€chsten Tage dann die AufrĂ€umarbeiten. đ
@arne@uplegger.eu Und los geht die wilde Fahrt!
@arne@uplegger.eu Eis im Januar, ja sapperlott, ist denn schon wieder Sommer im hohen Norden!?
Heute war ich mit dem Ziehkind in der Stadt unterwegs.
Mitten beim Eisschlecken fĂ€hrt die Polizei in einem zivilen Wagen quer durch die FuĂgĂ€ngerzone. An der Bank am Markt dann weitere Uniformierte und kein Einlass fĂŒr Kunden.
Da mussten wir uns in der Stadtbibliothek erst einmal Material zu dem Thema besorgen.
@arne@uplegger.eu Whoop! Whoop! Es klappt!
Danke an @arne@uplegger.eu, der mich hier in einen komplett neuen Kosmos gebracht hat! Ich bin gespannt!
Der TwtxtReader (Dummy) hat ein leichtes Re-Design bekommen. Die Devise lautet âmobile firstâ!
Eine MehrsprachigkeitsunterstĂŒtzung ist nun per YAML
-Dateien drin.
Besonders stolz bin ich auf die Zeitangabe der BeitrĂ€ge, mit Singular-Plural-Unterscheidung in unterschiedlichen Sprachen. DafĂŒr gibt es extra einen eigenen Fluid-ViewHelper zur Ăbersetzungsschnittstelle.
Fortsetzung folgt âŠ
@dfaria.eu@dfaria.eu Farewell! đ
@lyse@lyse.isobeef.org Danke! Ja, es gibt noch unzÀhlige Stellschrauben an dem Ding. Deine Anmerkungen werde ich einarbeiten. Eine mobile Ansicht wÀr auch noch schön. Derzeit sitzt es auf dem Smartphone doch noch recht stramm.
@Unterhaltungen: Die von gestern zu verschlĂŒsselten Nachrichten war ausschlaggebend fĂŒr die Umsetzung. In âTimelineâ und âYarnâ haben mich die LösungsansĂ€tze bisher nicht ĂŒberzeugt. Aber wir können ja alle etwas von einander lernen.
@arne@uplegger.eu Uuuuhhh, das fĂŒhlt sich klasse an, gute Arbeit mein Lieber! :-)
Besonders positiv hervorheben muss ich die Rohdatenansicht. Sowas hab ich mir auch schon in der Vergangenheit hin und wieder gewĂŒnscht. Wie toll es doch wĂ€r, direkt den Eintrag im Original zu sehen, ohne erst im Feed mĂŒhsam auf die Suche gehen zu mĂŒssen, was auch noch einen Wechsel auf den Browser oder den Editor erzwingt. Das werd ich mir definitiv auch einbauen. Insbesondere fĂŒr die Entwicklung absolut hilfreich. Die Textarea könntest Du noch mit einem readonly
-Attribut ausstatten.
Die Gesamtbaumansicht einer Unterhaltung gefĂ€llt mir ebenfalls. Davon bin ich ja ein groĂer Verfechter. Nicht nur die direkten Antworten zu sehen, sondern alle. Klar, bei tief verschachtelten Unterhaltungen und sehr langen BeitrĂ€gen verliert man da doch mal den Ăberblick, aber die kommen in der Praxis meiner Erfahrung nur selten vor.
Die zwei Elemente in der FuĂzeile eines Beitrags wĂŒrde ich auch noch versuchen in die Kopfzeile zu verschieben, dann wird die Darstellung insgesamt kompakter, gerade bei Unterhaltungen könnte das von Vorteil sein.
Weiter so!
@lyse@lyse.isobeef.org Du kannst selbst gern mal im TwtxtReader-Dummy herumklicken. Da ist natĂŒrlich alles auf meinen Feed eingestellt.
Bildschirmfotos wirken irgendwie nicht.
@arne@uplegger.eu Klingt gut, Du darfst uns gern mal ein paar Bildschirmfotos vom aktuellen Stand zeigen. :-) Die erste Aufnahme sah bereits recht aufgerÀumt aus.
Ich mĂŒsste auch endlich mal an meinem Client weitermachen. Aber heut nimmer.
@arne@uplegger.eu Hahaha, vor Dekaden hab ich auch mal einen âXMLâ-âParserâ selbst gebaut. Der wollte dann pro Zeile entweder einen öffnenden oder einen schlieĂenden Tag oder aber einen Wert haben. :-O Ganz ĂŒbel, aber fĂŒr den damaligen Anwendungsfall hatâs gelangt. War halt bloĂ kein XML. :-D
Was konkret war dann das Problem von dem zu sauberen XML in Deinem Fall? Und schön zu hören, dass Du das GerÀt vor dem vorzeitigen Elektroschrotttod bewahrt bekommen hast. :-)
Zum Abschluss noch ne ganz doofe Frage, ganz offensichtlich hab ich von Radios keinen blassen Schimmer. Wieso muss denn das Ding ĂŒberhaupt mit XML rumfuhrwerken? O_o
While the US politicians and tech billionaires are going full-on fascist mode, here is a reminder that there are European alternatives for many well known digital and online services: https://european-alternatives.eu
There are European alternatives for many well known digital and online services: https://european-alternatives.eu
@arne@uplegger.eu nice work with the client.
I also see you are using the Yellow CMS for your websiteđ
@arne@uplegger.eu Welcome! đ€
EU Not Reassessing Apple and Google Antitrust Investigations, But New Administration Could Shift Priorities
The European Union is âreassessingâ its investigations into big U.S. tech companies like Apple, Meta, and Google, claims Financial Times, though a spokesperson from the European Commission has denied that such a review is taking place.
 â Read more
Moin @arne@uplegger.eu, herzlich willkommen! Ich bin gerade auf https://uplegger.eu/blog/popelfinger gestoĂen und war sofort sehr begeistert. :-D Mal sehen, ob ich die anderen an einem der Feiertage davon ĂŒberzeugt bekomme, das mal auszuprobieren. :-)
Das Spiel der 20 Felder: Die möglichen Regeln des 4.600 Jahre alten Spiels mit einem Entwurf fĂŒr einen modernen Spielplan.
Report: Apple to Stop Selling iPhone 14 and iPhone SE in EU This Month
Apple plans to stop selling the iPhone 14, iPhone 14 Plus, and third-generation iPhone SE in European Union countries later this month, to comply with a regulation that will soon require newly-sold smartphones with wired charging to be equipped with a USB-C port in those countries, according to [French blog iGeneration](https://www.igen. ⊠â Read more
What the EUâs new software legislation means for developers
The EU Cyber Resilience Act will introduce new cybersecurity requirements for software released in the EU. Learn what it means for your open source projects and what GitHub is doing to ensure the law will be a net win for open source maintainers.
The post [What the EUâs new software legislation means for developers](https://github.blog/open-source/maintainers/what-the-eus-new-software-legislation-means-fo ⊠â Read more
[WTS] [EU] [0.1 XMR] LycaMobile Germany +49 ready to use
LycaMobile SIM card without credit. Can be used immediately after topping up, no registration required. Please inquire about shipping outside the EU.
Link: https://xmrbazaar.com/listing/bTW7/
75UN3HCW (Threema) â Read more
So letâs recap⊠Weâve got Putin waging war against Ukraine. Netanyahu waging war against Palestine. Iran getting involved. Kim Jong Un helping Russia and sending soldiers as resources for Putinâs war. And now Trump has won a 2nd term in the US where weâll see him scrap EU sanctions and fines against US companies violating EU laws and what else? đ€
What dafuq is wrong with this world?! đ
Apple Intelligence Rolling Out in the European Union Starting in April 2025
Apple plans to roll out Apple Intelligence features to iPhone and iPad users in the European Union starting in April 2025, according to information included in todayâs M4 iMac announcement [in European countries](https://www.apple.com/fr/newsroom/2024/10/apple-introduces-new-imac-supercharged-by- ⊠â Read more
[WTS] [EU] [0.1+ XMR] Monero Sticker Stand
Present your precious Monero Sticker collection with this slick 3D printed Sticker Stand. Compatible with all 10 x 10 cmÂČ Stickers. Comes with 10 Monero Stickers.
Link: https://xmrbazaar.com/listing/wvjj/
ChadXMR (XMRBazaar) â Read more
[ANN] BetGlide.net - a new Monero (XMR) sportsbook
Inspired by similar projects, we wanted to make a sportsbook with Monero as its native currency, but make it a little bit more full featured and easier to use. No other sportsbook in the world provides our unique combination of respect for your privacy, features, and customer support. Come check us out. (Not currently available in US/EU. See terms).
Link: https://betglide.net
BetGlide.net â Read more
[WTS] [EU] [0.2+ XMR] Monero Stickers 250pcs
Decorate your neighbourhood with these disruptive and thought provoking stickers. The 4 new designs are inspired from the original âAnonymous Moneyâ design which has been around for some years already. Choose from the 5 different designs in batches of 50pcs.
Link: https://xmrbazaar.com/listing/TCs3/
ChadXMR (XMRBazaar) â Read more
[WTS] [EU/US] Famous Dutch Cheese
Link: https://xmrbazaar.com/listing/Pmfc/
TheDutchCheeseBoy (XMRBazaar) â Read more
sim boa tarde, tudo bem, olhe eu hoje nĂŁo posso ir trabalhar, nĂŁo vai dar, estou a ser alvo de um ciberataque de grande escala
(se funciona pra eles, funciona pra mim)
Episódio estranho num tåxi em Coimbra. Entrei depois de sair do comboio, e o taxista disse-me logo que tinha de pagar em dinheiro porque não tinha MB. Tudo ok, vamos lå. Quando chegåmos ao destino, situação bem estranha:
â Ora bem, sĂŁo 6.70âŹ
â Ok, vou Ă© precisar de fatura
â Ah nĂŁo, fatura nĂŁo tenho
â Como assim?
â NĂŁo posso passar fatura
â OK, entĂŁo temos um problema porque eu tenho de declarar a despesa
â Amigo nĂŁo lhe posso fazer nada, se nĂŁo quiser nĂŁo pague
â o_O como? Ă assim?
â Pois, se quiser nĂŁo pague e vĂĄ Ă sua vida
â Ok, uma boa tarde para o senhor
â Boa tarde
O senhor nĂŁo foi nada mal-educado, simplesmente encolheu os ombros. E eu lĂĄ fui Ă minha vida, sem pagar.
@xuu@txt.sour.is I think it is more tricky than that.
âA company or entity âŠâ
Also, as I understand it, âpersonal or household activityâ (as you called it) is rather strict: An example could be you uploading photos to a webspace behind HTTP basic auth and sending that link to a friend. So, yes, a webserver is involved and you process your friendâs data (e.g., when did he access your files), but itâs just between you and him. But if you were to publish these photos publicly on a webserver that anyone can access, then itâs a different story â even though you could say that âthis is just my personal hobby, not related to any job or moneyâ.
If you operate a public Yarn pod and if you accept registrations from other users, then Iâm pretty sure the GDPR applies. đ€ You process personal data and you donât really know these people. Itâs not a personal/private thing anymore.
@movq@www.uninformativ.de @falsifian@www.falsifian.org @prologic@twtxt.net Maybe I donât know what Iâm talking about and Youâve probably already read this: Everything you need to know about the âRight to be forgottenâ coming straight out of the EUâs GDPR Website itself. It outlines the specific circumstances under which the right to be forgotten applies as well as reasons that trump the oneâs right to erasure âŠetc.
Iâm no lawyer, but my uneducated guess would be that:
A) twts are already publicly available/public knowledge and such⊠just donât process childrenâs personal data and MAYBE youâre good? Since thereâs this:
⊠an organizationâs right to process someoneâs data might override their right to be forgotten. Here are the reasons cited in the GDPR that trump the right to erasure:
- The data is being used to exercise the right of freedom of expression and information.
- The data is being used to perform a task that is being carried out in the public interest or when exercising an organizationâs official authority.
- The data represents important information that serves the public interest, scientific research, historical research, or statistical purposes and where erasure of the data would likely to impair or halt progress towards the achievement that was the goal of the processing.
B) What I love about the TWTXT sphere is itâs Human/Humane element! No deceptive algorithms, no Corpo B.S âŠetc. Just Humans. So maybe ⊠If we thought about it in this way, it wouldnât heart to be even nicer to others/offering strangers an even safer space.
I could already imagine a couple of extreme cases where, somewhere, in this peaceful world oneâs exercise of freedom of speech could get them in Real trouble (if not danger) if found out, it wouldnât necessarily have to involve something to do with Law or legal authorities. So, If someone asks, and maybe fearing fearing for⊠letâs just say âTheir well beingâ, would it heart if a pod just purged their content if itâs serving it publicly (maybe relay the info to other pods) and call it a day? It doesnât have to be about some law/convention somewhere âŠ đ€· I know! Too extreme, but Iâve seen news of people whoâd gone to jail or got their lives ruined for as little as a silly joke. And it doesnât even have to be about any of this.
P.S: Maybe make X
tool check out robots.txt? Or maybe make long-term archives Opt-in? Opt-out?
P.P.S: Already Way too many MAYBEâs in a single twt! So Iâll just shut up. đ
Setapp Mobile Launches in Open Beta as Alternative App Store in EU
Ukraine-based developer MacPaw has announced the open beta release of Setapp Mobile, its alternative app store for iOS devices in the European Union. This launch comes in the wake of the Digital Markets Act (DMA), which mandates support for third-party app marketplaces on iOS in the EU.
. The BEUC advocates for consumer rights and provides guidance to European lawmakers.
Eh pĂĄ eu ia jurar que acabei de me cruzar com o Daniel Radcliffe em Cedofeita
Mas como o senhor nĂŁo tem redes sociais, Ă© difĂcil confirmar
Que bom pra ele!
Apple Approves Epic Games Store for iPhone and iPad in EU
Apple today said it has approved the third-party Epic Games Store in the European Union, allowing the Fortnite developer to launch its alternative app marketplace in those countries, reports Reuters. âEpic Gamesâ had [submitted](https://www.macrumors.com/2024/07/01/fortnite-epic-gam ⊠â Read more
Este fds hå #FestivalElétrico de beats open air no parque da Pasteleira no Porto, alguém vai? Eu vou arrastar-me do sofå no såbado para conseguir ir ver Tiga e Michael Mayer às 18
EU Accuses Appleâs App Store Steering Rules of Violating DMA and Opens Investigation into Developer Fees
The European Commission has formally announced its preliminary view that Appleâs App Store policies are in breach of the Digital Markets Act (DMA), specifically in relation to anti-steering rules.
Under the DMA, developers distributing their apps via Appleâs âA ⊠â Read more
Status 2024-06-08
Evening, hackers! I feel a column coming on!
TL;DR: In which we learn about the EU parliament election, some
ruminations about the death of XMPP, MCâs flat being without drains
for two months, a visit at the Lund Linux Conference, another at the
Security Fest conference, fighting against a Supermicro server, and
some other recent shenanigans,
I voted today. Yes, I know. The EU is still a strange marvel of
functional bureaucracy and not the federated workerâs Union of Europe
we all would lik ⊠â Read more
A @aiscarvalho e eu aterramos agora em Nantes para seguir para Rennes, amanhã começa a #libregraphicsmeeting!
Nestes dias conto tootar sobre o evento a partir da minha conta anglófona @rlafuente@rlafuente. Até jå*
@dfaria@twtxt.net the difference is that these other servers does not post several times a day with content that are not informative/interesting to people outside your academic context, which can be perceived as noise.
What @prologic@twtxt.net have done is what I would call curation of the service he offers to the world for free (as in beer). Itâs no one right to have their posts syndicated to the frontpage of twtxt.net, itâs simply a gift he gives to the world and he is free (as in speak) to wrap is anyway he sees fit.
@dfaria.eu@dfaria.eu I hope you stay around đ
Added support for #tag clouds and #search to timeline. Based on code from @dfaria.eu@dfaria.euđ
Live at: http://darch.dk/timeline/?profile=https://darch.dk/twtxt.txt
Aviso Ă navegação: cuidadĂssimo com as refs multibanco por sms, eu ia caindo nesta sem pensar.
A data bate certo com a factura que eu tinha em atraso, mas calhou de ir confirmar ao site da EDP por parecer demasiado, e o valor em falta era muito mais baixo.
Voltei ao interface do banco para confirmar a entidade da referĂȘncia e nĂŁo era a edp, era Hipay (provider de refs multibanco para pequenos comerciantes), estou convencido que Ă© fraude.
ConclusĂŁo: NĂŁo gozar com quem cai em phishings, que isto anda mais sofisticado que nunca
Ontem estive na CNN como representante da @d3 a comentar as desventuras da Worldcoin; Ă© a partir da 1:04:00
https://cnnportugal.iol.pt/videos/cnn-fim-de-tarde-6-de-marco-de-2024/65e8f0ad0cf2c4edbc0d4bc1
Slurry Sprayed Onto Brussels Street Amid Fractious Farmer Protest
The uncustomary âstench of manureâ was in the air in Brussels on February 26, Politico said, as protesting farmers again descended on the EU capital, in time for a meeting of the blocâs agriculture ministers. According to the Brussels Times, police were being âbombardedâ with dung, and responded with tear gas and water cannons. Tractors were also seen driving through ⊠â Read more
Protesting farmers jam Brussels with tractors as ministers meet
Farmers set fire to piles of tyres in Brussels on Monday in a protest to demand EU action on issues ranging from cheap supermarket prices to free trade deals, as agricultural ministers met to discuss the crisis in the sector. â Read more
Um dos Ășltimos motivos para eu ir visitando o passaralho deixou de ter razĂŁo de ser â o @fesshole@fesshole estĂĄ agora no fediverso!! đ„ł
Queria mesmo tirar os domĂnios do Gandi, que subiu os preços, e como alternativa sĂł parece plausĂvel o PorkBun. Mas preferia de longe um serviço .eu.
Gostava de ouvir de quem resolveu satisfatoriamente este dilema!
O Ășltimo boletim da FSF tem uma bela apresentação do JShelter, uma extensĂŁo de browser dedicada Ă privacidade em que nĂłs na Manufactura Independente (a @aiscarvalho e eu) tambĂ©m estamos envolvidos.
E inclui uma selfie que tirei quando me cruzei com o Giorgio Maone, autor do NoScript, que também faz parte do JShelter mas que eu não tinha tido ainda o prazer de conhecer em pessoa :-)
@movq@www.uninformativ.de time to write your own browser? Or at least a fork maintained outside the EU?
HĂĄ por aĂ quem use o Awesome window manager? Eu sei que somos pouca gente mas ainda acredito que haja almas afins por perto
HI! My name is Dan (turboblack@torba.com) downgrade.me.eu.org
Quando eu era miĂșdo, ouvia o nome da empresa municipal das ĂĄguas (SMAS) e pensava que era um nome de pessoa. Imaginava dois irmĂŁos, o TomĂĄs e o SemĂĄs.
o Playwright Ă© maravilhoso e fez exactamente o que eu precisava Ă primeira âš (tinha um ficheiro com links e precisava de screenshots de todos)
obrigado pela pista @medecau@medecau e @raf@raf <3
How to get AI regulation right for open source
Sharing our coalition paper to inform the final negotiation of the EU AI Act. â Read more
No cyber resilience without open source sustainability
Have your say to protect open source in the EU. â Read more
Na minha opiniĂŁo sobre o que aconteceu no Parlamento Ă© que o Tiago Paiva e a I.L. nĂŁo tĂȘm nada que pedir desculpa. Ele Ă© um comediante, nĂŁo Ă© o padre da freguesia local. E que eu saiba liberdade de expressĂŁo ainda Ă© um direito. E com uma repĂșblica como esta que estĂĄ no saque por corruptos que andam a governar e nada fazem. O desrespeito pelas instituiçÔes pĂșblicas Ă© belo e moral, tal como fugir ao fisco.
The EUâs Proposed CRA Law May Have Unintended Consequences for the Python Ecosystem (as well as the entire free software movement).
Partnering with EU policymakers to ensure the Cyber Resilience Act works for developers
Weâre looking forward to working with policymakers to improve cybersecurity and support developers. â Read more
Europeâs chance to be a leader in the age of AI
Below are my prepared remarks delivered at the EU Open Source Policy Summit in Brussels on Feb 3rd. â Read more
âSpace Romans! Sandalpunk! The EU is just a semantic anagram of SPQR!â
Chatcontrol, searching messages for illegal content
On July 6 the EU parliament voted yes to a proposal from the EU\âšcommission (PDF) on a temporary law to allow services to automatically
search messages for suspicious content with a focus on child
exploitation.
We have quite strict confidentiality laws within EU even when it comes
to electronic communication. Its current basis is the ⊠â Read more
Sociopathic innovation: how we are investing most in the most evil technologies (LONG) - Internet of Humans - Edgeryders â Read moreâŠ
EU Training â Read moreâŠ