Skip to content
View darx's full-sized avatar
🏠
Working from home
🏠
Working from home

Organizations

@SynthetixLtd
Block or Report

Block or report darx

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

  1. IndexedDBEdit IndexedDBEdit Public

    Devtools panel for changing IndexedDB key values

    Svelte 14 3

  2. svelte-set-css-vars svelte-set-css-vars Public

    Reactive deep object css variables in svelte

    JavaScript

  3. knowledge-component knowledge-component Public

    Dynamic embeddable Synthetix knowledge component

    JavaScript

  4. magnet-api-proxy magnet-api-proxy Public

    An Unofficial API for MagnetDL

    JavaScript

  5. List all font urls on site loaded us... List all font urls on site loaded using @font-face
    1
    Promise.all(
    2
      [...document.styleSheets].map((x) => {
    3
        if (!x.href) return;
    4
        return new Promise((resolve) => {
    5
          fetch(x.href)
  6. Get dominant colours from a website ... Get dominant colours from a website using the DOM
    1
    const getDominantColours = (context) =>
    2
      [...(context || document).querySelectorAll("*")]
    3
        .map(
    4
          (x) =>
    5
            x.style.backgroundColor || x.style.color