1. Oh aperture, where art thou?

    • Capture One Pro - great but can’t justify the subscription cost.
    • Adobe Crap - Allergic to Bullies.
    • Nitro - UI / work flow sucks
    • Luminar Neo - UI / work flow sucks
    • DXO - No Fuji X-trans
    • Darktable - horrible UI
    • Photomator - bought by Apple
    • Dehancer plugin
    • darkroom - only apple photos?
    • RawTherapee - Open Source
  2. <script is:inline data-astro-rerun>
      (() => {
        const nav = document.querySelector(".Header");
        if (!nav) return;
    
        let lastScrollY = window.scrollY;
        let ticking = false;
    
        function onScroll() {
          const currentScrollY = window.scrollY;
    
          if (currentScrollY > lastScrollY) {
              nav.classList.add("hide");
          } else {
              nav.classList.remove("hide");
          }
    
          lastScrollY = currentScrollY;
          ticking = false;
        }
    
        const scrollHandler = () => {
          if (!ticking) {
              window.requestAnimationFrame(onScroll);
              ticking = true;
          }
        };
    
        window.addEventListener("scroll", scrollHandler);
    
        // 💡 Clean up on navigation
        document.addEventListener("astro:before-swap", () => {
            window.removeEventListener("scroll", scrollHandler);
        });
      })();
    </script>

    CSS

    nav {
      transition: transform 0.3s ease;
    }
    nav.hide {
      transform: translateY(-100%);
    }
  3. @view-transition {
      navigation: auto;
    }
  4. Datastar is a unique framework that enables developers to build reactive web applications while leveraging the simplicity of server-side rendering. It combines the benefits of a full-stack Single Page Application (SPA) with the ease of building server-rendered HTML, giving developers more flexibility and performance.

    Key Features:

    • Reactive Web Apps: Datastar allows you to build highly dynamic, reactive applications while keeping the benefits of server-side rendering.
    • Hypermedia Support: Datastar embraces the hypermedia-driven architecture, allowing you to easily integrate dynamic interactions with minimal JavaScript.
    • Server-Side Rendering (SSR): Datastar ensures a fast and SEO-friendly approach to web development by rendering pages on the server first, before progressively enhancing the client side with interactive behavior.
    • SPA-like Experience: Despite leveraging SSR, Datastar enables you to build apps with the interactivity commonly associated with full-fledged SPAs, making it a powerful tool for building dynamic content-driven websites.
  5. Glassworks Amsterdam

    Glassworks Amsterdam was an agency that offered high-end digital animation and visual effects expertise for the production of creative content, from commercials, film and promos to digital material and print media.

    Update — 2026

    I came across this old note in my archive and checked what happened to the company.

    Glassworks eventually closed after what it described as exceptionally challenging market conditions in the visual effects industry. The London office, which was initially expected to continue operating, also closed later.

    The old Amsterdam domain now redirects to a page about Glassworks on Hotel Amsterdam’s website, although the Glassworks name and logo are still there. An odd little remnant of an agency that no longer exists.

    It’s also a nice reminder of how much the web — and the design and VFX industry around it — has changed since 2015. The original site apparently even required the Flash plugin.

  6. Tokyo, Japan

    After a fair bit of research – read: using Google and Wikipedia – I found out a few things about Ebisu Station here in Tokyo. First of all, I go there now and then and the station’s melody always makes me smile – and sometimes even do a little dance.

    Yebisu, Ebisu, gods & beer

    Ebisu Station was apparently built by the local beer brewery Yebisu, which in turn was named after a Japanese god.1

    Now, it turns out the melody – known as Ebisu Theme locally and used in Yebisu beer commercials – isn’t Japanese at all. It’s actually written and performed by an Austrian guy named Anton Karas.2

    He happened to be playing in a beer garden when film director Carol Reed stumbled upon him and used his music for the 1949 film The Third Man, starring Orson Welles.

    The Third Man theme

    Here is a video showing the opening credits of The Third Man, featuring Anton Karas’ tune:

    Ebisu Station, Tokyo, Japan

    Footnotes

    1. Wikipedia: Ebisu Station

    2. Wikipedia: Ebisu Melody

  7. It must have been sometime in the 80’s when I first saw a computer. Of course I’d seen calculators and even a game console before, but a computer was something else.

    back to the future

    My earliest memory of seeing and actually touching a computer is one that takes me back to the street I lived and grew up in, in Limbricht, a little village in the south of The Netherlands.

    It was the boy who lived two houses next to ours, who owned the obscure device, and that fact alone practically made him my best friend of the moment.

    Heck. He was the whole neighbourhood’s best friend of the moment.

    ZX Spectrum Microcomputer, Sinclair, 1982

    zx sinclair

    Image courtesy of Computer History Museum.

    After this I had a few other new best friends of the moment who had a Commodore 64 and an Atari.

    Sony Hit Bit MSX

    hitbit computer

    Image courtesy of Computer History Museum.

    This was the first computer I actually owned. It had a cartridge for games and also a separate tape recorder to load and save programs. (This was before the term Applications was hip to use, leave alone Apps)

    I remember playing the first Metal Gear on this with a friend. Lots of sleepless nights. Also, I remember writing simple BASIC on this, creating question games and even venturing into having an image (sprites anyone?) move across the screen controlled by a joystick.

    BBC Microcomputer System

    bbc computer

    Image courtesy of Computer History Museum.

    When I went to high school around 1985/1986 we had a designated computer room full of these British computers by Acorn. A little later I would actually own an Acorn Archimedes and an Acorn RISC PC.

    These were awesome machines. The RISC OS was unlike anything at the time. Trouble was, there were not many developers creating software for it. It died a slow death.

    fast-forward. the 90’s.

    During the nineties – I was still studying Film Studies – I had a Dell PC with Windows XP. I blame Microsoft for the fact it took me 8 years to earn my Master’s degree. Slow…

    back to the future part II

    Now, back in the present time, well as of 2008, I switched to an iMac and never looked back.

    Until I wrote up this little micro history that is…

  8. Not too long ago while wandering about, I came across this lovely bike shop in the Arab St. area in Singapore. The bikes are originally from Tokyo – hence the name.

    Their website was a nice surprise. It looks just as great on an iPad as it does on desktop. It was done by a local company called plate interactive.

    38-01 Haji Lane, Singapore 189231

    website

  9. Note to self: Apple blocks the use of ‘autoplay’ for HTML5 audio on iPhone.

    I agree that autoplay on websites is rather an annoying thing but maybe browser makers should just offer this as a browser setting. Default to off.

  10. So. It is more than 5 years after I wrote about this, and we’re still here having the same issue. Worse, there’s a lot of misconception about this. There are plenty of blogs out there saying it is a browser issue and some even say it’s a webfonts issue.

    Most of the time the solution they provide is to add a rule to your CSS:

    -webkit-font-smoothing: antialiased;

    Thing is this only works for webkit browsers. Firefox actually removed support for font smoothing.

    On top of that this so-called solution is not solving the actual problem. The problem is an OS issue. A Mac OS X issue, and it has been for years.

    Back in 2008 when I first wrote about this, the only article I found discussing this issue was by Jason Patterson. The forum discusses Mac OS X’s sub-pixel AA and Patterson takes the opportunity to claim there’s a bug in Mac OS X’s sub-pixel AA rendering for white/light text on black/dark backgrounds. He also did a thorough test which you can see on his site.

    Mac OS X White/Light Text Sub-Pixel Antialiasing Bug by Jason Patterson.

    As shown in the article this is a setting in Mac OS X, and it affects the whole OS GUI, not just browsers. You can test it with TextEdit for instance.

    Before Mac OS X Lion there were multiple options for the font smoothing setting but since Lion the default setting is again to have ‘lcd Font smoothing when available’ checked. (System Preferences -> General) and now it is only a checkbox, on or off.

    Note that you need to restart the application in which you want to see the difference so if you uncheck the box and want to test in TextEdit, you need to restart TextEdit.

    Now what?

    So the default setting in Mac OS X is wrong but where does that leave us – web developers? Well, you can change the default to something you prefer (off is the only other option since Lion unless you use Terminal) but that way you’re not seeing what most people on Macs will see.

    So yes, I guess it is all right to use the CSS hack for font-smoothing, but we need to know what we are fixing here and that it is something we shouldn’t have to fix.

    Here are three more articles on this by Dmitry Fadeyev:

    And here is a quote from one of these articles that summarizes everything about this issue:

    There is only one main reason to disable subpixel rendering, and that is to display light text on dark backgrounds on OS X. Mac font rendering tends to butcher light fonts on dark backgrounds, making them spill out to the point of being illegible.

    screenshot

$ repo stats nilshendriks.com

languages

  • Astro: 53.7%
  • Vue: 14.3%
  • CSS: 9.9%
  • JavaScript: 9.7%
  • MDX: 9.6%
  • TypeScript: 2.7%
  • HTML: 0.1%
nilshendriks.com/notes/2