Covid is running rampant again in the province

Covid is running rampant again in the province
Some random guy writes he thinks it is. Whatever.
Build me an app in HTML.
NO CSS, NO JS. Those aren’t HTML
Plain jane old pure and simple HTML.
Oh but you say I can submit forms and – yeah to the SERVER that is served from. But then what ? The server won’t DO anything with that form or the data on it unless its running PHP or Java or something that can DO something with the data (even just stuff it in a file !)… Read the rest
Not the app. Just the crazy numbers of covid infections and such we’re seeing here.
I’ve been keeping track of the numbers on my own as the published numbers on the AHS site are spread around in a way they dont present a clear picture.
This is my graph lately
NOT GOOD
Been getting weird reports from friends that Xojo 2021r1 isnt quite as “native” on M1’s as expected
If you do NOT install Rosetta the IDE runs – but you cannot debug or build anything
Poking around it appears the linkers, ld, ldarm and lld are all only built as x86_64 binaries meaning that you MUST install Rosetta for Xojo to be able to debug or build
EDIT : I wrote Geoff after I heard of this and said “someone should look into this ASAP”.… Read the rest
This thread illustrates some of the confusion people have with API 2
The documentation doesn’t help clear it up either since it says, quite clearly, that there seems to be a Boolean.ToString method.
I know this isn’t whats meant, but the writer of that thread obviously doesn’t.
Right now code has to look like
dim b as boolean = Boolean.FromString("true)
… Read the rest A long while back I wrote a quick post about “if you need to crash your app” and how to
Perhaps you need to test some code that reports crashes back to you
Exceptions are easier to catch. crashes a bit harder but they happen
So I had posted a couple lines I got from Joe a zillion years ago
Dunno if anyone ever used them or needed them until recently.… Read the rest
Xojo has no “friend” scope (see https://www.ibm.com/support/knowledgecenter/SSLTBW_2.3.0/com.ibm.zos.v2r3.cbclx01/cplr044.htm)
In other words there is no way to indicate that one class or method can call the protected / private methods of another class. Either the methods are public, and any other code can use them, or they are protected so only the class & subclasses can use them, or private and then only that class can access them.… Read the rest
Took a few minutes last night and helped out another member of the Xojo world.
Seemed like he was a bit stuck and what I pointed out got them back on track.
And then I got several messages :
Norman, you are a FUCKING treasure to this community.
… Read the restNobody tries to help as much as you do.
Recently my wife and I took my mom with us when we went on a ski trip.
While there I came across a couple guys who were paragliding and it looks like so much fun!
Maybe next year I’ll give this a try 😛
Theres a long thread on the Xojo forums about Color shouldnt be a reserved property name
It really isnt. This is JUST the IDE preventing you from using the name IN the IDE
It causes no confusion.
The title of this article was, at one time, a recommended way for figuring out the current session in a Web 1.0 app
The compiler has NO issue sorting out whats a variable, whats a data type, and whats a method call.… Read the rest