This file contains hidden or 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
| #!/usr/bin/env bash | |
| # Temporarily enable developer mode for the Spotify desktop client on Linux and macOS. | |
| showHelp () { | |
| echo -e \ | |
| "Usage: ./tmpdevmodify.sh [option]\n | |
| Options: | |
| -c, --clearcache Clear Spotify app cache | |
| -d, --debug Add Debug Tools to user dropdown menu |
This file contains hidden or 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
| Python 24 hrs 12 mins βββββββββββββββββββ 51.6% | |
| TypeScript 12 hrs 36 mins βββββββββββββββββββ 26.8% | |
| Vue 7 hrs 18 mins βββββββββββββββββββ 15.5% | |
| SQL 2 hrs 54 mins βββββββββββββββββββ 6.2% |
This file contains hidden or 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 hidden or 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 hidden or 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) |