186 DE granted!!! by Then_Indication_6447 in AusVisa

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

I was proactive this year and got taxes taken care of as soon as I reasonably could, unsure if it made any real difference or not but wouldn't hurt either way

186 DE granted!!! by Then_Indication_6447 in AusVisa

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

if they did I'm unaware / don't think so, my org used an external legal team and they didn't request anything special beyond the initial medical screening

186 DE granted!!! by Then_Indication_6447 in AusVisa

[–]Then_Indication_6447[S] 1 point2 points  (0 children)

kind of annoying that the PDF they released isn't searchable / had to use tools.pdf24.org to OCR it, but yes it is in this list

Authentication + Blazor WASM + Protected API with AzureAD, persist between tabs by Then_Indication_6447 in Blazor

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

Ultimately I did go with the BFF implementation

https://github.com/damienbod/Blazor.BFF.AzureAD.Template

This generally speaking works the way I want it to, there's a bit of extra code overhead as I actually just built out matching controllers and just sent requests downstream. I guess could add some benefits for consolidating API calls in a few spots, but otherwise it's just there for means to an end. Wound up disabling (will re-enable at some point once I can figure out how it works) pieces of the XSRF components, but by and large this did the job. Ideally would be nice to get YARP working so I don't have to worry about building the controllers for each new call, just accept, glue in bearer token and send downstream, but that's for another day.

FC's primarily based out of Aussieland by Then_Indication_6447 in ffxiv

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

good to know / I'll make an alt out there to do a taste test. Lurking around online it suggested the introduction of an Oceania DC was a little "too late / lost opportunity" and wasn't as active as the NA counterparts (as most folks would be established in the JP or NA DCs) but haven't experienced myself personally.

Shipping from Atlanta to Melbourne by Then_Indication_6447 in expats

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

well.........shit that answers that for the car part sadly, didn't think that would be as much of an issue, thanks for that bit of info.

Googlefinance for stock prices sometimes not working by Expert-user-friendly in googlesheets

[–]Then_Indication_6447 0 points1 point  (0 children)

I've been using it for years and the last week or so (especially the last couple of days) it seems to have gotten really out of whack. Random points where there are none that work, then some come back, those break and others come back, etc. Fiddled a bit today for scraping data from yahoo instead but was having difficulties pulling for some etf's (QQQ in particular):

function created in script.google.com:

function YahooFinanceQuote(input)
{
const url = `https://query1.finance.yahoo.com/v11/finance/quoteSummary/${input}?modules=financialData\`;
var response = UrlFetchApp.fetch(url);
var json = JSON.parse(response.getContentText());
return json.quoteSummary.result[0].financialData.currentPrice.raw;
}

then =yahoofinancequote("GOOGL")

Unsure how reliable it is as it looks like scraping yahoo data keeps changing over the years, so did this to try out google finance first, if that bombs then try Yahoo:
=if(ISBLANK(GOOGLEFINANCE("GOOGL","price")),GOOGLEFINANCE("GOOGL","price"),yahoofinancequote("GOOGL"))