For a few months, there is a new way to display a new form for a SharePoint List, using Microsoft Forms: This kind of form can be useful for intake requests or surveys. But how to pass a parameter in the URL to apply it to a field in the form? Here is the solution […]
Author: Aymeric
Mise à jour d’un serveur Kimsufi (OVH) depuis Debian 11 (Bullseye) vers Debian 12 (Bookworm)
Cette mise à jour est similaire à ce qui a pu être fait précédemment. Je vais essayer d’expliquer brièvement les étapes à suivre. D’abord s’assurer de la version actuelle de Debian avec la commande suivante : lsb_release -a On vérifie les problèmes liés à la mise à jour. Il est recommandé d’utiliser le programme /usr/bin/script […]
Quoi faire en Thaïlande (Bangkok, Chiang Mai et Koh Yao Yoi) ?
Voici un retour d’expérience suite à notre séjour en janvier 2025. À savoir La carte bancaire est peu acceptée là bas, il faudra donc prévoir du cash. Prévoir des chaussures faciles à enlever/mettre car on doit se déchausser dans tous les temples ! Concernant les tenues dans les temples, il est en général accepté que […]
AndroidManifest.xml from ADB
It’s possible to find the AndroidManifest.xml file for an app using its APK (e.g. from APKMirror) and then with the help of a tool like jadx, but we can also connect to the Android device using adb connect, and then we use adb shell dumpsys package PACKAGE_NAME (e.g. “com.netflix.ninja” is the package name for Netflix). […]
Power FX: Dynamically access an object property with a variable
I’m kind of new with Power Apps, and it’s been very difficult to find how to access an object property using a variable. In a nutshell, here are to access it: With( { tempData: ParseJSON(JSON(ThisItem, JSONFormat.IgnoreBinaryData & JSONFormat.IgnoreUnsupportedTypes)) }, Concat( ForAll( ColumnArray As ColumnName, ColumnName.Value & “=>” & Column( tempData, ColumnName.Value ) & “<br>” ), […]
Quoi faire à Singapour ?
Voici quelques recommandations de visites à Singapour : Clarke Quay : placé au bord d’un canal, vous y trouverez plein de restaurants et bars, une sorte de food court avec de petits bâtiments colorés et qui est très animé, surtout le soir. Depuis ce port, il est possible de prendre un bateau qui vous emmènera […]
Recevoir des alertes lors de la diffusion d’un programme
Trop souvent je loupe des émissions TV que j’aime bien (comme “Qui veut être mon associé ?”, “Rendez-vous en terre inconnue”, …). J’ai cherché un service sur le Net qui me permettrait de recevoir un email lorsque mon émission préférée était diffusée, mais je n’ai rien trouvé. J’ai donc créé https://alerte-tv.kodono.info/ qui permet d’être tenu […]
Utiliser un VPN sur l’iPad via un serveur Debian
Je vais expliquer ici comment installer un serveur VPN WireGuard sur Debian et l’utiliser depuis un iPad. 1. Serveur Debian Sur le serveur, on installe WireGuard avec apt install wireguard -y. 2. Générer la clé privée et publique du serveur Pour cela, on va faire : sudo wg genkey | sudo tee /etc/wireguard/server_private.key sudo cat […]
Animated favicon in Chrome/Edge
To animate a favicon with Chrome / Edge, we can create an animated canvas and a web worker. See the Github repository I created about it.
Remove lazy loading for a custom SPFx webpart
SharePoint Online is doing lazy loading when we hit a page with webparts. If you created a SPFx webpart, and if it’s not visible right after the page load, then it will only be loaded once the user scrolls to it… To remove this behavior, and load the webpart as soon as possible, you must […]