26 Matching Annotations
  1. Feb 2023
    1. Create a new Java project and package for your application

      Do not call your project and class Button, this is something in JavaFX, and it will get very confused.

  2. Nov 2022
  3. Oct 2022
  4. May 2022
    1. successorsTo

      Add test to check that the successors to are not starting mid word, that the prefix has been fully exausted. "moooooch" stops at "moo", there are no successors.

  5. Mar 2022
    1. Open in SceneBuilder

      Make sure to open the Application (Application/SceneBuilder on mac, /Users/???/AppService or something on Windows) when it asks you for a path, and not the file path to your .fxml document.

  6. Feb 2022
    1. project directory.

      This is the directory right above "src". Sometimes Windows creates a "cake151" directory with a "cake151" directory inside. Open the subdirectory.

  7. Jan 2022
  8. Oct 2021
  9. Sep 2021
  10. Oct 2020
  11. Aug 2020
  12. Apr 2020
  13. Mar 2020
  14. Feb 2020
    1. Try running MazeApp. If a small window appears, everything works!

      You might also need to add " exports maze.model to junit; " to your module-info.java file.

  15. Jan 2020
    1. Compare and contrast

      To show both these graphs on the same plot using the dodge idea, you will probably need to use an Outer Join when you merge, because there are different lengths present in each of the data frames.

      In the pd.merge() command, add in the following:

      how="outer"