#Governo #Microsoft força empresa a beneficiários de apoio de Acção Social Escolar via #EscolaDigital

O nosso #Governo #Microsoft força esta empresa a beneficiários de apoio de Acção Social Escolar via #EscolaDigital

De notar que em lugares chave do Governo há pessoas que vieram diretamente da Microsoft, o que seguramente não estará alheio a estas “opções”.

O nosso Governo Microsoft força Windows e serviços online em todos os alunos com apoio de Ação Social Escolar que solicitem computador e ligação à Internet ao abrigo do programa Escola Digital!

Isto é uma mancha vergonhosa naquilo que deveria ser uma campanha de valor benemérito, especialmente em contexto de pandemia.

Mas continua o benefício ilegítimo à Microsoft, e o pior é que não é nas licenças do software pré-instalado que estão a pagar…

Isto é tal “primeira dose gratuita” com que, tais quais dealers, viciam as crianças na droga do traficante, em nome do seu mestre e senhor.

Não acreditam? Então vamos lá…

Os equipamentos estão pré-instalados com Windows 10.

Não é fácil (será possível sequer hoje?) utilizar o Windows 10 sem uma conta Microsoft

Isto constitui um duplo vício, sistema e serviços online, ambos forçados, sem consideração sequer por privacidade).

Os AEs podem instalar as aplicações que acharem necessárias.

As famílias estão terminantemente proibidas de instalar um sistema livre, e só mediante certas condições podem instalar algumas aplicações.

Be careful what you wish for… #foodforthought #censorship

https://news.slashdot.org/story/20/10/21/2128248/fcc-defends-helping-trump-claims-authority-over-social-media-law

This is the result of not only originally from a) copyright maximalism extremists lobby but also, more recently, from b) pressure by people who can’t handle offence from the right with all the “cancel culture” calls.

The problem is… you have just opened the door for people who can’t handle offence from the left, get it?

You can’t ask for censorship of things you don’t like without giving the legal tools for censorship of the things you do like from a guy you don’t like. Like Trump.

I’ve been saying for years that places like the closed garden social networks provide a space to speak your mind, but they *do* have the right to restrict your speech in their own walled garden.

However… the moment they started editorializing (and they not only can do it, they actively do it when they manipulate our feeds, insert ads, etc…) they opened themselves up to existing regulation.

Regulation that is now being abused by the Trump administration.

Congratulations, lobbyists and snowflakes, you got what you asked for.

Can we now work to fix this?

Is it even fixable without exiting the huge social networks, making people loose all the network effects from vast networks?

I’m not sure it is, but it certainly is awake up call.

There are other options like the Fediverse, where you can build your own social network that integrates with others, but Facebook and Twitter will never allow federation, nor any other successful (by numbers or regulation like in China) social network.

Create your own #Jitsi *and* #XMPP instance

So the best, and quickest, way to get your own Jitsi instance is to follow this instructions:

https://dev.to/noandrea/self-hosted-jitsi-server-with-authentication-ie7

As far as I can tell there is no such easy peasy way to have it running in CentOS, and I won’t be diving into it for the moment although I certainly intend to do so in the future, but I think it’s very much worth it to just build upon those instructions in order to set up (what would seem to me as essential for the free federated communication world) an XMPP instance that already is built-in in your Jitsi server!

  1. If you only want the video conference part, you only need 443/tcp (https) and 10000:20000/udp and you can skip the rest of this blog entry. You don’t need to enable http as it only redirects into https, and if you don’t plan on allowing remote public ssh you don’t have to enable it either. That’s just there as a helpful reminder in case you just created a virtual machine on some VPS provider and so you don’t get locked out by accident;
  2. But if you’d like to have your own instant messaging server, you can additionally follow the instructions below in order to expose Jitsi’s integrated XMPP address as well, and your identity will be your.user@your.jitsi.website

So you start by setting up additional permissions you’ll be needing in order to re-use the same Let’s Encrypt certificate managed by certbot:

cd /etc/letsencrypt/
chmod a+rx live live/*
chmod g+rx archive
chgrp -R ssl-cert archive
chmod g+s archive archive/*
chmod g+r archive/*/*key*pem

You’ll also have to change prosody’s certificates in order to use the correct ones, and then restart it:

cd /etc/prosody/certs
ln -sf your.jitsi.website.crt /etc/letsencrypt/live/your.jitsi.website/fullchain.pem
ln -sf your.jitsi.website.key /etc/letsencrypt/live/your.jitsi.website/privkey.pem
systemctl restart prosody

Finally, you’ll need to open prosody’s port in the firewall as well:

ufw allow 5222/tcp

That’s it. Now you have your Jitsi video conference properly integrated with XMPP/Jabber, neat hey?

PS: Oh, a minor but relevant update… use the following ufw rule rather than the correspondent one in the article above to be able to allow multiple UDP streams for the video conference, as TCP and only one UDP port will be a bit painful…

ufw allow 10000:20000/udp

How to connect to a different Jitsi site

So you have now setup your own Jitsi site, or you want to connect to your friend’s Jitsi site. How to do it?

If you’re using a computer, it’s simple: all you need is to type the address of the website and room in your browser’s url bar: https://your.jitsi.website/SomeFancyRoomEatingIcecream

But if this was all to it, then it would be a very boring short blog. 🙂 What about the app?

At least for the Android version, Jitsi Meet doesn’t make it easy to change the server, although it’s quite easy, it could be a lot simpler.

Just press the “menu” button (the three horizontally stacked bars on the top left part of the Jitsi Meet app window):

Choose Settings:

Then choose your display name and, most importantly, the website (without any room reference, just the root):

Done. Now go back and write your desired room name.

That’s it, that’s really just all there is to it.

Now go and have fun. 🙂