Skip to content
View floydnoel's full-sized avatar
👨‍💻
👨‍💻
Block or Report

Block or report floydnoel

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. nerds-with-keyboards/commerseum-display nerds-with-keyboards/commerseum-display Public

    Commerseum Display - Simple, open-source digital signage

    JavaScript 2 1

  2. nerds-with-keyboards/routerino nerds-with-keyboards/routerino Public

    Tiny, SEO-focused router for React websites

    JavaScript 4

  3. exceldate exceldate Public

    Node.js module to convert excel timestamps to JS dates.

    JavaScript 3 1

  4. Remove all files from a Git repo bas... Remove all files from a Git repo based on the .gitignore file
    1
    #!/bin/bash
    2
    echo "Cleaning up any git ignored files..."
    3
    
                  
    4
    # copy and paste the line below to get the same results as running this script
    5
    git rm --cached `git ls-files -ic --exclude-from=.gitignore`
  5. decaporg/gatsby-starter-decap-cms decaporg/gatsby-starter-decap-cms Public template

    Example Gatsby + Decap CMS project

    JavaScript 2.1k 986

  6. Check if a given script has been loa... Check if a given script has been loaded already on a page, by url string. Inspired by https://stackoverflow.com/questions/47088181/how-to-use-tesseract-js-in-a-react-app and https://github.com/facebook/react/issues/4670
    1
    const scriptAlreadyLoaded = urlString => Array.prototype.slice.call(document.scripts).filter(s => s.src).map(s => s.src).contains(urlString)