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>” ), […]
Author: Aymeric
Quoi voir à 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 […]
Determine an element `height` and `width` in CSS only and reuse it within another CSS rule
I found this technic on https://frontendmasters.com/blog/how-to-get-the-width-height-of-any-element-in-only-css/ – it only works on modern browsers (mainly Chrome and Edge) Let’s define the properties: @property –_x { syntax: “<number>”; inherits: true; initial-value: 0; } @property –_y { syntax: “<number>”; inherits: true; initial-value: 0; } @property –w { syntax: “<integer>”; inherits: true; initial-value: 0; } @property –h { syntax: […]
How to remove an account / leave an organization in MS Teams?
If in the top right corner of MS Teams, when you click on your profile picture, you see other organizations/accounts and you want to delete them: Go to the MS Teams Settings by clicking on the three dots next to your profile picture Go to Accounts and orgs Turn off or leave the org/account that […]
Investir dans des actions en bourse
J’ai regardé la vidéo de Nas Daily : https://www.instagram.com/reel/DAlPq4IO_Jh/ Et voici ce que je retiens : Préférer les entreprises qui sont là depuis longtemps, ou qu’on sait qu’elles vont être là pour encore 10 ans Préférer les entreprises dont le dirigeant est aussi le fondateur, et que vous appréciez (des services que vous utilisez, des […]
Faire des enregistrements récurrents avec OQEE
J’ai créé un service en ligne qui permet de simplifier les enregistrements avec OQEE : https://eeqo.kodono.info Il vous faudra être connecté au réseau de votre Freebox afin d’être reconnu. Ensuite, l’interface est simple à utiliser et vous permet d’enregistrement plusieurs programmes à la suite d’un coup, et créer un enregistrement récurrent sur au moins les […]