Skip to content
View kymokleo's full-sized avatar
💭
I wonder
💭
I wonder
  • Hong Kong

Block or report kymokleo

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. safari-userscripts safari-userscripts Public

    Forked from quoid/userscripts

    A fork of the open-source Safari userscript manager

    Swift

  2. Run as a bookmarklet to remove annoy... Run as a bookmarklet to remove annoying sticky elements on webpages, such as cookie notifications and floating widgets.
    1
    const killStickyElements = () => {
    2
      document.querySelectorAll("body *").forEach(function (node) {
    3
        if (["fixed", "sticky"].includes(getComputedStyle(node).position)) {
    4
          node.parentNode.removeChild(node);
    5
        }
  3. brave-search-goggles brave-search-goggles Public

  4. applescript-scripts applescript-scripts Public

    A random collection of my AppleScript snippets over the years

    AppleScript 1

  5. Word-Frequency Word-Frequency Public

    Present word occurrence results as JSON

    Python