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
(async function() { | |
const Authorization = ''; // past here AuthKey | |
const GET = { headers: { Authorization }, method: 'GET' }; | |
const DELETE = { headers: { Authorization }, method: 'DELETE'}; | |
const sleep = ms => new Promise(resolve => setTimeout(resolve, ms)); | |
const me = await fetch('/api/v6/users/@me', GET) | |
.then(r => r.json()) |
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
{ | |
"files.autoSave": "afterDelay", | |
"editor.wordWrap": "on", | |
"editor.insertSpaces": false, | |
"editor.minimap.enabled": false, | |
"files.hotExit": "off", | |
"workbench.editor.enablePreview": false, | |
"workbench.editor.enablePreviewFromQuickOpen": false, | |
"editor.renderWhitespace": "none", | |
"vs-kubernetes": { |
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
default partial alphanumeric_keys | |
xkb_symbols "basic" { | |
// This layout conforms to a new Slovak compromise standard | |
// designed to satisfy most Unix, Windows and Mac users. | |
// 2001 by Kamil Toman <[email protected]> | |
// 2019 modified by Mlocik97 | |
// include "latin" | |
name[Group1] = "Slovak"; |
NewerOlder