Briar Mailbox Server CLI Installation Guide

Introduction Briar Mailbox offers a solution for Briar users to improve their reachability and reduce battery consumption. This guide will walk you through the steps to install and set up Briar Mailbox on your server. Note: Always refer to briarproject.org for the most up-to-date and detailed information. Prerequisites A server running GNU/Linux (either x86_64 or ARM64 architecture). Basic command-line knowledge. Install Install dependencies: sudo apt update sudo apt install git default-jdk Clone the Briar Mailbox repository: ...

October 14, 2023 · 2 min · 382 words · retiolus

Add a Custom Context Menu Option for Firefox in GNOME Shell

For a long time, I’ve been using both Firefox and Brave browsers to keep my “work” and “home” browsing separate. This setup worked, but it always felt cumbersome, and I longed for an easier way to switch between profiles in Firefox. My initial search led me to believe that Firefox didn’t have a straightforward option for this. Then I stumbled upon Profile Switcher for Firefox. This extension enables seamless profile switching in Firefox, much like Chrome’s profile switcher. It was a game changer! However, there was still one minor inconvenience: I had to first open the default profile and then select the desired profile from the browser extension menu. ...

October 13, 2023 · 2 min · 384 words · retiolus

Envoi d'une notification (ntfy) lors de certains événements dans les logs

Article original : Envoi d’un SMS lors de certains événements dans les logs Adapté pour ntfy par retiolus, dernière mise à jour : 2023-10-07 Je me sers de ce script pour “fliquer” un peu l’utilisation de ma machine personnelle qui est sous Linux. Je reçois donc une notification quand l’un des événements suivants se produit : Ouverture de session d’un utilisateur. Fermeture de session d’un utilisateur. Échec d’ouverture de session (mauvais mot de passe) C’est assez simple: On surveille le fichier /var/log/auth.log et quand certains événements sont détectés, on appelle ntfy CLI. ...

October 7, 2023 · 2 min · 392 words · retiolus

Com configurar l'Instant Replay a OBS

Última actualizació: 2024-01-25 Abans, utilitzava Windows com a sistema operatiu i disposava d’una targeta gràfica NVIDIA GeForce. Aquesta targeta gràfica té una funció molt útil anomenada “Instant Replay”. Aquesta funció permet enregistrar de forma contínua mentre jugues, i amb una simple combinació de tecles, pots guardar els últims minuts o segons del teu gameplay, cosa que és ideal per capturar moments destacats sense haver d’enregistrar tota la sessió de joc. ...

September 26, 2023 · 3 min · 429 words · retiolus

Millora la correcció gramatical a LibreOffice amb LanguageTool

Article original: Supercharge Grammar Checking in LibreOffice With LanguageTool Traduït per retiolus, útlima actualització: 2023-09-22 La popular suite de productivitat de codi obert LibreOffice inclou un corrector de gramàtica i ortogràfic integrat. Tanmateix, hi ha millors eines per a aquest propòsit. Una d’ells és LanguageTool. En aquest tutorial, veurem com es pot integrar LanguageTool a LibreOffice per a una escriptura millor i més precisa. Què és LanguageTool? LanguageTool és un corrector d’ortografia, estil i gramàtica multilingüe que ajuda a corregir o parafrasejar textos. Existeix una aplicació nativa de Java per a Linux, un editor basat en web, extensions del navegador tant per a Firefox com per a Chrome, etc. ...

September 1, 2023 · 3 min · 559 words · Sreenath

L'ascens de Linux: l'ús a Steam supera macOS per als jocs

Article original: Linux Rising: Steam Usage Surpasses macOS for Gaming Traduït per retiolus, útlima actualització: 2023-08-03 Hem assolit una petita victòria en l’adopció de Linux a Steam. Al llarg dels anys, els jocs a Linux han augmentat constantment gràcies a la introducció de productes com Wine, Proton i SteamPlay. Com sempre, Steam ha publicat recentment els resultats de l’enquesta del mes de juliol de 2023 i ens alegrem en veure que la quota de mercat de Linux s’ha desviat a l’alça en comparació amb els mesos anteriors. ...

August 3, 2023 · 2 min · 422 words · Sourav Rudra

Mastodon és fàcil i divertit, excepte quan no ho és

Article original: Mastodon is easy and fun except when it isn’t Traduït per retiolus, útlima actualització: 2023-08-01 Després de la meva última publicació llarga, he acabat en algunes converses frustrants, entre elles una on un noi del món del codi obert es burlava repetidament de la idea de poder aprendre alguna cosa útil de persones en altres xarxes, menys ideològicament correctes. En comptes de dir-li que anés a prendre pel cul, vaig parlar sobre les experiències al fedi (Fedivers) amb persones a Bluesky, on havia vist gent parlant tranquil·lament sobre com Mastodon és confús i estrany. ...

July 28, 2023 · 17 min · 3561 words · Erin Kissane

How to install Lemmy from Scratch (Ubuntu 22.04 LTS)

The following tutorial provides step-by-step instructions to install Lemmy, a link aggregator for the fediverse, on Ubuntu 22.04. It includes the installation of Lemmy backend, Lemmy UI (web frontend), and the configuration of a reverse proxy with TLS using Nginx. You should be able to install Lemmy without any errors. If you have any, please let me know. I intend to extend this tutorial to Lemmy upgrades, migration and deletion, and thus update the official documentation. ...

June 16, 2023 · 4 min · 725 words · retiolus

How to download your Mapilio uploaded tracks

As a contributor to OpenStreetMap and allergic to Google Maps, I’m still looking for an alternative to Google Street View. Numerous projects have emerged, such as Mapillary, bought by Facebook or Kartaview, abandoned (?) to raise the day on some scam, not contributing to OpenStreetMap. The last thing is Mapilio, although the project is quite recent and has not yet proved its worth (not open source and the way in which it would contribute to OpenStreetMap is not yet clear) I will not dwell on that today but rather on how to download the data (i.e. the routes/images) that you upload to Mapilio. ...

May 5, 2023 · 2 min · 383 words · retiolus

Com eliminar una pista d'àudio d'un fitxer de vídeo utilitzant ffmpeg?

Última actualització: 2023-04-27 Per eliminar una pista d’àudio d’un fitxer de vídeo utilitzant ffmpeg, pots utilitzar l’opció -map per indicar quines pistes s’han de mantenir i quines s’han d’eliminar. A continuació, et mostraré com eliminar la segona pista d’àudio d’un fitxer de vídeo utilitzant ffmpeg: Primer executa ffmpeg -i fitxer.mp4 per veure quines pistes hi ha al teu fitxer. Això mostrarà tota la informació del fitxer de vídeo o àudio, incloent-hi el nombre de pistes i els còdecs emprats per cada pista. Hauries de tenir un resultat semblant a aquest: ...

April 27, 2023 · 2 min · 303 words · retiolus