https://spec.graphql.org/October2021/
GraphQL - query language, used to build client applications, describe data requirements. Defines capabilites - does not do computation.
https://spec.graphql.org/October2021/
GraphQL - query language, used to build client applications, describe data requirements. Defines capabilites - does not do computation.
https://www.rifton.com/resources/webinars/2018/progressive-gait-training
Also interesting: https://gmb.io/motor-learning/
tl;dr: It wraps some work you'd like to do and waits for that work to complete before returning
An update to Component inside a test was not wrapped in act(...).
tl;dr: A React component is updating (probably as a result of changing state, props, or hooks) but that update is not happening inside of something wrapped in act
.
actQueue
is null (actQueue
is set when act
is called)Please comment on the gist with a link to your extension! |
# ComfyUI custom node template | |
# | |
# Copy this template and paste it into a new file at ComfyUi/custom_nodes/RENAMEME_NODE_CLASS_NAME.py | |
# Rename each of the items that start with 'RENAMEME_' (including the file name) | |
# | |
# For more information on each of these fields, see the comments of the example_node.py inside of ComfyUI: | |
# https://github.com/comfyanonymous/ComfyUI/blob/master/custom_nodes/example_node.py.example | |
# | |
# Names | |
# |
import math | |
class ImageSizer: | |
def __init__(self): | |
pass | |
@classmethod | |
def INPUT_TYPES(s): | |
return { | |
"required": { |
Raw notes are at the top
Human-readable blog post is in the middle
llbuild
is the build system used by xcode and the swift package manager.
Adapted from a lesson I wrote/taught at Turing: http://frontend.turing.io/lessons/module-2/test-driven-development.html