Page MenuHomePhabricator

jdtolmie (Jack D. Tolmie)
User

User Details

Github Account
https://github.com/jacktolmie
IRC Nick
FuzzyBottom
Stack Overflow
https://stackoverflow.com/users/16681301/fuzzybottom
Operating System
Debian
Less Serious Stuff
Listening To...
Ambient, lofi, smooth jazz
Watching...
Sci-fi, psychological thrillers
Coffee Order
Whatever my wife orders. Like I have a say in that!!
Studying
C++, Kotlin
User Since
Jan 26 2022, 7:25 PM (60 w, 2 d)

Recent Activity

Nov 7 2022

jdtolmie updated the diff for D545: Feat: Added the ability to close off string or nested string, if " or \' was forgot to be added. Fixed some bugs as well..
  • Feat: Added the list command to list registered commands.
Nov 7 2022, 3:37 PM · Programming [Dept], IOSqueak [Project]
jdtolmie edited the content of Articles and Videos.
Nov 7 2022, 3:22 PM
jdtolmie updated the diff for D545: Feat: Added the ability to close off string or nested string, if " or \' was forgot to be added. Fixed some bugs as well..
  • Feat: Added 'list' function to list all the registered functions available.
Nov 7 2022, 1:37 PM · Programming [Dept], IOSqueak [Project]

Nov 6 2022

jdtolmie updated the diff for D545: Feat: Added the ability to close off string or nested string, if " or \' was forgot to be added. Fixed some bugs as well..
  • Docs: Updated the blueshell.rst file for usage on Blueshell.
Nov 6 2022, 5:15 PM · Programming [Dept], IOSqueak [Project]
jdtolmie updated the diff for D545: Feat: Added the ability to close off string or nested string, if " or \' was forgot to be added. Fixed some bugs as well..
  • Style: Just removed some old comments that I missed.
Nov 6 2022, 1:06 PM · Programming [Dept], IOSqueak [Project]
jdtolmie updated the diff for D545: Feat: Added the ability to close off string or nested string, if " or \' was forgot to be added. Fixed some bugs as well..
  • Style: Changed for loop to transform because linter suggested it. Made various changes to the code to clean things up. Fixed issue with 'help <command name>' printing the container out in the wrong order.
Nov 6 2022, 12:22 PM · Programming [Dept], IOSqueak [Project]

Nov 4 2022

