@ca_peterson Depends on the limits and SLA we're talking about. I'd probably use it for offloading non-essential DML transactions to boost perceived system speed.
@Nads_P07@DianaJaffeSF I don't see how they could. You literally cannot build the same logics in auto that you can in freeform. At least, not yet. Hopefully they'll sort out those limitations before they get rid of free form mode. Or not at all. I live free form mode.
@BrendaGlasser I myself dropped out of HS effectively in 10th grade, earned my GED, and yet I've been able to make a comfortable living for over a decade of programming. It just takes effort and determination.
@aoristdual @rsoesemann@StackExchange Yeah, that made me upset. I used to use them mobile app so I'd miss fewer comments. I miss them a lot more frequently now.
@Kwongerific It's been proposed and implemented. Percent Time, Swatch Time, probably others. Wouldn't be accurate enough for some tasks, but casually scheduling meetings, work times, etc, it'd be useful.
@kapehe_ok Got a computer for Christmas before kindergarten, it had no permanent storage, so I had to program it by hand every time. I loved programming ever since.
@ilijapavlic @leo_dcfa @rsoesemann@FabienTaillon You forgot about the undocumented changes to comparison operators. Greater than, less than, etc now return false instead of NullPointerException on null values. But yeah, I want my Generics, Lambdas, and Reflection already.
@RobSalesforce You can't really blame JS... It's inherited from Java, C++, C... Maybe even earlier. It's a decades-old tradition. Maybe if older languages hadn't done it, JS wouldn't have. But then again, SGML still influenced LWC markup, so...
@notessensei@ch_sz_knapp Salesforce does have a cloud-based VS Code they've been demoing. https://t.co/qAadcw5RRi Not sure when it'll be available for everyone, though.
@RobSalesforce@brianmfear I originally meant to try and separate my personal life (@brianmfear) from my "brand" (the sfdcfox moniker). I still intend to get around to this one day, lol.
@Nads_P07@rsoesemann@ca_peterson@FishOfPrey It's been fixed since. The trick went something like:
String[] v = new String[0];
String[] k = 'abcdefghijklmnopqrstuvwxyz'.split('');
for(String s: k) v.add(s.repeat(6000000));
But this now caps out at about 52MB.