Eliot Posted July 26, 2016 Posted July 26, 2016 (edited) dfsgdsfdsfd Edited November 21, 2020 by Eliot 4
Qubit Posted August 9, 2016 Posted August 9, 2016 Quick question though, I saw the design pattern on github before but the name of it is on the tip of my tongue, mind telling me the name of it?
Eliot Posted August 9, 2016 Author Posted August 9, 2016 Quick question though, I saw the design pattern on github before but the name of it is on the tip of my tongue, mind telling me the name of it? Not sure if it has a name in general. I just refer to it as a task-based script.
Light Posted August 9, 2016 Posted August 9, 2016 Not sure if it has a name in general. I just refer to it as a task-based script. Honestly I don't know how you compile .java or .class files into .jar. If you could teach me
poweruser321 Posted August 9, 2016 Posted August 9, 2016 Honestly I don't know how you compile .java or .class files into .jar. If you could teach me In eclipse: File > Export > Jar > select files
dontbuzz Posted August 14, 2016 Posted August 14, 2016 Thanks man, helped me greatly in understanding Task based scripts.
Prolax Posted November 26, 2016 Posted November 26, 2016 Great script. This is a much better approach then using states.
sudoinit6 Posted December 16, 2016 Posted December 16, 2016 So far I have been able to throw together some simple state based scripts and I don't like it much. This style is much cleaner in my opinion. My problem is I don't "get it". I write unix shell scripts so I can understand the logic flow of state based scripts. I can follow it and see that it goes down the list till it matches a condition and then activates that case statement. With this script I don't understand how it knows which task it should be doing. Any advice (other than learn java :P)?