• 0 Posts
  • 38 Comments
Joined 7 months ago
cake
Cake day: August 25th, 2024

help-circle
  • Those are the same buttons I saw.

    The export attachments I assume is intended to export the files you would upload, like scanned in service records and whatnot. Obviously, the demo throws a “no records” error (or however they phrased it). Presumably, they didn’t think about people wanting to test that feature and didn’t bother to upload attachments, but you could upload an attachment and then export it to test methinks.

    The reports, however is where you’ve confused me a bit. Mine defaults to exporting to PDF, which is definitely a meaningful format. You can convert it into anything





  • for( int i = 0; i < 10; i ++)

    This reads as “assign an integer to the variable I and put a 0 in that spot. Do the following code, and once completed add 1 to I. Repeat until I reaches 10.”

    Int I = 0 initiates I, tells the compiler it’s an integer (whole number) and assigns 0 to it all at once.

    I ++ can be written a few ways, but they all say “add 1 to I”

    I < 10 tells it to stop at 10

    For tells it to loop, and starts a block which is what will actually be looping

    Edits: A couple of clarifications



  • Yeah, it’s honestly mostly an issue of me dipping into programming and not properly sticking to it for long enough to wrap my mind around some concepts. I heard all the warnings that “learning to program is usually one of the hardest things someone has accomplished” because of how late we learn it and all the other complications. I also, however, have heard my whole life that I learned fast and picked things up easily. Boy oh boy was one of those messages more useful than the other lol