Skip to content

Instantly share code, notes, and snippets.

View xiaoluoboding's full-sized avatar
πŸ’»
Coding a better future

Robert Shaw xiaoluoboding

πŸ’»
Coding a better future
View GitHub Profile
@xiaoluoboding
xiaoluoboding / xiaoluoboding-2020.ascii
Last active March 4, 2021 10:14
My GitHub Skyline ASCII 2020
✦ β–ˆ ✧ ✦ ✧ β–ˆ
β–ˆ ✦ β–„ β–ˆ
βœ¦β–‚ β–‚βœ¦ β–ˆβ–† βœ§β– ✧ β–ƒ β–ˆ β–ˆβ–„β–ƒ
β–…β–ˆβ–‚ β–ƒ β˜½β–ƒβ–ƒβ–β–ƒβ–…β–†β–ˆβ–‚β–β–… β–ˆβ–ˆ ▁ β–ˆβ–†β–‡β–†β–… ▂▆▇▅▆▁▁ β–ˆβ–‚β– β–ˆβ–‡β–ˆβ–ˆβ–ˆβœ¦β–
β–ˆβ–ˆβ–ˆβ–β–ˆβ–β–ˆβ–β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–…β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–…β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–β–β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–…β–ˆ
https://skyline.github.com/xiaoluoboding/2020
@xiaoluoboding
xiaoluoboding / xiaoluoboding-2020.stl
Created March 4, 2021 09:48
My GitHub Skyline 2020
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
TypeScript 15 hrs 42 mins β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Šβ–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 56.3%
Vue.js 10 hrs 31 mins β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‰β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 37.7%
JSON 1 hr 7 mins β–Šβ–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 4.1%
SCSS 8 mins β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 0.5%
XML 6 mins β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 0.4%
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<script id="jsbin-javascript">
@xiaoluoboding
xiaoluoboding / rAF.js
Created June 7, 2017 04:37 — forked from paulirish/rAF.js
requestAnimationFrame polyfill
// http://paulirish.com/2011/requestanimationframe-for-smart-animating/
// http://my.opera.com/emoller/blog/2011/12/20/requestanimationframe-for-smart-er-animating
// requestAnimationFrame polyfill by Erik MΓΆller. fixes from Paul Irish and Tino Zijdel
// MIT license
(function() {
var lastTime = 0;
var vendors = ['ms', 'moz', 'webkit', 'o'];
@xiaoluoboding
xiaoluoboding / 0_reuse_code.js
Created July 22, 2016 08:26
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@xiaoluoboding
xiaoluoboding / pythonFile1.py
Last active October 22, 2015 02:40
Python Code Snippets
#ζŠŠδΈ€δΈͺι€—ε·εˆ†ιš”ηš„θ―ε…ΈοΌŒθ½¬ζˆε΅Œε₯—ε€šε±‚ηš„θ―ε…Έγ€‚ε¦‚οΌš
dotted_config = {'a.b.c': 'd'}
nest_config = convert(dotted_config) // {'a': {'b': {'c': 'd'}}}