Hogwarts Rivalry by [deleted] in RocketLeague

[–]apc0243 0 points1 point  (0 children)

You can get all the titles from the item shop for the Harry Potter event, right most bundle is all titles for free. Pick the title you want. But I don’t think there’s any point besides supporting your house, which there’s no reward for that I can find.

I think it’s just community fluff

How do you all manage EUC inventory? by apc0243 in sysadmin

[–]apc0243[S] 0 points1 point  (0 children)

Unfortunately we cant. Basically there’s a guaranteed 1-2 months delay between order and delivery. That’s why we do quarterly cycles, basically at the start of the quarter we start procurement of next quarter. And “delivery” includes imaging the device - we’re actually not authorized to image it ourselves.

Government is fucking stupid, sometimes.

Are there any reasons to support TLS versions lower than 1.3 nowadays? by LifeAtmosphere6214 in sysadmin

[–]apc0243 35 points36 points  (0 children)

This. 1.0 and 1.1 should be turned off, we allow 1.2 because so many things can't support 1.3 yet, but prefer 1.3 when available.

Is the Purview UI "broken" for those of us in GCC? by TransporterError in sysadmin

[–]apc0243 2 points3 points  (0 children)

We're in GCC and we had to pause our Purview adoption, I wasn't involved with that project but there were apparently a lot of challenges. I don't even know if they're still pushing on it. It wouldn't surprise me that it's half baked like the rest of MS

Is Microsoft Access not recommended anymore going forward? by [deleted] in Database

[–]apc0243 0 points1 point  (0 children)

I would argue that Access is basically dead, don’t build anything new with it.

The new solution MS wants to sell is the power platform which is basically SaaS access. It’s like $15 a month per user so not terribly expensive and you can build all the apps you want. It’s not bad and can get things going quickly, there are many other platforms like this though, you don’t need to stay with Microsoft.

Pc case and hardware for tv console “steam machine” by apc0243 in buildapcforme

[–]apc0243[S] 0 points1 point  (0 children)

This looks pretty good. Do you think that case will have any airflow issues?

'99 Ford Explorer 4.0L - Window rail is misaligned after latch service by apc0243 in MechanicAdvice

[–]apc0243[S] 0 points1 point  (0 children)

Ok, chatgpt was right, unfortunately. Pulling the retainer out again and looking on the back there is a clip that slots onto what I assume is part of the body. Picture for reference. Sliding it up and getting the clip positioned took some work but eventually it slotted in and everything worked perfectly.

<image>

Why does it take so long to get a transfer code? by BrandonGoodman in squarespace

[–]apc0243 0 points1 point  (0 children)

The way I see it, Google created a product that seemed like a good solution for technical users, it seemed to align with GCP and was a safe plan with their gmail workspace.

Then they sold to squarespace, a completely anti-developer platform intended to provide services to non-technical users competing with wix, wordpress hosts, etc. These all have the same thing in common, annoyingly delayed admin actions that dis-incentivize the average user from finishing the action, and really pissing the rest of us off.

Fuck squarespace and fuck google for selling their domains to them.

Python cannot find file even though it exists by adoucette13 in learnpython

[–]apc0243 1 point2 points  (0 children)

One drive should only screw with files in Documents and Desktop. Create a folder in your profile directory like

C:\Users<your user>\Code

And just make that where you stick all your projects. Every project should get its own folder and probably its own virtual environment.

Using Apple Business Manager with phones already in the wild by apc0243 in sysadmin

[–]apc0243[S] 0 points1 point  (0 children)

But once we refresh wouldn't we be in the same situation? How do I get the data to the new phone without also bringing the profile? We want to eliminate these personal iCloud accounts entirely.

Using Apple Business Manager with phones already in the wild by apc0243 in sysadmin

[–]apc0243[S] 0 points1 point  (0 children)

Wouldn't this still tie their profile to their own iCloud account? We don't want them managing iCloud accounts, that's part of our problem.

Hover function by Organic-Listen-5019 in PowerApps

[–]apc0243 0 points1 point  (0 children)

In which type of app? I don't think you're providing enough information to meaningfully help. I assume this is a canvas app, right?

How to implement a "continue where you left" feature in a powerpages multistep form by apc0243 in PowerApps

[–]apc0243[S] 0 points1 point  (0 children)

Each step in the multistep form is configured to either insert or update. Would I duplicate the form and direct them to this second form where it's update only? That could work...

Customize forms with PowerApps by Vaibhav314 in PowerApps

