- Personal site: knutsen.co
- Personal git server: git.knutsen.co
- Sourcehut: git.sr.ht/~knutsen
- PGP
693BD1EE8BD77B43
- SSH
4b:42:d8:30:43:65:53:21:be:53:97:49:bc:5f:96:44
- ETH
0x1C7fC5d267C3CEBc4AC875abB424b29dE5113071
- Urbit
~minten-migmug
693BD1EE8BD77B43
4b:42:d8:30:43:65:53:21:be:53:97:49:bc:5f:96:44
0x1C7fC5d267C3CEBc4AC875abB424b29dE5113071
~minten-migmug
A friendlier way to interact with the canvas; simple library for canvas manipulation.
C++ Starting point for windowed applications using GLFW with BGFX including ImGui to get started. Builds cross-platform with Bazel.
C++ 3
Day of Week | March Mar | April Apr | May May | June Jun | July Jul | August Aug | September Sep | October Oct | November Nov | December Dec | January Jan | February Feb | March Mar | ||||||||||||||||||||||||||||||||||||||||
Sunday Sun | |||||||||||||||||||||||||||||||||||||||||||||||||||||
Monday Mon | |||||||||||||||||||||||||||||||||||||||||||||||||||||
Tuesday Tue | |||||||||||||||||||||||||||||||||||||||||||||||||||||
Wednesday Wed | |||||||||||||||||||||||||||||||||||||||||||||||||||||
Thursday Thu | |||||||||||||||||||||||||||||||||||||||||||||||||||||
Friday Fri | |||||||||||||||||||||||||||||||||||||||||||||||||||||
Saturday Sat |
Dict
to have an expr?*
keys field
In the ast
documentation for Python:
https://docs.python.org/3/library/ast.html#ast.Dict it is made clear that:
When doing dictionary unpacking …
Dict
to have an expr?*
keys field
Python.asdl
type for keys
in Dict
literals
In the Python.asdl
syntax description, the file asserts that Dict
literal keys
have type expr*
. This is false. keys
can be optional.
In the ast doc…