-
Updated
May 20, 2020 - TypeScript
dataflow-programming
Here are 73 public repositories matching this topic...
Documentation
I know you guys are focused on bringing more features to the lib, but it would be good to provide a bit better documentation and examples (I sent another post about this), so the ones willing to use the current version can fully understand what they can do with it..
E.g.
- I am not sure how to use signals, I can see raft::fileread uses raft::eof, but not sure what is done with it.
- I don't
I have disabled the PDF builds after merging #3124. It is probably something easy to fix, but is there a strong reason to keep building the PDF output?
-
Updated
Apr 18, 2020 - Python
in example topolopy, when i execute "clear Graph", the message show "TypeError: Property 'clear' of object qan::FaceGraph_QML_70(0x7884400, "graph") is not a function",so i modify "void clear() noexcept;" to " Q_INVOKABLE void clear() noexcept;" in the file "qanGraph.h" 103 line ,but that still error.
-
Updated
Nov 16, 2019 - C++
May be it's finally time to split things in modules and separate files, even the tiny ones. So rewriting it in TypeScript or smth. would be much easier and code will be even easier to parse and test.
-
Updated
May 16, 2020 - C
Needs updating to reflect current status of Calvin.
-
Updated
Dec 13, 2019 - C++
-
Updated
Mar 23, 2020 - Python
Currently it is possible to create custom nodes, it is not yet documented.
Create a page with an example that implements the node described here: fibo/flow-view#60
-
Updated
May 20, 2020 - Java
Make the initial setup of UQ scripts easier, by inputting various paths and parameters using SCIRun first. This could even run a few examples of what the toolkit can do as well.
-
Updated
May 20, 2020 - C++
Node.js hello world
Add classic hello world to dflow examples: found it here https://nodejs.org/en/about/
const http = require('http');
const hostname = '127.0.0.1';
const port = 1337;
http.createServer((req, res) => {
res.writeHead(200, { 'Content-Type': 'text/plain' });
res.end('Hello World\n');
}).listen(port, hostname, () => {
console.log(`Server running at http://${hostname}:${port}/`);
});
-
Updated
Apr 22, 2017 - JavaScript
We will probably have to do this sooner or later, although the style may not fit well to document individual PipeOps.
Add Random node
Feature request
Sometimes we'd need random behaviours to work, so we'd like to have a Random node.
Solution
Having a node that allows an output randomized between a mix and max value.
-
Updated
Oct 6, 2018 - Python
-
Updated
Apr 1, 2020 - C++
-
Updated
Nov 17, 2017 - Python
-
Updated
May 15, 2020 - Java
-
Updated
Mar 19, 2020 - C++
-
Updated
Mar 23, 2019 - C
-
Updated
Feb 17, 2020 - JavaScript
-
Updated
Feb 15, 2020 - C++
Improve this page
Add a description, image, and links to the dataflow-programming topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the dataflow-programming topic, visit your repo's landing page and select "manage topics."
We could use some documentation. The examples certainly help, but I found that once I started trying to do more complex things, I ended up having to dig into the source code to understand how to use this library.
GitHub has a feature where each repository can have a website. Maybe we could set up the documentation there? Or maybe we could use GitHub's wiki feature?