jdtolmie updated the diff for D545: Feat: Added the ability to close off string or nested string, if " or \' was forgot to be added. Fixed some bugs as well..
  • Feat: Finished cmd_map header to replace map<pair<pair>>. Added the ability to use 'history' with a command search (eg. history test_attempt' would list only any history with test_attempt, and no others.
Nov 4 2022, 6:10 PM · Programming [Dept], IOSqueak [Project]

Nov 3 2022

jdtolmie added a comment to D545: Feat: Added the ability to close off string or nested string, if " or \' was forgot to be added. Fixed some bugs as well..
In D545#17695, @wdede wrote:

@wdede
I have a question about what you think is best. I added it to the comment you made.

The function would be written once and called as many times as needed. Basically, it is not really a repetition as the argument will be different every time.
Second, in my opinion, here there is no "need" to pass by reference, you can just pass the objects by value, I avoid messing with pointers and referenced values when not necessary. But feel free to experiment.

Nov 3 2022, 5:19 PM · Programming [Dept], IOSqueak [Project]

Oct 28 2022

jdtolmie updated the diff for D545: Feat: Added the ability to close off string or nested string, if " or \' was forgot to be added. Fixed some bugs as well..
Oct 28 2022, 6:16 PM · Programming [Dept], IOSqueak [Project]
jdtolmie updated the diff for D545: Feat: Added the ability to close off string or nested string, if " or \' was forgot to be added. Fixed some bugs as well..
Oct 28 2022, 6:15 PM · Programming [Dept], IOSqueak [Project]
jdtolmie updated the diff for D545: Feat: Added the ability to close off string or nested string, if " or \' was forgot to be added. Fixed some bugs as well..
  • Trying to fix linter error.
Oct 28 2022, 6:11 PM · Programming [Dept], IOSqueak [Project]
jdtolmie updated the diff for D545: Feat: Added the ability to close off string or nested string, if " or \' was forgot to be added. Fixed some bugs as well..
  • Feat: Added the ability to use double tab at the end of the string, and not only the first word. Added a few other features.
Oct 28 2022, 5:25 PM · Programming [Dept], IOSqueak [Project]

Oct 26 2022

jdtolmie updated the diff for D545: Feat: Added the ability to close off string or nested string, if " or \' was forgot to be added. Fixed some bugs as well..
  • Linter issue still
Oct 26 2022, 4:56 PM · Programming [Dept], IOSqueak [Project]
jdtolmie updated the diff for D545: Feat: Added the ability to close off string or nested string, if " or \' was forgot to be added. Fixed some bugs as well..
  • Perf: Trying to fix linter issue of unused variable, even though it is used.
Oct 26 2022, 4:33 PM · Programming [Dept], IOSqueak [Project]
jdtolmie updated the diff for D545: Feat: Added the ability to close off string or nested string, if " or \' was forgot to be added. Fixed some bugs as well..
  • Linter fixes
Oct 26 2022, 4:07 PM · Programming [Dept], IOSqueak [Project]
jdtolmie updated the diff for D545: Feat: Added the ability to close off string or nested string, if " or \' was forgot to be added. Fixed some bugs as well..
  • Perf: Added cmd_map struct to seperate header, as the cppcheck linter was complaining about some un-used variable, even though it was used.
Oct 26 2022, 4:02 PM · Programming [Dept], IOSqueak [Project]

Oct 25 2022

jdtolmie updated the diff for D545: Feat: Added the ability to close off string or nested string, if " or \' was forgot to be added. Fixed some bugs as well..
  • Style: Removed old code commented out after change to map<string, cmd_map>.
Oct 25 2022, 6:54 PM · Programming [Dept], IOSqueak [Project]
jdtolmie updated the diff for D545: Feat: Added the ability to close off string or nested string, if " or \' was forgot to be added. Fixed some bugs as well..
  • Lint changed these.
Oct 25 2022, 6:51 PM · Programming [Dept], IOSqueak [Project]
jdtolmie updated the diff for D545: Feat: Added the ability to close off string or nested string, if " or \' was forgot to be added. Fixed some bugs as well..
  • Perf: Removed std::map<std::string, std::pair<std::pair<std::pair<std::string, std::string>, _register>, int>> as it was confusing trying to figure out how to access it (is it second.second.first, or second.second.second?). Replaced with struct, and made a map<string, struct_name>. Changed the other files to work with the new struct.
  • Added file to register the default commands for the shell.
Oct 25 2022, 6:46 PM · Programming [Dept], IOSqueak [Project]
jdtolmie added a comment to D545: Feat: Added the ability to close off string or nested string, if " or \' was forgot to be added. Fixed some bugs as well..

@wdede
I have a question about what you think is best. I added it to the comment you made.

Oct 25 2022, 9:18 AM · Programming [Dept], IOSqueak [Project]

Oct 24 2022

jdtolmie updated the diff for D545: Feat: Added the ability to close off string or nested string, if " or \' was forgot to be added. Fixed some bugs as well..
  • Feat: Fixed the help menu to display the description nicely. It now prints the command on the left, and word wraps the description.
Oct 24 2022, 5:05 PM · Programming [Dept], IOSqueak [Project]

Oct 20 2022

jdtolmie updated the diff for D545: Feat: Added the ability to close off string or nested string, if " or \' was forgot to be added. Fixed some bugs as well..
  • Removed cout showing the values of various bools for checking for open/closed option strings.
Oct 20 2022, 6:45 PM · Programming [Dept], IOSqueak [Project]
jdtolmie added reviewers for D545: Feat: Added the ability to close off string or nested string, if " or \' was forgot to be added. Fixed some bugs as well.: wdede, jcmcdonald, galmonte.
Oct 20 2022, 6:36 PM · Programming [Dept], IOSqueak [Project]
jdtolmie updated the diff for D545: Feat: Added the ability to close off string or nested string, if " or \' was forgot to be added. Fixed some bugs as well..
  • Fixed linter warning.
Oct 20 2022, 6:34 PM · Programming [Dept], IOSqueak [Project]
jdtolmie requested review of D545: Feat: Added the ability to close off string or nested string, if " or \' was forgot to be added. Fixed some bugs as well..
Oct 20 2022, 6:31 PM · Programming [Dept], IOSqueak [Project]

Oct 19 2022

jdtolmie retitled D536: Fixing bug with deleting quotes in Blueshell. from Changed colour formatting for commands in help.cpp. to Fixing bug with deleting quotes in Blueshell..
Oct 19 2022, 4:21 PM · Programming [Dept], IOSqueak [Project]

Sep 29 2022

jdtolmie updated the diff for D536: Fixing bug with deleting quotes in Blueshell..
  • Not sure what changes were done. Perhaps a linter change.
Sep 29 2022, 9:32 AM · Programming [Dept], IOSqueak [Project]

Sep 28 2022

jdtolmie updated the diff for D536: Fixing bug with deleting quotes in Blueshell..
  • Doc: Created blueshell.rst file to give description on how to use Blueshell. Also added option to name the shell a custom name for the user inheriting the shell.
Sep 28 2022, 7:58 PM · Programming [Dept], IOSqueak [Project]
jdtolmie updated the diff for D536: Fixing bug with deleting quotes in Blueshell..
  • Feat: Added the ability to name the shell when calling the constructor. Defaults to Blueshell if argument is left blank.
  • Changed main.cpp to use Blueshell constructor and not testregister constructor. Just for testing purposes.
Sep 28 2022, 1:05 PM · Programming [Dept], IOSqueak [Project]
jdtolmie updated the diff for D536: Fixing bug with deleting quotes in Blueshell..
  • Removed the rest of commented code as per Jason McDonald.
Sep 28 2022, 8:33 AM · Programming [Dept], IOSqueak [Project]

Sep 27 2022

jdtolmie updated the diff for D536: Fixing bug with deleting quotes in Blueshell..
  • Removed codeblocks file
Sep 27 2022, 8:30 PM · Programming [Dept], IOSqueak [Project]
jdtolmie updated the diff for D536: Fixing bug with deleting quotes in Blueshell..
  • Probably lint changes.
Sep 27 2022, 8:25 PM · Programming [Dept], IOSqueak [Project]
jdtolmie updated the diff for D536: Fixing bug with deleting quotes in Blueshell..
  • Feat: Added option to add \ to the string if \ was passed as an option. Cleaned up some commented out code.
Sep 27 2022, 7:16 PM · Programming [Dept], IOSqueak [Project]
jdtolmie updated the diff for D536: Fixing bug with deleting quotes in Blueshell..
  • Perf: Changed location of where the command was removed from the list of options. Removing from front of deque where the options are stored, rather than removing beforehand. Removed the '\' from the strings if quotes are used..
Sep 27 2022, 9:15 AM · Programming [Dept], IOSqueak [Project]

Sep 26 2022

jdtolmie updated the diff for D536: Fixing bug with deleting quotes in Blueshell..
  • Style: Changes made by arc diff.
Sep 26 2022, 8:10 PM · Programming [Dept], IOSqueak [Project]
jdtolmie updated the diff for D536: Fixing bug with deleting quotes in Blueshell..
  • Still trying to fix issue with clang-format-linter.
Sep 26 2022, 8:05 PM · Programming [Dept], IOSqueak [Project]

Sep 25 2022

jdtolmie updated the diff for D536: Fixing bug with deleting quotes in Blueshell..
  • Style: clang-format-linter changes to the code, and I removed link to the clang-format-linter folder from .arclibs.
  • Perf: Changed std::find to string::erase to remove ! from the command if recalling a previous command.
  • Fix: Forgot to remove clang-format-linter from .arcconfig file.
Sep 25 2022, 9:22 AM · Programming [Dept], IOSqueak [Project]

Sep 24 2022

jdtolmie added a comment to D536: Fixing bug with deleting quotes in Blueshell..

I think I got everything fixed you wanted. I will try the clang fix again, but the last few times I tried, it failed. I must be messing up something.

Sep 24 2022, 8:30 PM · Programming [Dept], IOSqueak [Project]

Sep 23 2022

jdtolmie added reviewers for D536: Fixing bug with deleting quotes in Blueshell.: jcmcdonald, galmonte.
Sep 23 2022, 4:23 PM · Programming [Dept], IOSqueak [Project]
jdtolmie updated the diff for D536: Fixing bug with deleting quotes in Blueshell..
  • Feat: Added deletion of character under the cursor. Fixed some bugs.
  • Added deletechar.cpp
Sep 23 2022, 4:21 PM · Programming [Dept], IOSqueak [Project]

Sep 22 2022

jdtolmie updated the diff for D536: Fixing bug with deleting quotes in Blueshell..
  • Feat: Added inserting and erasing characters from the command when using the left/right arrow keys. Fixed a couple of bugs as well.
Sep 22 2022, 7:30 PM · Programming [Dept], IOSqueak [Project]

Sep 18 2022

jdtolmie updated the diff for D536: Fixing bug with deleting quotes in Blueshell..
  • Nothing changed, but for some reason it says it did. Maybe it will show up now :)
