Skip to content
View makakoa's full-sized avatar
Block or Report

Block or report makakoa

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. resume resume Public

    JavaScript 1

  2. braincryption braincryption Public

    Visual Encryption

    JavaScript 2

  3. hyptiotes hyptiotes Public

    Spring Loaded Web Framework

    HTML 1

  4. website website Public

    cameron-yee.com

    HTML

  5. Chunking heavy JS workloads with gen... Chunking heavy JS workloads with generator functions (function*)
    1
    const nth = 1000000;
    2
    console.time("fib");
    3
    chunkWork(fibonacciDigits(nth)).then((digits) => {
    4
      console.log("The ", nth, " fibonacci number has ", digits, " digits");
    5
      console.timeEnd("fib");
  6. Add CSS hover styles with inline sty... Add CSS hover styles with inline styles using
    1
    *[style*="--bg-default"] {
    2
      background: var(--bg-default);
    3
    }
    4
    *[style*="--bg-hover"]:hover {
    5
      background: var(--bg-hover);