Skip to content

Instantly share code, notes, and snippets.

@AnnoyingTechnology
AnnoyingTechnology / Bootstrap-4-blurred-modal.css
Last active May 4, 2024 21:53 — forked from webprogramozo/blur.css
Bootstrap modal with blurry background
/* blurred background modal for bootstrap v4 */
body.modal-open > :not(.modal) {
-webkit-filter: blur(5px);
-moz-filter: blur(5px);
-o-filter: blur(5px);
-ms-filter: blur(5px);
filter: blur(5px);
}
@AnnoyingTechnology
AnnoyingTechnology / lenovo_legion_y530_linux_compatibility_issues_fix.md
Last active April 19, 2024 00:15
Lenovo Legion Y530 Linux issues and solutions for wifi and touchpad mostly (Debian & Ubuntu)

Intel i7-8750H nVidia GTX 1050 Ti

Summary of my findings (Please comment if you can get further than me) :

edit: 06/2019 guys in the comments have found workarounds and new solutions !

Most importantly : Lenovo refuses to provide any kind of support for their product on Linux, even though the computer is sold without an OS

Ubuntu 18.04

@AnnoyingTechnology
AnnoyingTechnology / download_filemaker_server_19_20_lts_ubuntu.md
Last active April 12, 2024 12:40
Download Filemaker 19.5 Server Ubuntu 18LTS
@AnnoyingTechnology
AnnoyingTechnology / debian-security-tools.sh
Last active April 12, 2024 09:57
Install debian basic security utilities. You still need to configure some of those, and a lot of other things have to be manually tweaked across a system to keep it secure.
#!/bin/bash
# !!!!!!!!!!!!!!!! DISCLAIMER !!!!!!!!!!!!!!!!!!!!!
# !! THIS WILL NOT SECURE YOUR SYSTEM ON ITS OWN !!
# !! Most of these tools should be set up and/or !!
# !!!!!! ran by a cron with proper repporting !!!!!
# update apt
apt update
# rkhunter : rootkit scanner
apt install rkhunter
# chkrootkit : another rootkit scanner
You are addressing an experienced REDACTED-year-old sysadmin with REDACTED and basic understanding of most non-IT technical fields.
For non-IT related questions, answer based on scientific literature, considering their endless curiosity for atypical, surprising, complex, or scientifically beautiful topics.
Write casually and informally, except for legal or threatening letters. Be concise, to the point, and do not recontextualize or reframe unless necessary.
Use only the metric system when providing units and avoid junior-level or obvious explanations.
You may delve deeper when appropriate and speak in English and French only.
Always give your absolute best.
@AnnoyingTechnology
AnnoyingTechnology / Apple's SuperDrive tweak for use with Linux.md
Last active March 6, 2024 22:53
Make Apple's USB SuperDrive work on Linux

I was ready to throw it away, I opened it up and didn't find anything wrong with it. After a quick Google Search, turns out Apple fucked up their users (again) and locked this drive to only one laptop : the MacBook Air.

Bellow is the tweak (found online) to make it usable on Linux

# Debian/linux only - Linux SCSI generic driver
sudo apt install sg3-utils -y
@AnnoyingTechnology
AnnoyingTechnology / vegan-ballistic-gel-agar-agar-as-ballistic-gel.md
Last active December 19, 2023 13:24
Vegan ballistic gel (Agar-Agar as ballistic gel)

Receipe for vegan ballistic gel

This is a draft

Ballistic gel is often made out of gelatine, which is a produce scrapped from dead pigs bones.

It is possible to make ballisic gel without hurting animals by using Agar-Agar, a polymer extracted from seaweed.

Agar-Agar also has the advantage of being re-usable. By bringing it again above 90°C.

@AnnoyingTechnology
AnnoyingTechnology / camera-cafe-dvd12-.txt
Created June 26, 2023 14:13
Transcript using OpenAI medium model
... Hervé, tu peux m'offrir un café ? Ouais, en quelle heure ? Maintenant, t'es morte. Oh bah ça, c'est l'excuse la plus bidon que j'ai entendu pour se faire offrir un café, ça, dis-donc ! Je te jure, Hervé. Oh dis-donc, ça va, hein ? C'est odieux, ces méthodes ! ... Ouais, enfin bon, je te rappelle quand même que c'est au nombre de lait que je paye, alors... En souvenir de la soeur de ma mère qui me manquera plus que tout le monde, c'est long, quoi. Et à la soeur de ma mère que j'ai tant chérie, c'est pas mal, ça, non ? Ouais, mais c'est encore un peu long, ça me coutait cher et... Et on va faire plus, hein, voilà. Et bah, dis-je à la soeur de ma mère, c'est qui ? C'est ma tante, ok ? Donc, pour ma tante adorée, c'est bien, ça, ça fait combien, Nath ? Ça fait 17 ? Oui, c'est ça ! Je me jette à peu près à 6-7. Oui, bon, bah et à ma tante tout court, ça sera moins cher. Bon, dis-moi, est-ce que tu l'aimais, tatata ? Oh, je l'adorais, moi que ma mère, mais je l'adorais, ma tante. Bon, et bah, à toi. Bah, ça y
@AnnoyingTechnology
AnnoyingTechnology / convert-mailcow-maildir-to-eml
Last active April 3, 2023 12:31
Decrypt and decompress Maildir emails from Mailcow
#!/bin/bash
# Check if all arguments are provided
if [ $# -ne 3 ]; then
echo "Usage: $0 <dir_to_scan> <output_folder> <private_key_path>"
exit 1
fi
# Set the input and output folders and private key path from the command line arguments
dir_to_scan="$SCRIPT_DIR/$1"