Sep 18 2022, 8:13 PM · Programming [Dept], IOSqueak [Project]
jdtolmie updated the diff for D536: Fixing bug with deleting quotes in Blueshell..
  • Ran arc diff. Fixed some of the warnings found.
Sep 18 2022, 1:34 PM · Programming [Dept], IOSqueak [Project]
jdtolmie requested review of D536: Fixing bug with deleting quotes in Blueshell..
Sep 18 2022, 1:20 PM · Programming [Dept], IOSqueak [Project]

Sep 17 2022

jdtolmie accepted D496: IODecor.
Sep 17 2022, 7:07 AM · Programming [Dept], IOSqueak [Project]

Aug 28 2022

jdtolmie added a comment to D496: IODecor.

I did not run it, but from what I saw it looks good. Just one comment on "" vs std::string(). Mind you, being able to read it and thinking you understand it, and being able to fully understand are different :)

Aug 28 2022, 12:43 PM · Programming [Dept], IOSqueak [Project]

Aug 19 2022

jdtolmie abandoned D532: Different name for a branch, as the blueshell name kept messing up landing..
Aug 19 2022, 7:06 AM · Programming [Dept], IOSqueak [Project]

Aug 18 2022

jdtolmie abandoned D531: Changed .arcconfig to proper URL..
Aug 18 2022, 7:50 PM · Programming [Dept], IOSqueak [Project]
jdtolmie abandoned D530: Set up new branch as old one was corrupted..
Aug 18 2022, 7:49 PM · Programming [Dept], IOSqueak [Project]
jdtolmie added a reviewer for D532: Different name for a branch, as the blueshell name kept messing up landing.: galmonte.
Aug 18 2022, 4:04 PM · Programming [Dept], IOSqueak [Project]
jdtolmie requested review of D532: Different name for a branch, as the blueshell name kept messing up landing..
Aug 18 2022, 3:44 PM · Programming [Dept], IOSqueak [Project]
jdtolmie updated the diff for D531: Changed .arcconfig to proper URL..

