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

Skip to content
View mknospe's full-sized avatar
:octocat:
Git stuff done
:octocat:
Git stuff done
  • Berlin, Germany

Block or report mknospe

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. Synchronous NodeJS script to parse C... Synchronous NodeJS script to parse CSS files and read out used font-family, font-weight and font-styles to generate a <link> tag for Google custom fonts.
    1
    const fs = require('fs');
    2
    
                  
    3
    // TODO LIST OF CUSTOM FONTS - ADD NEW FONTS TO IT IF NEEDED
    4
    const CUSTOM_FONTS_SPECS = [
    5
    	{
  2. NodeJS script to lookup carrier info... NodeJS script to lookup carrier information in parallel using the paid service twilio. (https://www.twilio.com/docs/api/lookups) The data is read from a CSV-file, parsed, processed and written to the output csv-file.
    1
    // Install dependencies
    2
    // npm i -s node-fetch csv-writer csvtojson
    3
    
                  
    4
    const fetch = require('node-fetch');
    5
    const csvToJson = require('csvtojson');
  3. ES5 Element ready observer using a M... ES5 Element ready observer using a MutationObserver to detect, if an HTML element generated on runtime is ready to be accessed.
    1
    function isElement(addedNode, selector, callback) {
    2
      if (typeof addedNode.querySelector === 'function' && addedNode.querySelector(selector)) {
    3
        callback();
    4
      }
    5
    }
  4. react-boilerplate react-boilerplate Public

    My very basic starting point to build a react app.

    JavaScript 2 1