Cyrille Legrand's Avatar

Cyrille Legrand

@cyrillusmaximus.bsky.social

And if you hear as the warm night falls A silver sound in a tongue so strange Sing to me, sing to me… —— Prog & Punk Bière & Bouffe Vélo & Astro Daron & Dev iOS Aligné à gauche (comme ce texte) Since 1983 Amiens // français, english, picard

153 Followers  |  509 Following  |  60 Posts  |  Joined: 28.10.2023
Posts Following

Posts by Cyrille Legrand (@cyrillusmaximus.bsky.social)

J’ai tellement envie de la prendre avec Bravely Default.
Mais j’ai tellement d’autres frais à assumer avant :/
On verra à Noël…

29.05.2025 09:48 — 👍 1    🔁 0    💬 1    📌 0

Rien ne peut te préparer à imaginer la fin.

23.05.2025 07:24 — 👍 0    🔁 0    💬 0    📌 0

Hatchi.

23.05.2025 07:19 — 👍 0    🔁 0    💬 1    📌 0

Idem à Amiens par contre le rayon vélo est immense et occupe à vue de pif 20% de la surface totale, tout le fond du magasin où avant étaient relégués les rayons beauf (aka chasse et pêche)

15.05.2025 22:03 — 👍 3    🔁 0    💬 0    📌 0

I know, even at Apple different teams have different conventions.

On my team we always use `A: B`, but we never mind about it when writing it because everything gets correctly formatted with swiftformat before every commit.

25.04.2025 10:01 — 👍 2    🔁 0    💬 0    📌 0

It depends: if it’s a French type you follow French typography rules.

Struct Baguette : Bread { … }

25.04.2025 09:54 — 👍 5    🔁 0    💬 1    📌 0
Post image

Just drop the `let rank =` and `return rank`.
There's also the switch version that's nicer to read IMHO.

17.04.2025 11:10 — 👍 1    🔁 0    💬 0    📌 0

T'as qu'à pas faire des recherches à lacon.

07.04.2025 13:27 — 👍 3    🔁 1    💬 1    📌 0
Preview
Préfixe Bloqueur – Applications sur Google Play Blocage appels spam : Protégez-vous efficacement.

J'ai entendu du bien de celle-là sur Android : play.google.com/store/apps/d...

07.04.2025 11:02 — 👍 1    🔁 0    💬 1    📌 0

Begone sur iOS (et Android aussi je crois), gratuit, fonctionne très bien.

07.04.2025 10:24 — 👍 0    🔁 0    💬 1    📌 0

Je suis religieux aussi, voici la Sainte Trinité

02.04.2025 17:57 — 👍 2    🔁 0    💬 0    📌 0
Preview
Poisson artificiel Ça y est, tout le monde a généré sa petite image Ghibli et s’est senti pousser les ailes d’un artiste ? On peut revenir un peu sur Terre et parler de vrais problèmes, ou bien ?

Poisson artificiel www.legorafi.fr/2025/04/01/p...

01.04.2025 08:02 — 👍 866    🔁 502    💬 27    📌 96

Ping !

01.04.2025 06:18 — 👍 0    🔁 0    💬 0    📌 0
Capture d’écran du site pollens.fR expliquant la fermeture du RSNA (et donc du site) par arrêt des financements publics

Capture d’écran du site pollens.fR expliquant la fermeture du RSNA (et donc du site) par arrêt des financements publics

Quel est l’enfant de 🤬 qui a signé la fin des financements publics au RNSA ? Comment on va faire maintenant les allergiques ?
#pollens

28.03.2025 18:50 — 👍 1    🔁 0    💬 0    📌 0
"A computer can never be spiteful or horny
Therefore a computer must never make art"

"A computer can never be spiteful or horny Therefore a computer must never make art"

Reminder

28.03.2025 03:20 — 👍 14839    🔁 3900    💬 9    📌 3
extension UIImage {
    public convenience init?(webpData data: Data) {
        // Check for webp magic signature: RIFFxxxxWEBP
        // (xxxx is the size of the first chunk and can vary)
        if data.underestimatedCount > 12,
           Data(data[0..<4]) == Data([0x52, 0x49, 0x46, 0x46]),
           Data(data[8..<12]) == Data([0x57, 0x45, 0x42, 0x50]),
           let src = CGImageSourceCreateWithData(data as CFData, nil),
           let cgImage = CGImageSourceCreateImageAtIndex(src, 0, nil) {
            self.init(cgImage: cgImage)
        } else {
            self.init(data: data)
        }
    }
}

