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
You’re not wrong that it’s fairly unlikely that Luigi isn’t the adjuster. However, the security stills are the only tangible evidence we have right now and that’s not enough to create the condition of “without a shadow of doubt” which is necessary to convict afaik. This is why the jury needs to be unanimous to my understanding
Furthermore, it’s why we need to stop talking about him.like he’s already been decided to be guilty
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
I agree, but in the right circumstances. Posting it here in the comment section is one thing, we’re discussing their actions. But some people (not you, necessarily) will take it a step further and go bully a company when they take a good step because the step wasn’t big/good enough. We gotta positively reinforce good behavior
Imagine if tomorrow they decided to stop DEI for good
I wonder if they could point towards their secession when handling that. Technically Disneyland and world aren’t part of America, but they’re not recognized as sovereign states by any country so they might have a hard time really putting that fight up
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
While you’re not wrong, we still need to understand it at least well enough to avoid RCE and fix memory-related bugs