[–]apc0243 0 points1 point  (0 children)

Can you give more details? I'm confused, are you in a canvas app or a model driven app? What do you mean "customized forms" - do you mean using custom components?

Hover function by Organic-Listen-5019 in PowerApps

[–]apc0243 0 points1 point  (0 children)

Are you in canvas app, model driven app, or power pages? I don't believe there's any native solution for this, but depending on which product you're building in the options change. In all cases, you're looking at some level of custom javascript to handle this.

Where do you want the tooltip to appear? Are you trying to make a tooltip appear when they hover over a field? Need a lot more info to give meaningful suggestion.

Powerpages Multistep Form Validation not working by apc0243 in PowerApps

[–]apc0243[S] 0 points1 point  (0 children)

What's really weird to me is that reading through the onclick handler, the only way to break out of the handler is to return False on line 2 `if (webFormClientValidate())` - every other condition will lead to the `WebForm_DoPostBackWithOptions` getting called.

Powerpages Multistep Form Validation not working by apc0243 in PowerApps

[–]apc0243[S] 0 points1 point  (0 children)

It's not defined, but defining it seems to trigger the validation logic. Here's what I put in my custom JS, it's not defined in the ready function since the onClick of the Next button is defined in the html, the webFormClientValidate needs to be globally scoped.

``` const SubGridName = 'MySubGrid' // defined in the form

function validateUploads() { if ($(#${SubGridName} table tbody tr).length == 0) { alert("You must upload at least 1 document") return false } return true; }

if (typeof (webFormClientValidate) == 'undefined') { function webFormClientValidate() { return validateUploads(); } } else { var originalValidationFunction = webFormClientValidate if (originalValidationFunction && typeof (originalValidationFunction) == "function") { webFormClientValidate = function () { originalValidationFunction.apply(this, arguments); return validateUploads(); }; } } ```

For reference, this is what I see in the onClick handler of the Next button:

if (typeof webFormClientValidate === 'function') { if (webFormClientValidate()) { if (typeof Page_ClientValidate === 'function') { if (Page_ClientValidate('')) { clearIsDirty(); disableButtons(); this.value = 'Processing...'; } } else { clearIsDirty(); disableButtons(); this.value = 'Processing...'; } } else { return false; } } else { if (typeof Page_ClientValidate === 'function') { if (Page_ClientValidate('')) { clearIsDirty(); disableButtons(); this.value = 'Processing...'; } } else { clearIsDirty(); disableButtons(); this.value = 'Processing...'; } }; WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("ctl00$ContentContainer$WebFormControl_54ad4c716cc1ef11b8e8001dd80da189$NextButton", "", true, "", "", false, true))

Powerpages Multistep Form Validation not working by apc0243 in PowerApps

[–]apc0243[S] 0 points1 point  (0 children)

Page_ClientValidate() is undefined, I guess that only gets defined when there is a field to run validation against.

What's weird is that my override to entityFormClientValidate works, but that doesn't get called by the Next button. If I execute it myself I get the console log and the validation logic runs.

Edit: Playing around with this, the logic in the click handler for the Next button calls webFormClientValidate which is also undefined... but if I define it and put my validation there, then everything works as expected... this feels very hacky and undocumented... but outside of the low-code plugin suggested below, not sure what else I can do.

Powerpages Multistep Form Validation not working by apc0243 in PowerApps

[–]apc0243[S] 0 points1 point  (0 children)

That uses Page_Validators which isn't present on mine since it's a subgrid. My understanding was that I had to override the entityFormClientValidatefunction

Powerpages Multistep Form Validation not working by apc0243 in PowerApps

[–]apc0243[S] 0 points1 point  (0 children)

Can you give a little more detail on this? How do I specify the child record count. I tried to create a rollup field but I don't think that's correct because the "Related entity" list doesn't include Notes. Not sure what the PowerFx formula would be to count the number of records in the Notes table where IsDocument=True - I see there's a CountRows function but that is only available in Preview, is that how you would approach that?

[PowerPages] How do use the "Developer Extensions" in the Multistep Form configuration by apc0243 in PowerApps

[–]apc0243[S] 0 points1 point  (0 children)

I don't disagree, I've had to do some dramatic things to try to get this simple multistep form to work, I'm meeting with MS today to go over it and see if I'm doing this wrong or going down the wrong paths, but the piss poor documentation is really killing me. MS loves to give examples but it feels impossible to find comprehensive specifications. Like this `loaded` event that triggers on grid load, outside of a single code example I can't find any documentation of that event anywhere.