Sure...

Aug 18 2022, 8:44 AM · Programming [Dept], IOSqueak [Project]
jdtolmie updated the diff for D531: Changed .arcconfig to proper URL..

Issue with main.cpp.

Aug 18 2022, 8:40 AM · Programming [Dept], IOSqueak [Project]
jdtolmie updated the diff for D531: Changed .arcconfig to proper URL..

Trying to find out why this will not land, and even creating a new branch pulls in old commits that are not mine.

Aug 18 2022, 8:37 AM · Programming [Dept], IOSqueak [Project]
jdtolmie requested review of D531: Changed .arcconfig to proper URL..
Aug 18 2022, 8:33 AM · Programming [Dept], IOSqueak [Project]

Aug 17 2022

jdtolmie requested review of D530: Set up new branch as old one was corrupted..
Aug 17 2022, 7:54 AM · Programming [Dept], IOSqueak [Project]

Aug 16 2022

jdtolmie added inline comments to D495: Created Blueshell class. Created function for 'interactive'.
Aug 16 2022, 9:30 AM · Programming [Dept], IOSqueak [Project]

Aug 13 2022

jdtolmie updated the diff for D495: Created Blueshell class. Created function for 'interactive'.
  • Added testregister.hpp for testing purposes.
Aug 13 2022, 10:45 AM · Programming [Dept], IOSqueak [Project]

