SELECT ARTICLE WHERE ARTICLE.AUTHOR = "Dafne Kiyui";

  1. You should probably use enum flags

    Enum flags are a clever optimisation technique that make use of bitwise logic operations paired with enumerated types that sadly see a lack of use in more modern codebases and languages such as JavaScript, in spite of enums being otherwise fairly popular in TypeScript.

    enum Guild {
      Mage,
      Rogue,
      Warrior …
  2. 4 years at Piktochart

    On , I served my final day at Piktochart. I spent 4 years and some change at the company, joining as a JavaScript intern and leaving a DevOp & backend engineer for Piktostory. Piktochart was my first “real” job and having spent a good part of …

  3. installing google-cloud-sdk on apple silicon m1 (early 2021)

    If you were to attempt to install google-cloud-sdk natively (via Homebrew) on Apple Silicon, you'd get the following error:

    $ brew install --cask google-cloud-sdk
    # etc...
    ==> Installing Cask google-cloud-sdk
    Beginning update. This process may take several minutes.
    ERROR: (gcloud.components.update) The following components are unknown [kuberun, anthoscli].
    ==> Purging files for version …
  4. how to fix the zsh setup on macos

    Apple has defaulted macOS to using the zsh shell since macOS Catalina. For many, the switch (if they weren't already using zsh) was as simple as running chsh -s /bin/zsh and everything would appear to be working just fine.

    On brand new Macs however, both the .zprofile and .zshrc …

  5. how to use a valid email when signing up for Sephora

    Please don't take anything in this article seriously.

    Gmail, Outlook, and Yahoo! Mail are popular options for creating incredible email addresses that will be compliant with most software and are allowed to bypass sophisticated spam filters as the following:

    <?php
    
    if (endsWith($sender, "gmail.com") ||
        endsWith($sender, 'yahoo.com') ||
        endsWith …
  6. how to migrate your GitHub repository to Codeberg

    The easiest way to migrate repositories is to simply change where your local repository remote points to. In a locally cloned repository, assert that you should have a git remote (usually named origin) by running git remote -v:

    origin  git@github.com:username/repository.git (fetch)
    origin  git@github.com …
  7. rewriting "night light slider"

    I'm the author of the Night Light Slider extension for GNOME Shell. When I originally authored the extension in late 2017, my intention was to simply add a slider, kin to the brightness slider, to manage the temperature of the GNOME Shell "Night Light" feature. A couple of feature requests …

page 1 / 2 »