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');
});