LOVE this!!You forgot to put in the ultimate trump card, “but it hurts my feels so God must not like it either”
Yeah, I'm not computer savvy enough to understand all that. Using Miro online. Pretty quick and easy for my small brain.If you're wasting lots of time formatting it, you need to discover graphviz. Google it and enjoy!
Yeah... I went, 'Ooooo! A new tool!'Yeah, I'm not computer savvy enough to understand all that. Using Miro online. Pretty quick and easy for my small brain.
x2I like "tell world to pound sand".
Honestly, I don't know when you'd use that. So I don't know how to assess whether it is "too busy", as I can't imagine an audience.Updated version. Lemme know what you guys think. Still too busy?
You don't have to install it (though you can do that too)! Just click here.Yeah... I went, 'Ooooo! A new tool!'
Downloaded it then went, 'Ooooh... yeah... this look like trouble trying to install...' <Delete>
digraph {
node[shape=box]
question -> find -> law
law -> yes [label="Yes"]
law -> no [label="No"]
no -> men -> violate
violate -> violateyes [label="Yes"]
violate -> violateno [label="No"]
question[label="Is polygyny a sin?",style=filled,fillcolor=lightblue,shape=ellipse]
find[label="Find reference in scripture \n to polygyny"]
law[label="Is it a clear Law \n forbidding all men from having \n more than one wife?",shape=diamond]
yes[label="Yes it is sin \n and prohibited"]
no[label="Not sin and \n not prohibited"]
men[label="Prohibition is a command of \n men not God"]
violate[label="Does this command \n violate or run contrary to \n God's Law?",shape=diamond]
violateyes[label="Then we should do as \n Jesus says and reject \n the commands of men"]
violateno[label="Then we are permitted \n (but not compelled) \n to follow this command \n of men"]
}
Linea Kiwi's are easier to follow.You don't have to install it (though you can do that too)! Just click here.
And yes, this is butt-ugly, I just quickly typed it up and didn't fuss around making it look pretty. I'm not saying you should use this version, it's not as nice as @NickF's. But I thought I'd knock it out quickly to demonstrate anyway.
I find this a great tool for formal process diagrams and things like that, as it's all specified in plain text so you can version track it easily (if you're running it on your own machine of course), and change the structure really simply without dragging and dropping stuff around. Graphviz's strength is that you don't actually do the layout at all - that's all automated. You just provide the structure and the computer decides how to draw the picture. It's really handy when you have a massive diagram and want to make a change. Not great when you're making a small thing like this and you want to tweak every detail to make it look perfect. But a handy tool to know about in case you ever need to make a diagram of something majorly complex.
View attachment 4061
Code:digraph { node[shape=box] question -> find -> law law -> yes [label="Yes"] law -> no [label="No"] no -> men -> violate violate -> violateyes [label="Yes"] violate -> violateno [label="No"] question[label="Is polygyny a sin?",style=filled,fillcolor=lightblue,shape=ellipse] find[label="Find reference in scripture \n to polygyny"] law[label="Is it a clear Law \n forbidding all men from having \n more than one wife?",shape=diamond] yes[label="Yes it is sin \n and prohibited"] no[label="Not sin and \n not prohibited"] men[label="Prohibition is a command of \n men not God"] violate[label="Does this command \n violate or run contrary to \n God's Law?",shape=diamond] violateyes[label="Then we should do as \n Jesus says and reject \n the commands of men"] violateno[label="Then we are permitted \n (but not compelled) \n to follow this command \n of men"] }
Thanks! I'll see if I can figure out how to use that... I do know, a simple diagram like your output in the hands of the right fiverr can result in an eyepopping attention grabber!You don't have to install it (though you can do that too)! Just click here.
And yes, this is butt-ugly, I just quickly typed it up and didn't fuss around making it look pretty. I'm not saying you should use this version, it's not as nice as @NickF's. But I thought I'd knock it out quickly to demonstrate anyway.
I find this a great tool for formal process diagrams and things like that, as it's all specified in plain text so you can version track it easily (if you're running it on your own machine of course), and change the structure really simply without dragging and dropping stuff around. Graphviz's strength is that you don't actually do the layout at all - that's all automated. You just provide the structure and the computer decides how to draw the picture. It's really handy when you have a massive diagram and want to make a change. Not great when you're making a small thing like this and you want to tweak every detail to make it look perfect. But a handy tool to know about in case you ever need to make a diagram of something majorly complex.
View attachment 4061
Code:digraph { node[shape=box] question -> find -> law law -> yes [label="Yes"] law -> no [label="No"] no -> men -> violate violate -> violateyes [label="Yes"] violate -> violateno [label="No"] question[label="Is polygyny a sin?",style=filled,fillcolor=lightblue,shape=ellipse] find[label="Find reference in scripture \n to polygyny"] law[label="Is it a clear Law \n forbidding all men from having \n more than one wife?",shape=diamond] yes[label="Yes it is sin \n and prohibited"] no[label="Not sin and \n not prohibited"] men[label="Prohibition is a command of \n men not God"] violate[label="Does this command \n violate or run contrary to \n God's Law?",shape=diamond] violateyes[label="Then we should do as \n Jesus says and reject \n the commands of men"] violateno[label="Then we are permitted \n (but not compelled) \n to follow this command \n of men"] }