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 / 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}`);
@xgqfrms-GitHub
xgqfrms-GitHub / cmd-copy-clipboard-clip.md
Last active September 19, 2023 08:03
how to copy to clipboard using windows cmd & clipboard & copy & clip
@xgqfrms-GitHub
xgqfrms-GitHub / onload-onreadystatechange-DOMContentLoaded.md
Created June 25, 2017 13:34
onload & onreadystatechange & DOMContentLoaded

DOMContentLoaded

onload & onreadystatechange & DOMContentLoaded

document.onload = (() => {
    const div = document.createElement("div");