Skip to content

Instantly share code, notes, and snippets.

View xgqfrms-GitHub's full-sized avatar
🌴
On vacation

anonymous xgqfrms-GitHub

🌴
On vacation
View GitHub Profile
@xgqfrms-GitHub
xgqfrms-GitHub / fetch-iife-es6-return-undefined.md
Created June 28, 2017 01:42
fetch & IIFE & ES6 & return undefined

fetch & IIFE & ES6 & return undefined

    
// IIFE & return


let nct = ((username=`xgqfrms-GitHub`, repo=`Node-CLI-Tools`) => {
    fetch(`https://api.github.com/repos/${username}/${repo}/commits`,{
@xgqfrms-GitHub
xgqfrms-GitHub / QC-Quality-Centre.md
Last active June 28, 2017 00:52
Mercury Quality Centre

Mercury Quality Centre

http://www.softwaretestingstuff.com/2007/10/mercury-quality-centre.html

Mercury Quality Centre is a web-based test management tool.

It gives you a centralized control over the entire testing life cycle. It gives an easy interface to manage and organize activities like Requirements coverage, Test Case Management, Test Execution Reporting, Defect Management, and Test Automation.

@xgqfrms-GitHub
xgqfrms-GitHub / http2-module-nginx.md
Created June 27, 2017 14:36
http2-module-nginx
@xgqfrms-GitHub
xgqfrms-GitHub / React-Skeleton-ES6.md
Last active December 22, 2021 18:36
React Skeleton ES6

React Skeleton ES6

    


import React, {Component} from 'react';
@xgqfrms-GitHub
xgqfrms-GitHub / MDN-for-array-object.md
Last active December 22, 2021 18:24
MDN Array & Object & for...in, for...of, for, forEach
@xgqfrms-GitHub
xgqfrms-GitHub / GitHub-API.md
Last active November 10, 2020 14:54
GitHub GraphQL API

github API

GitHub GraphQL API

let username = `xgqfrms-GitHub`;
    repo = `Node-CLI-Tools/commits`;
@xgqfrms-GitHub
xgqfrms-GitHub / webpack-input-value-object-length-github-gist-api.md
Last active December 22, 2021 18:24
webpack-input-value-object-length & github gist API
@xgqfrms-GitHub
xgqfrms-GitHub / js-get-input-value.md
Created June 26, 2017 06:45
HTML5 input & get input value

HTML5 input & get input value

    
    let input_value = document.querySelector(".ant-calendar-picker-input");
    let key = input_value.getAttribute('value');
    console.log(`input_value = ${key}`);