Thanks to visit codestin.com
Credit goes to github.com

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

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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. nerds-with-keyboards/routerino nerds-with-keyboards/routerino Public

    SEO-optimized React micro-framework (static site generator & router) for blazing fast websites and applications

    JavaScript 16

  2. nerds-with-keyboards/commerseum-display nerds-with-keyboards/commerseum-display Public

    Commerseum Display - Simple, open-source digital signage

    JavaScript 2 1

  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. A simple particle background as a Re... A simple particle background as a React hook
    1
    // useBackgroundAnimation.js
    2
    import { useEffect, useRef } from 'react';
    3
    
                  
    4
    export function useBackgroundAnimation() {
    5
      const canvasRef = useRef(null);
  6. Updates HTML Head tags, such as meta... Updates HTML Head tags, such as meta tags
    1
    // update a head tag
    2
    function updateHeadTag({ tag = "meta", ...attrs }) {
    3
      // input check
    4
      const attrKeys = Object.keys(attrs);
    5
      if (attrKeys.length < 1) {