• 1 Post
  • 65 Comments
Joined 8 months ago
cake
Cake day: August 25th, 2024

help-circle
rss




  • 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








  • Look into “Company towns” a bit. It could be done right, but putting that into the hands of the current oligarchs would be a spell for destruction

    But I like your sentiment. I actually am planning to start a non-profit apartment complex and I’m trying to get my employer to be a primary investor. I plan on offering them a temporary exclusivity deal if they’ll let me build close enough to where we work but I’ll have to look into the laws about that. Exclusivity deals are a lil weird around housing, might not actually be able to offer that






  • 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