This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
JavaScript 10 hrs 19 mins ██████████░░░░░░░░░░ 54.5% | |
Vue.js 6 hrs 55 mins ███████░░░░░░░░░░░░░ 36.5% | |
Text 28 mins █░░░░░░░░░░░░░░░░░░░ 2.5% | |
SQL 21 mins █░░░░░░░░░░░░░░░░░░░ 1.9% |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const one = 'one' | |
const two = null | |
const three = { | |
...(one && { one }), | |
...(two && { two }) | |
} | |
console.log(three) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I remember very clear I cry when I finish volume 3 of Knuth. | |
% | |
I am work on CSS SQL. | |
% | |
First sign of depression in devops is denial: you start of ignore Nagios alert. | |
% | |
In devops language is not success unless is another language++. | |
% | |
In devops you are addict to graph if first thought after orgasm is send duration and intensity to Graphite. | |
% |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import marked from 'marked' | |
const variable = { | |
name: 'variable', | |
level: 'block', | |
start (src) { return src.match(/\{{(.*?)}}/g)?.index }, | |
tokenizer (src, tokens) { | |
const rule = /\{{(.*?)}}/g | |
const match = rule.exec(src) |