Aug 4 2022

jdtolmie updated the diff for D495: Created Blueshell class. Created function for 'interactive'.
  • Feat: Added 'history' command, and bang history command.
Aug 4 2022, 7:08 PM · Programming [Dept], IOSqueak [Project]
jdtolmie updated the diff for D495: Created Blueshell class. Created function for 'interactive'.
  • Feat: Added 'history' command, and bang history command.
Aug 4 2022, 7:03 PM · Programming [Dept], IOSqueak [Project]

Aug 1 2022

jdtolmie updated the diff for D495: Created Blueshell class. Created function for 'interactive'.
  • Feat: Added tab functionality to fill in partial typed commands with any that match. If multiple are available, it will print them to the terminal, and fill in as much as matches all of the commands.
Aug 1 2022, 2:54 PM · Programming [Dept], IOSqueak [Project]

Jul 29 2022

jdtolmie updated the diff for D495: Created Blueshell class. Created function for 'interactive'.
  • Feat: Made a lot of changes. Moved most functions into their own file. Pressing tab mostly works for listing stored functions, and if a partial command was typed, it will search for any starting with that. Fixed some issues with arrow keypress, and added a call to tab if using arrows, then pressing tab.
Jul 29 2022, 5:38 PM · Programming [Dept], IOSqueak [Project]
jdtolmie planned changes to D495: Created Blueshell class. Created function for 'interactive'.

There is one or more things I need to fix on up/down key press before review.

Jul 29 2022, 10:58 AM · Programming [Dept], IOSqueak [Project]
jdtolmie updated the diff for D495: Created Blueshell class. Created function for 'interactive'.
  • Fix: Fixed issue with up/down arrow press having to be pressed twice when pressing opposite arrow press (having to press down twice to start traversing again etc). Added comments to that part of the code.
Jul 29 2022, 9:06 AM · Programming [Dept], IOSqueak [Project]

Jul 28 2022

jdtolmie planned changes to D495: Created Blueshell class. Created function for 'interactive'.

Planning on working on this again soon. The lint warnings I do not know how to fix, as I need this code as is (as far as I can tell). If I can find a solution to solving this issue, I will fix it then.

Jul 28 2022, 7:40 PM · Programming [Dept], IOSqueak [Project]
jdtolmie updated the diff for D495: Created Blueshell class. Created function for 'interactive'.

Trying to find lint errors

Jul 28 2022, 7:34 PM · Programming [Dept], IOSqueak [Project]
jdtolmie updated the diff for D495: Created Blueshell class. Created function for 'interactive'.
  • feat: Got up/down arrow press traversing the 'previous_command' vector. Pressing 'enter' will call up the command. One issue is that if part way through the vector, you have to press the down arrow twice before if starts down again. It calls up the print_line function with the same vector element. Would like to find a way to fix that.
Jul 28 2022, 7:33 PM · Programming [Dept], IOSqueak [Project]

Jul 25 2022

jdtolmie added a comment to D495: Created Blueshell class. Created function for 'interactive'.

I have not addressed the errors because I was not done working on it. I was just going to bed and thought I should commit in case something happened overnight. As for the testregister files, do you mind me leaving them where they are, as when I am done with them I can clean them up at that time? They are just there so I know which ones to clean up when needed. It saves me missing something when I am done, and looking for my test files.

Jul 25 2022, 7:51 AM · Programming [Dept], IOSqueak [Project]

Jul 24 2022

