Markdown Content
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
/* | |
* https://gist.github.com/sthobis | |
* source: https://ctrlq.org/code/19899-google-translate-languages | |
*/ | |
const languages = { | |
'af': 'Afrikaans', | |
'sq': 'Albanian', | |
'ar': 'Arabic', | |
'az': 'Azerbaijani', |
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
{ | |
"editor.codeActionsOnSave": { | |
"source.organizeImports": true | |
}, | |
"editor.fontSize": 14, | |
"editor.minimap.enabled": false, | |
"editor.renderIndentGuides": false, | |
"editor.tabSize": 2, | |
"explorer.openEditors.visible": 0, | |
"window.menuBarVisibility": "toggle", |
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 logger = store => dispatch => action => { | |
console.log("%cprev :", "color: #2ecc71", store.getState()) | |
console.log("%caction :", "color: #3498db", action, "\n\n") | |
return dispatch(action); | |
} |
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
// Future versions of Hyper may add additional config options, | |
// which will not automatically be merged into this file. | |
// See https://hyper.is#cfg for all currently supported options. | |
module.exports = { | |
config: { | |
// choose either `'stable'` for receiving highly polished, | |
// or `'canary'` for less polished but more frequent updates | |
updateChannel: 'stable', |
Audition Online is a rhythm based game where you need to complete (by pressing) a sequence of arrow buttons followed by a space button every predefined interval. The interval is calculated based on the bpm of song used for the match/session. An interval is equal to the length/duration of four beats, which means higher bpm produce shorter interval, thus harder difficulty.
In between input interval, there's a resting interval where player does not need to press anything.
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
pm2 deepUpdate | |
pm2 start npm -- start |
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
151.101.193.140 i.redditmedia.com | |
151.101.65.140 g.redditmedia.com | |
151.101.65.140 a.thumbs.redditmedia.com | |
151.101.193.140 redditgifts.com | |
151.101.65.140 i.redd.it | |
151.101.1.140 reddit.com | |
151.101.193.140 v.redd.it | |
151.101.1.140 b.thumbs.redditmedia.com | |
151.101.65.140 events.reddit.com | |
54.209.186.144 stats.redditmedia.com |
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
sudo certbot --nginx `cat domain.txt` |
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
; Shift + Page Up to turn volume up | |
+PgUp:: | |
Send, {Volume_Up} | |
return | |
; Shift + Page Down to turn volume down | |
+PgDn:: | |
Send, {Volume_Down} | |
return |
OlderNewer