Skip to content

Instantly share code, notes, and snippets.

View uki00a's full-sized avatar
πŸ˜ͺ
🍣🍣🍣🀀

Yuki Tanaka uki00a

πŸ˜ͺ
🍣🍣🍣🀀
View GitHub Profile
@uki00a
uki00a / test.ts
Created July 4, 2020 23:48 — forked from Yamboy1/test.ts
deno panic on setRaw
console.log("this should print twice, and the panic should be after the second print");
Deno.setRaw(0, true);
Deno.setRaw(0, false);
const process = Deno.run({
cmd: [Deno.execPath(), "run", "--unstable", new URL(import.meta.url).href],
stdout: "piped",
stderr: "piped",
stdin: "piped"
@uki00a
uki00a / use-marked-in-deno.ts
Created June 7, 2020 19:50
How to use marked in Deno
import marked from "https://dev.jspm.io/[email protected]";
const result = marked.lexer(`
## Example
hello
\`\`\`typescript
console.log(123);
\`\`\`