jdtolmie updated the diff for D495: Created Blueshell class. Created function for 'interactive'.

Running linter

Jul 24 2022, 7:42 PM · Programming [Dept], IOSqueak [Project]
jdtolmie updated the diff for D495: Created Blueshell class. Created function for 'interactive'.
  • Added mostly functional up, down, and tab key presses.
Jul 24 2022, 7:41 PM · Programming [Dept], IOSqueak [Project]

Jun 29 2022

jdtolmie added a member for IOSqueak [Project]: jdtolmie.
Jun 29 2022, 12:43 PM

Jun 28 2022

jdtolmie updated the diff for D495: Created Blueshell class. Created function for 'interactive'.
  • Removed an unused vector
Jun 28 2022, 7:44 PM · Programming [Dept], IOSqueak [Project]

Jun 27 2022

jdtolmie added a comment to D495: Created Blueshell class. Created function for 'interactive'.

I made some changes as requested, and commented on some that I need clarification on.

Jun 27 2022, 9:42 AM · Programming [Dept], IOSqueak [Project]

Jun 26 2022

jdtolmie updated the diff for D495: Created Blueshell class. Created function for 'interactive'.
  • Removed an unused vector
Jun 26 2022, 5:13 PM · Programming [Dept], IOSqueak [Project]
jdtolmie updated the diff for D495: Created Blueshell class. Created function for 'interactive'.
  • feat: Added std::string parameter to the function pointer and commands that are called, in order to allow options to be sent if needed
Jun 26 2022, 5:11 PM · Programming [Dept], IOSqueak [Project]

Jun 21 2022

jdtolmie updated the diff for D495: Created Blueshell class. Created function for 'interactive'.
  • feat: Added tests from 'register' to the available commands after registering them. Changed unordered_map to a map, to make it sorted for displaying it better
  • feat: Added 'list'/'help' to the register function to show what tests are available if required again. It shows the tests when 'register' is first run
Jun 21 2022, 7:26 PM · Programming [Dept], IOSqueak [Project]

Jun 9 2022

jdtolmie updated the diff for D495: Created Blueshell class. Created function for 'interactive'.
  • Removed some temp files from codeblocks
  • Moved available_commands map to public, so it could be accessed by the derived classes.
Jun 9 2022, 12:32 PM · Programming [Dept], IOSqueak [Project]
jdtolmie updated the diff for D495: Created Blueshell class. Created function for 'interactive'.
  • Comments added to files, and changed from std::map to std::unordered_map.
Jun 9 2022, 11:04 AM · Programming [Dept], IOSqueak [Project]
jdtolmie updated the diff for D495: Created Blueshell class. Created function for 'interactive'.
  • Comments added to files, and changed from std::map to std::unordered_map.
Jun 9 2022, 8:06 AM · Programming [Dept], IOSqueak [Project]

Jun 3 2022

jdtolmie closed V33: Should we name class member variables with an m_<name> to avoid confusion?.
Jun 3 2022, 8:55 PM
jdtolmie added a comment to D475: Initial Tree for Goldilocks Coordinator.

I made the changes that lint wanted me to, and corrected a few things that I thought I had working. I will create a subtask, but I realised that if you 'add test', and then 'add test' again, it will add 'test' twice to the root. I was going to fix it, but thought if I am giving this to Jaime, that he could work on it. Let me know if you want me to do it.

Jun 3 2022, 8:27 PM · Programming [Dept], Goldilocks [Project]
jdtolmie updated the diff for D475: Initial Tree for Goldilocks Coordinator.
  • Made some changes I thought I already did. Fixed a few things Jason wanted done
Jun 3 2022, 8:16 PM · Programming [Dept], Goldilocks [Project]
jdtolmie updated the diff for D475: Initial Tree for Goldilocks Coordinator.
  • Made some changes I thought I already did. Fixed a few things Jason wanted done
Jun 3 2022, 8:15 PM · Programming [Dept], Goldilocks [Project]
jdtolmie updated the diff for D475: Initial Tree for Goldilocks Coordinator.
  • Made some changes I thought I already did. Fixed a few things Jason wanted done
