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
[ | |
{ | |
"key": "ctrl+shift+r", | |
"command": "workbench.action.webview.reloadWebviewAction" | |
}, | |
{ | |
"key": "ctrl+s", | |
"command": "workbench.action.files.saveWithoutFormatting" | |
}, | |
{ |
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
local Array = { | |
__tostring = function(self) | |
if #self == 0 then | |
return '[]' | |
end | |
local s = '[' | |
for _, v in ipairs(self) do | |
s = s .. tostring(v) .. ', ' | |
end | |
return s:sub(1, #s - 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
package jss | |
import "core:fmt" | |
import "core:time" | |
import "core:mem" | |
import "core:math" | |
import "core:math/rand" | |
Task :: distinct int |
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
package fnt | |
import "core:mem" | |
import "core:fmt" | |
import "core:math" | |
import "core:time" | |
import rl "vendor:raylib" | |
import ttf "vendor:stb/truetype" |
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
:root { | |
--background-0: hsl(0, 0%, 12%); | |
--background-1: hsl(0, 0%, 18%); | |
--background-2: hsl(0, 0%, 23%); | |
--foreground-2: hsl(0, 0%, 50%); | |
--foreground-1: hsl(0, 0%, 75%); | |
--foreground-0: hsl(0, 0%, 95%); | |
--background-code: hsl(0, 0%, 10%); |
OlderNewer