graphical-language

Yahoo Pipes: filter items in a feed based on words in a text file

我怕爱的太早我们不能终老 提交于 2019-12-22 12:12:47
问题 I have a pipe that filters an RSS feed and removes any item that contains "stopwords" that I've chosen. Currently I've manually created a filter for each stopword in the pipe editor, but the more logical way is to read these from a file. I've figured out how to read the stopwords out of the text file, but how do I apply the filter operator to the feed, once for every stopword? The documentation states explicitly that operators can't be applied within the loop construct, but hopefully I'm

Yahoo Pipes: filter items in a feed based on words in a text file

∥☆過路亽.° 提交于 2019-12-06 09:17:19
I have a pipe that filters an RSS feed and removes any item that contains "stopwords" that I've chosen. Currently I've manually created a filter for each stopword in the pipe editor, but the more logical way is to read these from a file. I've figured out how to read the stopwords out of the text file, but how do I apply the filter operator to the feed, once for every stopword? The documentation states explicitly that operators can't be applied within the loop construct, but hopefully I'm missing something here. You're not missing anything - the filter operator can't go in a loop. Your best bet

Textual versus Graphical Programming Languages

☆樱花仙子☆ 提交于 2019-11-29 22:54:24
I am part of a high school robotics team, and there is some debate about which language to use to program our robot. We are choosing between C (or maybe C++) and LabVIEW. There are pros for each language. C(++): Widely used Good preparation for the future (most programming positions require text-based programmers.) We can expand upon our C codebase from last year Allows us to better understand what our robot is doing. LabVIEW Easier to visualize program flow (blocks and wires, instead of lines of code) Easier to teach (Supposedly...) "The future of programming is graphical." (Think so?) Closer

Textual versus Graphical Programming Languages

☆樱花仙子☆ 提交于 2019-11-28 19:46:04
问题 I am part of a high school robotics team, and there is some debate about which language to use to program our robot. We are choosing between C (or maybe C++) and LabVIEW. There are pros for each language. C(++): Widely used Good preparation for the future (most programming positions require text-based programmers.) We can expand upon our C codebase from last year Allows us to better understand what our robot is doing. LabVIEW Easier to visualize program flow (blocks and wires, instead of