Jun 3 2022, 4:40 PM · Programming [Dept], Goldilocks [Project]

May 27 2022

jdtolmie added inline comments to D495: Created Blueshell class. Created function for 'interactive'.
May 27 2022, 5:40 PM · Programming [Dept], IOSqueak [Project]

May 26 2022

jdtolmie updated the diff for D495: Created Blueshell class. Created function for 'interactive'.
  • Created a map<string, function ptr>. Tested by adding 'help' and 'clear'.
May 26 2022, 7:58 AM · Programming [Dept], IOSqueak [Project]

May 24 2022

jdtolmie added reviewers for D495: Created Blueshell class. Created function for 'interactive': jcmcdonald, galmonte, jalopez.
May 24 2022, 4:10 PM · Programming [Dept], IOSqueak [Project]
jdtolmie requested review of D495: Created Blueshell class. Created function for 'interactive'.
May 24 2022, 4:09 PM · Programming [Dept], IOSqueak [Project]

May 10 2022

jdtolmie updated the diff for D475: Initial Tree for Goldilocks Coordinator.
  • Made change to add_child to put a new Node, not a shared_ptr<Node>
May 10 2022, 3:00 PM · Programming [Dept], Goldilocks [Project]

Apr 29 2022

jdtolmie updated the diff for D475: Initial Tree for Goldilocks Coordinator.
  • Fixed segmentation faults. Fixed issues with 'find_node' and 'load' not adding all of the elements of the vector passed to them.
Apr 29 2022, 5:56 PM · Programming [Dept], Goldilocks [Project]

Apr 20 2022

jdtolmie added a comment to D475: Initial Tree for Goldilocks Coordinator.

Here is the full code I am working with, in order to test it: https://phab.mousepawmedia.com/P61

Apr 20 2022, 4:12 PM · Programming [Dept], Goldilocks [Project]
jdtolmie updated the diff for D475: Initial Tree for Goldilocks Coordinator.
  • Changed find_node and load to take vector<string>, not a string. Fixed issue with various segmentation faults, and now 'find' should work properly, as it was finding a node without looking up the tree structure
Apr 20 2022, 3:41 PM · Programming [Dept], Goldilocks [Project]

Apr 9 2022

jdtolmie updated the summary of D475: Initial Tree for Goldilocks Coordinator.
Apr 9 2022, 6:41 AM · Programming [Dept], Goldilocks [Project]

Apr 4 2022

jdtolmie updated the diff for D475: Initial Tree for Goldilocks Coordinator.
  • Total rewrite of coordinator.hpp and .cpp. Based off of tree Jason C. McDonald wrote in python.
Apr 4 2022, 3:34 PM · Programming [Dept], Goldilocks [Project]

Mar 13 2022

jdtolmie added inline comments to D475: Initial Tree for Goldilocks Coordinator.
Mar 13 2022, 1:07 PM · Programming [Dept], Goldilocks [Project]

Mar 7 2022

jdtolmie updated the diff for D475: Initial Tree for Goldilocks Coordinator.
  • Made changes to coordinator.cpp and hpp to create child nodes in the class
Mar 7 2022, 3:49 PM · Programming [Dept], Goldilocks [Project]

Mar 1 2022

jdtolmie added a reviewer for D475: Initial Tree for Goldilocks Coordinator: jcmcdonald.
Mar 1 2022, 4:59 PM · Programming [Dept], Goldilocks [Project]
jdtolmie updated the diff for D475: Initial Tree for Goldilocks Coordinator.
  • Changed recommended fixes from lint when running arc diff.
Mar 1 2022, 4:04 PM · Programming [Dept], Goldilocks [Project]
jdtolmie updated the diff for D475: Initial Tree for Goldilocks Coordinator.
  • Complete redo of Coordinator cpp and hpp file
Mar 1 2022, 3:54 PM · Programming [Dept], Goldilocks [Project]

Feb 16 2022

jdtolmie closed V32: Should we name class member variables with an m_<name> to avoid confusion?.
Feb 16 2022, 7:33 AM