extension UIImage { public convenience init?(webpData data: Data) { // Check for webp magic signature: RIFFxxxxWEBP // (xxxx is the size of the first chunk and can vary) if data.underestimatedCount > 12, Data(data[0..<4]) == Data([0x52, 0x49, 0x46, 0x46]), Data(data[8..<12]) == Data([0x57, 0x45, 0x42, 0x50]), let src = CGImageSourceCreateWithData(data as CFData, nil), let cgImage = CGImageSourceCreateImageAtIndex(src, 0, nil) { self.init(cgImage: cgImage) } else { self.init(data: data) } } }

Want UIImage to support loading WebP images? There you go. Available since iOS 14.

#swift #ios

27.03.2025 11:15 — 👍 2    🔁 0    💬 0    📌 0

Faut voir les casseroles que se traîne l’auteur.

23.03.2025 21:52 — 👍 3    🔁 0    💬 0    📌 0

The problem with SwiftUI is that you can write such wonderful stuff in such little time, that you quickly forgot about them after another round of other wonderful stuff.

20.03.2025 21:58 — 👍 2    🔁 0    💬 0    📌 0

Votez Café.

17.03.2025 08:03 — 👍 2    🔁 0    💬 1    📌 0

Geez I’m even more eager to take a look at it now. Gotta love hacky solutions that yield a final, elegant, one-liner solution.

15.03.2025 17:25 — 👍 1    🔁 0    💬 1    📌 0

I’m wondering which technique did you use, both for SwiftUI and for UIKit if I read your screenshot correctly. Is there any kind of environment override for SwiftUI? I managed to perform quite the same but it’s not a one-liner and requires cumbersome modifiers to each and every Text().

15.03.2025 17:22 — 👍 1    🔁 0    💬 1    📌 0

Really curious to see how you manage to do this!

15.03.2025 15:01 — 👍 1    🔁 0    💬 1    📌 0
Video thumbnail

Attendez la limitation de durée qui passe à trois minutes ça veut dire qu'on peut désormais poster cette vidéo dans son intégralité......

14.03.2025 08:21 — 👍 828    🔁 540    💬 14    📌 53
David Gilmour - Coming Back to Life (Live at Pompeii 2016)

David Gilmour - Coming Back to Life (Live at Pompeii 2016)

Mood du soir. Ce monsieur est un de mes dieux vivants. Non mais écoutez-moi ce solo… 😭

song.link/i/1260001593

12.03.2025 22:27 — 👍 1    🔁 0    💬 0    📌 0

Hypnos 69 - Castle in the Sky

song.link/i/1674904724

06.03.2025 21:35 — 👍 0    🔁 0    💬 0    📌 0

Petite découverte #rock #psyché de la semaine : Hypnos 69 - Halfway to the Stars

song.link/i/1659026202

06.03.2025 21:33 — 👍 0    🔁 0    💬 1    📌 0
Couverture de l'album "Martine pose sa dém'"

Couverture de l'album "Martine pose sa dém'"

Trop facile

06.03.2025 11:55 — 👍 11    🔁 1    💬 0    📌 0
Preview
‎KIABI Mode & Home à petit prix ‎SHOPPING KIABI : NOUVELLE VERSION DE NOTRE APPLI MODE & DECO Plus simple, plus rapide, plus performante : vivez une expérience shopping réinventée avec la nouvelle version de l’appli Kiabi ! Et touj...

Dix mois de boulot pour sortir aujourd'hui la plus jolie app sur laquelle j'ai eu la chance de bosser, avec une team de folie pleine eud'gens de ch'Nord, de bière et d'amour. Merci les copains <3
(Et vive SwiftUI MV)

04.03.2025 15:50 — 👍 3    🔁 0    💬 0    📌 0

Et il arrive quand le chicon, bordel ?

03.03.2025 20:01 — 👍 2    🔁 0    💬 0    📌 0