In vscode EDU introduction, the green triangle run button to run code is missing from the .py editor. In chrome MacOS.
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
.PHONY: clean test | |
SRCS := src/hamt/cache.c | |
# src/hamt/hamt.c \ | |
# src/hamt/murmur3.c \ | |
# src/hamt/uh.c \ | |
# src/reprs/hamt-node.c | |
OBJS := $(SRCS:.c=%O%) |
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
|
The game is to write typescript programs that generate an AST that scores the most according to the rules stated below. An abstract typescript syntax tree is a data structure that represents the source code of a typescript program.
The left panel contains your program. The right panel contains generated AST
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
{ | |
"$schema": "https://aka.ms/codetour-schema", | |
"title": "treesitter", | |
"steps": [ | |
{ | |
"title": "Introduction", | |
"description": "I use playground as a way to familiarize myself with playground.js" | |
}, | |
{ | |
"file": "docs/assets/js/playground.js", |
A Pen by Amit Sheen on CodePen.
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
// Mac specific ? | |
// I try to keep many of my keybindings in the alt+* format | |
// Some are alternate of existing more complex keybindings. | |
// to optimize the keybinding space, the same keybindings will be used for different commands | |
// on different contexts. I keep them alphabetized | |
// I don't want to clobber emacs bindings with the alt-* bindings | |
// except when they have alternative using the arrow keys. | |
[ | |
{ | |
"key": "alt+a", |
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
=begin pod | |
Capturing stuff with arbitrary complex delimiters | |
without real parsinhg... but with Perl parser. | |
Except the end delimiter is brokem | |
Cannot resolve caller end(Any:U: H:D); none of these signatures matches: | |
(Any:U: *%_ --> 0) | |
(Any:D: *%_) |
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
#! /usr/bin/env raku | |
use Grammar::Tracer; | |
my $s = q:to<END>; | |
fun a { | |
} | |
# | |
fun b { | |
whatever |
NewerOlder