Hidde added a blog roll to his website. No, this is not 2006, it’s 2019 – but the blog roll is making a comeback! I made my own blog roll, which for now is just this blog post. I added some topical #hashtags to help you find something you like: CSS Tricks #css #frontend #dev […]
Last year I made a “best of” project and this year I wanted to do it again. You can view the “Best of 2018” website here. This is the making of blogpost in which I discuss which technical explorations I went through to get to the end result. Making these kinds of websites is not […]
Het einde van het jaar brengt vaak een moment van reflectie met zich mee: wat heb ik dit jaar juist gedaan, en waar gaat het naartoe? Professioneel had ik een zéér goed jaar. We zijn met Mono bezig met de juiste UI/UX design projecten voor de juiste klanten, en daar ben ik blij om. Ik […]
So, contrast. It’s one of the most important success criteria for passing WCAG. It was top of mind in this design project recently where a lot of the branding was orange, and the problem was that white text on orange buttons didn’t pass WCAG 2.1. The project was government-related and for a large audience so I […]
KBC is de 1e bank om de aanschaf van treintickets toe te voegen aan de mobiele app. Ik kan dit alleen maar toejuichen. De kwaliteit van de mobiele KBC app is erg hoog. Ik hoop dat ze dezelfde kwaliteit kunnen bewaren in deze ervaring. Ik meen dat het al langer mogelijk is om trein tickets te […]
I wanted to bind ⌥+⌘+T to be able to use macOS’s tags feature using a keyboard shortcut in Finder.app. The way to set it up is super vague, so I figured I would share that you need to do to make it work. First, set it up in System Preferences > Shortcuts. Attach the shortcut […]
I tweeted “Just self-host your things. External services can change the rules at any minute and they will.” This was mostly in response to people complaining about Flickr’s recent policy change, which limits free accounts to show the 1000 latest photos. It’s also sort of a retort against Medium, a service I have been using […]
In macOS Mojave, you can set your preference to dark UI. You can target this preference with CSS using code like this: @media (prefers-color-scheme: light) { body { background-color: #FFF; color: #000; } } @media (prefers-color-scheme: dark) { body { background: #000; color: #FFF; } } See this Codepen for a demo. This only works […]
Ik las voor de gemeenteraaadsverkiezingen in politieke folders dat Antwerpen de “City of Things” moet worden en dat wij de eerste moeten zijn met de uitrol van een 5G netwerk. Ik heb mijn bedenkingen bij de constante adoratie van technologie. Mijn boodschap is eenvoudig: bezint eer ge begint. Gedane zaken nemen geen keer. Als iemand die […]
Since a few weeks you can batch rename layers using regular expressions in Figma. This is pretty freaking awesome.