Skip to content

Instantly share code, notes, and snippets.

View xgqfrms's full-sized avatar
💭
🎉 👻 💻 🕵️‍♂️

xgqfrms xgqfrms

💭
🎉 👻 💻 🕵️‍♂️
View GitHub Profile
anonymous
anonymous / index.html
Created April 26, 2014 16:48
A Pen by ara.
<canvas id="canvas" style="position:absolute; top:0; left:0;"></canvas>
<div id="buffer" style="display:none;">
@xgqfrms
xgqfrms / GitHub-GraphQL-API-v4.md
Created June 10, 2017 09:31
REST API v3 & GitHub GraphQL API v4
@xgqfrms-GitHub
xgqfrms-GitHub / react-es6-skeleton-jsx.md
Last active February 19, 2020 16:07
react es6 skeleton jsx

react es6 skeleton

// es6 new
import React { Component } from 'react';
import styles from "./style.css";

class XyzComponent extends Component {
    constructor(props) {
 super(props);

html5 tempalte all in one

<!DOCTYPE html>
<html lang="zh-Hans" manifest="manifest.appcache">
<!-- manifest.json -->

<head>
    <!--
@xgqfrms
xgqfrms / index.html
Last active July 8, 2020 07:16
Flutter in DartPad live app
<h1>Flutter in DartPad live app</h1>
<div>
<canvas id="canvas" width="300" height="300"></canvas>
</div>
@xgqfrms
xgqfrms / readme.md
Created July 17, 2020 04:21
xgqfrms github stats

xgqfrms github stats

@xgqfrms
xgqfrms / Redis-macOS.md
Last active August 19, 2020 09:57
how to install Redis on macOS

how to install Redis on macOS

brew

# update & install
$ brew update
$ brew install redis
@xgqfrms
xgqfrms / url-query-string-params-parser.md
Created August 21, 2020 07:09
URL Query String Params Parser in JavaScript

URL Query String Params Parser in JavaScript

ES6 vanilla version

"use strict";

/**
 *
 * @author xgqfrms