Skip to content

Instantly share code, notes, and snippets.

View simonguo's full-sized avatar

Simon Guo simonguo

View GitHub Profile
@simonguo
simonguo / 📊 Weekly development breakdown
Last active March 17, 2021 05:16
📊 Weekly development breakdown
TypeScript 23 hrs 22 mins ██████████████▎░░░░░░ 68.3%
Markdown 8 hrs 1 min ████▉░░░░░░░░░░░░░░░░ 23.4%
JavaScript 1 hr 41 mins █░░░░░░░░░░░░░░░░░░░░ 5.0%
JSON 38 mins ▍░░░░░░░░░░░░░░░░░░░░ 1.9%
LESS 28 mins ▎░░░░░░░░░░░░░░░░░░░░ 1.4%
@simonguo
simonguo / .editorconfig
Last active July 31, 2017 06:51
style-guide
# editorconfig.org
root = true
[*]
charset = utf-8
end_of_line = lf
indent_style = space
indent_size = 2
trim_trailing_whitespace = true
@simonguo
simonguo / index.js
Last active May 2, 2017 01:46
A callback function for css file loaded
loadCssFile("style.css",()=>{
console.log('loaded');
});