Skip to content
View zeusdeux's full-sized avatar
👾
i wear my sunglasses at night so i can — so i can justify the money spent on 'em
👾
i wear my sunglasses at night so i can — so i can justify the money spent on 'em

Organizations

@recursecenter @remarkjs @unifiedjs @contentful-userland @micromark
Block or Report

Block or report zeusdeux

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. use-is-in-viewport use-is-in-viewport Public

    A react hook to find out if an element is in a given viewport with a simple api.

    JavaScript 152 7

  2. isInViewport isInViewport Public

    An ultra-light jQuery plugin that tells you if an element is in the viewport but with a twist.

    JavaScript 654 160

  3. md-toc md-toc Public

    Generate a GitHub compatible table of contents from headings in a markdown file. Tie into a pre-commit hook for max level awesome!

    JavaScript 22 1

  4. jwt-example jwt-example Public

    Playing with user registration, login/logout, auth, etc using JWTs, serverless functions & faunadb as the data store.

    TypeScript 23 4

  5. Check if any passwords have been com... Check if any passwords have been compromised using HIBP's password API (https://haveibeenpwned.com/API/v2#PwnedPasswords). Your password never leaves your local system!
    1
    #!/usr/bin/env bash
    2
    
                  
    3
    # enable when debugging
    4
    # set -o errexit
    5
    # set -o errtrace
  6. Non-💩 and dirt simple click-outside ... Non-💩 and dirt simple click-outside directive for Vue 3
    1
    import type { Directive } from "vue";
    2
    
                  
    3
    type ClickOutsideHandler = ($event: MouseEvent | TouchEvent) => void;
    4
    type ClickOutsideHandlerMap = Map<HTMLElement, ClickOutsideHandler> & {
    5
      initialized?: boolean;