Johan Ronsse

  • Home
  • Projects
  • Blog
  • Bikepacking, deel 3: touring

    January 14, 2022 - Posted in bikepacking biketouring vakantietip

    (Ik schreef deze blog post vorige zomer maar om één of andere reden heb ik het nooit gepubliceerd, bij deze dus)

    Over bikepacking deel 2 heb ik nooit veel geschreven, want dat is een beetje misgegaan. De Instagram-volgers hebben dat kunnen volgen. Dat verhaal vertel ik misschien nog wel eens in de context van een MTB/bikepacking blogpost.

    Deze trip was een beetje een vervanger voor Pukkelpop. Dat was geannuleerd, en met de mislukking van bikepacking #2 had ik het gevoel dat ik nog geen echte vakantie had gehad.

    De zomer kwam op zijn einde, dus ik dacht: kijk, ik boek nog snel iets, en ik ga het wat makkelijker aan doen. Een trip naar Zeeland, met de fiets waarvan ik weet dat ie 100% te vertrouwen is.

    Deze trip werd meer een touring trip, als de definitie van bikepacking is dat je een tent bijhebt.

    Te vertrouwen (unlike my other bike)

    Het plan was om van Rotterdam naar Middelburg te Zeeland te fietsen, een 100-tal kilometer. En dan van Middelburg naar huis in Antwerpen; een 70-tal kilometer (dat toch eerder 85 bleek te zijn).

    Ik maakte het mezelf ook makkelijk met 2 hotelnachten, en met een theorie dat ik vooral de wind mee ging hebben (althans volgens Windy). Ik pikte de 2 enige dagen met wat zon-potentieel uit, boekte snel 2 hotelletjes en ging ervoor. Ik ging nog 2 nieuwe zakjes halen bij Bikepacking Belgium. Voor de kenners, het ging om een top tube bag en een snack bag van Apidura.

    Last minute voor het vertrekken maakte ik nog snel een route op RideWithGPS. Daar heb ik me laten verleiden tot een premium abo.

    De trip begon met een gesprek over fietsen met een Duits koppel op de trein (dat kost trouwens 12 euro, en zijn maar 4 plekken op de Intercity Brussel, en je moet vooral wat geluk hebben).

    Nu, in ieder geval: fietsen, het verbindt. De Duitsers wisten me te vertellen dat ik het niet-zo bekende fietsmerk Müsing moet checken, eens in de Moselstreek moet gaan fietsen, en dat ik een beter slot nodig had. Duitsers vol advies dus.

    Aangekomen in Rotterdam zette ik mijn fiets in het mini-achterkoertje van Le Marin Boutique Hotel (aanrader), en ging op resto met een vriend.

    De volgende dag kon het na een 20 tot 30-tal kilometer nette fietspaden echt beginnen: ik was aan de Haringvlietdam geraakt, één van de 13 deltawerken.

    Mijn fiets vs windmolen (dicht bij de Haringvlietdam)
    De Haringvlietdam

    Dat was impressionant, en even voorbij de Haringvlietdam kwam mijn wind-theorie helemaal in werking. Op bepaalde stukken rond Scharendijke vloog ik netjes mijn tegenliggers voorbij tegen 35km per uur.

    Na een snelle lunch bij een vrij forgettable resto op de zeedijk snelde ik verder naar de volgende attractie: de Oosterscheldekering.

    Dat was nog cooler dan de Haringvlietdam. Wat een staaltje engineering. Ze waren bezig met het opnieuw verven van het staal. Dat moest om de zoveel tijd gebeuren: roest verwijderen en opnieuw verven.

    Overzicht (van de andere kant)
    Detail.
    Een deel van een windturbine. Spacy!

    Na de Oosterscheldekering ben ik vrij snel in Middelburg geraakt, waar ik incheckte in alweer een prima hotel (Wood City hotel).

    Ik zocht een goed resto en na een hele zoektocht/wandeltocht door het stadje ben ik uiteindelijk gaan eten in het hotel zelf.

    Dat was me iets te chique voor dit type tocht, maar na ergens eerder in de dag rommeleten te hebben gegeten was het wel welkom. Het was allemaal wel heel goed gedaan.

    Foodie approved

    Over de 2e dag valt niet veel te zeggen: dat was vooral naar huis snellen. De dag begon met regen, en ik dacht: als ik zo snel mogelijk de eerste 30-40 kilometer doe, nu ik energie heb, dan ben ik halfweg voor de middag.

    Mijn theorie was dat er niet veel te zien was tussen Middelburg en Antwerpen. En dat bleek wel zo te zijn.

    Eén mini-stukje natuur

    De 2e dag heb ik mijn zadel wat hoger gezet en mijn nieuwe gewoonte van op mijn stuur hangen bij lange rechte stukken maximaal toegepast. Niet echt handig op een stuur zonder drop bars maar het gaat wel.

    Ik kwam rond de industriezone van de haven van Antwerpen een groep fietsers tegen, waar ik een tijdje achter ben gaan hangen. Efficiënt zo, en zo was ik wel heel snel thuis. Uiteindelijk kwam ik na 4 uur fietsen met minimale pauze aan in Antwerpen.

    Misschien zit er toch een koerser in mij.

    Geen slechte stats vind ik

    Ik ben zeker dat er een mooiere fietsroute was van Middelburg naar Antwerpen dan ik had gemaakt, want de standaard route ging van de ene gewestweg naar de andere, met af en toe een stukje natuur.

    Het is ergens logisch dat als je rondklikt rond de kust dat je bijna automatisch een goede route hebt, maar dat je in het binnenland een aaneenschakeling van gewestwegen en kleine paadjes rond boerderijen hebt. In Nederland is elke weg top onderhouden, dus de strategie om gewoon van locatie naar locatie te gaan met RideWithGPS is deze keer gelukt. Volgende keer (en in een ander land) ga ik iets specifieker moeten plannen denk ik.

    Nu ja. Met de deltawerken heb ik wel genoeg moois gezien. In het algemeen een geslaagde trip.

    Ik las op Insta dat er aan een extensie van ACT-2 wordt gewerkt. Hoera! Misschien iets voor de volgende keer. Benieuwd naar mijn 1e bikepacking avontuur waar ik deze route fietste – die over deze route gaat? Lees de post.

  • Checking for missing references when using custom properties

    December 8, 2021 - Posted in css webdev workflow

    When you declare a variable with SCSS, like so:

    $red: #FF0000;

    And you use it somewhere, but you make an error…

    .my-code {
      color: $redy;
    }

    …the compiler will warn you. In fact the project probably won’t compile.

    This prevents you from making a wrong reference. This type of bug is a “wrong reference bug” i.e. we are referencing the wrong thing.

    But if you use custom properties, you won’t know if you did something wrong. A color might just fall back to black or the body color and you won’t know if you did something wrong.

    :root {
      --red: #FF0000;
    }
    
    .my-code {
      color: var(--redy); /* This error won't be caught! */
    }

    I recently wanted to make sure I didn’t have any wrong references and had an idea. We can leverage the “fallback” aspect of a custom property to get a visual cue:

    :root {
      --red: #FF0000;
    }
    
    .my-code {
      color: var(--redy, hotpink);
    }

    What I do in practice is change all variable names temporarily to provide this fallback value (with a regex: replace var\(\-\-(.*)\) by var(--$1, hotpink)), then click through my project to search for anything that looks like the fallback color, in this case hotpink.

  • The 11 Figma plugins I immediately installed again on a new account

    September 30, 2021 - Posted in figma workflow

    When you create a new Figma account, all your plugins are gone. This creates an interesting situation where you’ll only install plugins that you actually use.

    The plugin list on my Mono Figma account is huge from trying things in the past and not cleaning it up. But my new freelance account, it’s clean. Here’s the first 12 plugins I installed:

    AutocropCrop the space around an image
    SimilayerFind similar layers based on properties
    RetextifierBatch edit text
    Feather iconsQuickly add feather icons. I should make something similar for Mono Icons I think…
    TinyFacesQuickly add in an avatar
    Restore image dimensionsGet the original image dimensions of a resized image
    QuantizerThis is my secret weapon to put items on a grid
    Variable width strokeCool for illustration work
    TextCutterMy own plugin to cut multiline text into pieces
    SmoothShadowBetter shadows
    Scale>>Better Kinda like Sketch’s scale tool

    Now I’m looking for a plugin to detach all named styles in batch. If anybody knows something, let me know!

  • Ten great movies

    September 26, 2021 - Posted in film top-lists

    I’ve been a bit dissapointed with the quality of series on streaming platforms. My solution to that: return to great cinema. Here’s ten great movies that were released between 2000 and 2020, in no particular order.

    • Ponyo (2008) – Directed by Hayao Miyazaki
    • Maps to the stars (2014) – Directed by David Cronenberg
    • Boyhood (2014) – Directed by Richard Linklater
    • A history of violence (2005) – Directed by David Cronenberg
    • Red Sparrow (2018) – Directed by Francis Lawrence
    • X2 (2003) – Directed by Bryan Singer
    • Leave no trace (2018) – Directed by Debra Granik
    • V for Vendetta (2005) – Directed by James McTeigue
    • Watchmen (2009) – Directed by Zack Snyder
    • Batman begins (2005) – Directed by Christopher Nolan

  • Interoperability dreams

    September 14, 2021 - Posted in computers interface os productivity - 1 comment

    I think one of the biggest problems in computing is transporting complex data from one app to another. Or put another way – manipulating the data that’s on your screen in a sensible way, regardless of the app that you are using.

    If I draw a table in Figma, and I have a few numbers, why can’t I make a sum from those? As an alternate solution, why can’t I copy-paste a table-like design, move it to Excel, and make calculations in a then-dynamic table?

    This concept of moving something from a “drawing app” to a “spreadsheet app” sort of works between Keynote, Pages and Numbers.

    If I make a table in Keynote, I can bring it back to Numbers, with calculations and all, but now the scale and formatting is messed up. But what Apple did here is the beginning of what needs to be done: all apps speak the same language. It doesn’t go as far as I want it to go, but it’s a start.

    I dream of a computing world where one app understands what certain objects are and what you want to do. We have had copy/paste between apps since forever, but it’s too simple.

    Notion has a concept of blocks. These are also another start but you are locked inside Notion.

    If you copy paste out of Notion, you get workable markdown. That’s good, but what if I want to keep  continue my work in Pages?

    In Figjam, you can now import a CSV as a series of sticky notes.

    That’s cool, but I have the feeling that all these small bits and pieces took a lot of engineering work – by people who want to do well. One afternoon a few weeks ago I went deep into MIME types and how the pasteboard can contain different sorts of things. It’s a rabbit hole really. 

    It also seems quite limited what you can actually because it seems to me you kind of have to parse things on the spot to try and make it meaningful again (in your app). If anybody knows more about this, has a good resource… do tell!

    My conclusion at this point in time is that this is really a problem that needs to be solved at the OS level. Apps need much more advanced APIs to be able to talk to each other.

    The pasteboard needs to evolve to understand that it’s carrying a spreadsheet with formulas, or an image with an edit history.

    What happened in recent years is that instead of solving the problem we now have two problems. On desktop we have the aforementioned poor copy/paste. On mobile we have a logic with share sheets and intents, with a filesystem that is abstracted away. It’s super unclear where your data lives and if you are going to move data from one app to another, it’s a bunch of guesswork what is actually going to happen.

    I wish more work would be done in this space.

  • End of an era

    September 6, 2021 - Posted in entrepreneurship mono nederlands ondernemen persoonlijk professioneel reflectie

    We hebben het vandaag officieel aangekondigd: Mono stopt ermee. Ik schreef in de blog post dat het wat zwaar aanvoelde. En dat is ook zo.

    Sommigen vinden dit een moedige beslissing, om op een hoogtepunt te stoppen. Dat is leuk om te horen. Ook de complimentjes over Mono zijn tof.

    Maar ergens voelt het ook wel aan als een beetje opgeven. Ik heb hier erg mixed feelings over. Xavier en ik hebben het zoveel gehad over een bedrijf uitbouwen met een mooie cultuur dat het lang volhoudt. Zeven jaar is mooi maar nu ook niet erg lang.

    Ik ga nu terug een stukje freelancen, en rondkijken welke uitdagingen er allemaal zijn om aan te pakken.

    Mensen vragen – wat ga je nu doen? Sowieso blijf ik gepassioneerd door de dingen waar ik voorheen al gepassioneerd over was. De mix tussen design en development; een stukje management.

    Ik wil iets doen met genoeg uitdaging, iets ondernemends, iets waar ik mijn ei kwijt kan. Op een hoog niveau en waar het project dat je maakt ook effectief tot uiting komt. Dat wordt flink zoeken, denk ik.

  • Computer says no

    August 21, 2021 - Posted in computers rant

    De meeste mensen gebruiken hun computer omdat het moet, en ik denk dat ik stilaan ook zo ga worden. Want de laatste weken hebben de computers zoiets van: FU Johan, we gaan u gewoon een beetje tegenwerken.

    • Mijn Withings horloge is gestopt met werken, de minuutwijzer draait niet meer. Een week in rijst leggen brengt geen soelaas. Weer een apparaat voor de IoT graveyard.
    • Mijn iPhone SE2 heeft ‘s avonds vaak geen batterij meer, terwijl ik ‘m overdag amper gebruik. Mind you, dit is een GSM die 5 maanden in gebruik is.
    • Mijn Apple Notes app heeft een gigantische memory leak die er basically voor zorgt dat mijn iPhone niet meer functioneert. Er blijft altijd maar storage ingenomen worden waardoor ik uiteindelijk geen plek heb op m’n phone, terwijl er eigenlijk meer dan genoeg plaats is.
      • Ik ben nu overgeschakeld ben op Bear maar vind het niet helemaal je-dat. Ik zou eigenlijk gewoon graag bij de officiële notes app blijven.
    • Dan op de echte computer, Alfred en Google Drive zijn geen goede vriendjes, en ik heb er 2 weken over gedaan om een halve oplossing te vinden. Ik zet ook vaak links naar Google Drive folders in de Finder zijbalk voor easy access, maar die verdwijnen telkens. Gelukkig heeft Xavier daar een truukje voor met aliases, dat ik nog eens moet proberen.

    De computers, ze zijn precies op zomervakantie. En mijn geduld om elk klein software probleem te gaan researchen is ook een beetje op. Vroeger ging ik daar nog achter en spendeerde ik uren om zo’mn dingen te fixen.

    Ik snap Rasmus als hij zegt dat hij bij OSX10 blijft in plaats van 11, omdat je daar nog enige controle blijft hebben over je computer bij problemen. Alle problemen die hierboven beschreven zijn, zijn het gevolg van matige software.

    Je zou denken dat dingen vooruit gaan, maar ze gaan ook achteruit. Ik word misschien gewoon “nen oude mens”. Maar mensen moeten ook maar deftige software schrijven gvd.

  • Google Drive for Desktop v50: manual reindexing

    August 13, 2021 - Posted in reference workflow - 3 comments

    With the new Google Drive for desktop update, Alfred stopped working. I rely heavily on Alfred to find files, to move to deep folders quickly etc.

    For reference here is the version I am using:

    I think reason it doesn’t work is because Spotlight doesn’t index the drives anymore. You can solve this by running:

    sudo mdutil -i on /Volumes/GoogleDrive*

    This should output something like:

    /System/Volumes/Data/Volumes/GoogleDrive:
    	Indexing enabled. 

    Unfortunately you have to do this every time you reboot your computer. Yeah, I know :/

  • Designers: please use rectangles for borders, not lines

    August 9, 2021 - Posted in design figma interface rant workflow

    To draw a line, use the line tool. Sounds logical, doesn’t it?

    However, since year and day, I’ve avoided using the line tool and I don’t think I am the only designer to do so.

    If you’re using a line for a border, do yourself a favor, and just draw a rectangle instead. What you’ll get in return: maintainability. Precision.

    This is for a Figma context but I remember doing the exact same in Sketch.

    Why? It will most always be perfectly on the pixel grid, unless you started manipulating the exact values or did some kind of weird transform.

    You can also use ⌘ (or Ctrl if you’re on Windows) plus the arrow keys to change a 1 pixel line into a 2 pixel line very fast. No need to go into a side menu.

    I love direct manipulation and I’ll use any workflow that allows me to manipulate the canvas directly. I love to hide Figma’s UI and do a lot of design work without every going into a menu.

    So dear designers. Use rectangles for borders, not lines.

    For the inner shadow people…

    Some designers think they are clever and use an inner shadow to prevent the pixel being off-center.

    Stop the madness! Who wants to open a lil’ popup and manipulate popup with 7 fields  to make sure that you have a line somewhere? 

    Plz avoid

    No one ;)!

  • ACT-2: my first bikepacking adventure

    July 26, 2021 - Posted in bikepacking vakantietip

    A few notes from my first bikepacking adventure.

    Setup: from fromt to back. Drybag from diving a few years ago, stuffed with small sleeping bag + small inflatable mat. Strapped to front with a few camping straps. Ortlieb frame bag, Decathlon bike bag on top of that, 2 drinking bottles below. 1 Ortlieb back pannier bag, tent poles on rack. Tent: just a cheap Decathlon Quecha tent in the pannier bag. Bike: Trek L500 carbon drive (a good city bike really)
    Front detail. I bought a quad lock to put my phone on. The decatlon bag holds the phone charger to keep the phone charged because riding with GPS all day consumes a lot of battery.
    Whoops. Pushing through the sand. The times I wished I had a MTB (I now see the rideable stretch on the left)
    Kyoto bamboo forest vibes in Lichtaart
    Somewhere in ‘nam. Euh, Mol.
    <3


    Cross-posting my comment to the ACT-2 bikepacking route.

    Thanks for this route Berten!

    This was my first bikepacking adventure. I had a lot of fun taking it on this weekend. I started at home in the morning. Left 9:30 in Antwerp, went to Schilde, passed by the Sas4 tower and the nearby bar, then slept at the mentioned camping. I managed to arrive at 17:00. Next time I think I will go a bit further in a single day.

    This route combines a lot of small forest roads in a neat way. I especially loved the singletrack MTB parts, through dense forests. One area in Lichtaart reminded me of Kyoto’s bamboo forest and another near Mol of a bridge in Vietnam. Who needs to go far when you’ve got these wonders near home?

    So next day ate at Roovertschje Leij around 14:00, popped into the nearby town Albert Heijn to get some new snacks to be able press on. By Sunday evening I got tired of pushing through the wet sand. It was raining on and off.

    I think I was close to Breda at the +-175km point. I Google mapped my way to home, with a boring stretch of 50km Bredabaan. Laid on my bike as I pedalled away to get home 9PM. I am not an experienced biker and I really struggled to take the dirt roads in a faster way.

    I did this on a city bike with a carbon belt and one pannier bag. I’m happy I did not take two. It’s doable but next time I am taking a MTB :’). Had to absorb a lot of bumps and the loose sand in places had me either pedalling like crazy to keep velocity or sometimes having to step off to push through the sand. All in all worth it for some incredible sights.


    Vital stats:

    • Distance: 225km
    • Riding time 13:55 hours
    • Average moving speed: 16,2km/h
    • Max speed: 34km/h
    • Elevation: +453m/-440m
    • Liters of water drunk: at least 7
    • Friendly camping people: 14
    • Most marginality seen in a single kilometer: Brasschaat on a Sunday evening
← older
newer →
  • ©2025 Johan Ronsse
  • X
  • Mastodon
  • Portfolio 2024