Skip to content
View mknospe's full-sized avatar
🫠
Melting
🫠
Melting
  • 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.

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. 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
    }