Stewart Mackenzie
Stewart Mackenzie
I'm trying to achieve broadcast so that I don't need to resend a large amount of datagrams to a different address. Is there a way to achieve sending UDP datagrams...
Solution: a menu item `Hyperflow -> Advanced` [checkable menu item](https://docs.racket-lang.org/gui/checkable-menu-item_.html) enables or disables advanced mode. When advanced mode is activated, these things are visible: * `node` mode and `graph` mode...
documenting this note so we don't forget to check this out. Chromium spins of opengl subprocesses to handle tabs. Racket supports opengl bindings so we should explore if it's possible....
eg: ``` racket (edge "card-display-out" "out" "wsettings" "wsettings" "in" _) ``` this code implies: `make a connection between node "card-display-out"'s "out" array output port on the element array "wsettings" and...
To demonstrate the problem, this is what we had/still have: ``` racket (node "new-password" ${gui.text-field}) (edge "new-password" "out" _ "change-controls" "place" 10) (mesg "new-password" "in" '(init . ((label . "New...
### Steps to reproduce - run `$ nix-build --argstr node test_xor` ### expected behaviour - the code compiles cleanly ### actual behaviour ``` Building src/lib.rs (msg_clone) error[E0412]: cannot find type...
Solution: A potential way to structure this, is to create a `test.rkt` file in the same directory as the subgraph/agent. The `test.rkt` file should contain a [quickcheck](https://docs.racket-lang.org/quickcheck/index.html) property definition, these...
Solution: when a user chooses to open-in-tab, a new tab at will open the file.
Solution: use [editor-canvas%](https://docs.racket-lang.org/gui/editor-canvas_.html?q=edtior) and [text%](https://docs.racket-lang.org/gui/text_.html?q=edtior)
Solution: Run mode runs already constructed apps. It should resemble a browser as much as possible. All users make use of this mode to execute applications. This is a long...