Skip to content

Instantly share code, notes, and snippets.

View kaidesu's full-sized avatar
🔭
Stargazing

Kai kaidesu

🔭
Stargazing
View GitHub Profile
@kaidesu
kaidesu / vue.html
Created July 15, 2018 00:32
Vue Redactor
<!DOCTYPE html>
<html>
<head>
<title>Redactor</title>
<meta charset="utf-8">
<link rel="stylesheet" href="/assets/redactor/redactor.min.css" />
</head>
<body>
@kaidesu
kaidesu / types.ghost
Created July 7, 2021 23:19
Ghost type system example
// Short assignment example
a := "hello"
// Type system assignment example
b : string = "world"
c : number = 123
d : list[string] = ["foo", "bar"]
e : map{string: list[number]} = {
"foo": [10, 20],
"bar": [30, 40],