You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please submit pull request to capture this tweak. Active development is happening in svg-builder so you may want to take a git branch off that, and submit a pull request against the svg-builder branch as base.
In the course of this issue you may find yourself learning more than you ever wanted to know about the difference between stack run and stack exec, and you may need to look up how to get Haskell to write to STDOUT vs STDERR, and you are almost certain to spend time fighting with Git.
The text was updated successfully, but these errors were encountered:
Around line 41 and 42 of https://github.com/smucclaw/sandbox/blob/svg-builder/jacobtan/Rule34-logic-gates/rule34-haskell/src/SandboxBuilder.hs#L41
we see that the script currently writes output to
rule34_1.svg
andrule34_1_err.svg
I would prefer for the script to output to STDOUT and STDERR, according to the Unix philosophy https://www.usna.edu/Users/cs/wcbrown/courses/IC221/classes/L02/Class.html
If you run the script
rule34-svg
now, you will see it producesrule34_1.svg
:After the hardcoding is replaced with outputting to STDOUT and STDERR, we should be able to get the same results, by instead running
Please submit pull request to capture this tweak. Active development is happening in svg-builder so you may want to take a git branch off that, and submit a pull request against the svg-builder branch as base.
In the course of this issue you may find yourself learning more than you ever wanted to know about the difference between
stack run
andstack exec
, and you may need to look up how to get Haskell to write to STDOUT vs STDERR, and you are almost certain to spend time fighting with Git.The text was updated successfully, but these errors were encountered: