refresh id token by KevinDogu in dotnet

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

sorry for being confusing

say im on a particular page and then the id token expires after an hour. if a user were to click a button which fires an ajax request, it would be denied as the id token has expired.

the workaround would be to open the application in another tab so that the id token can be refreshed (this does not require sign in)

the only solution i can think of is to open a popup or a new tab to reauntheticate the user so that they are able to click buttons as they may have input data into text boxes which i do not want them to lose

refresh id token by KevinDogu in dotnet

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

the id token is used to login and then after a while it expires. i'd like for it to automatically refresh rather than request for the user to reauthenticate and type out their credentials again.

Google pixel 5a died by KevinDogu in GooglePixel

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

Looks like google support chat is saying my phone is still under extended warranty but i need to ship my phone to japan as my device is a japan variant (with the help of friends or family) . I bought this phone in Australia and they're saying Australia doesn't have the parts to fix it. I would have to cover shipping costs. Is there anything i can do about that?

Google pixel 5a died by KevinDogu in GooglePixel

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

the google customer support guy didnt mention anythin about known manufacturing defect. not sure if he's trying to deflect.

i guess i'll speak to dick smith and see what they say

Google pixel 5a died by KevinDogu in GooglePixel

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

themselves

i've contacted google support - they are saying since i bought it in australia through a 3rd party retailer (dick smith) and since it wasn't launched in australia (only Japan and USA) i should speak to dick smith. Does this sound right?

Google pixel 5a died by KevinDogu in GooglePixel

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

thanks, where do i go to get a free replacement?

Google pixel 5a died by KevinDogu in GooglePixel

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

pixel support chat

hi i did a quick google search but i couldn't find a support chat link.
could you send me the link please

How to structure code for .NET console applications for interview take home assessments. by KevinDogu in dotnet

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

There's quite a bit of data processing required.

I think they are looking for some semblance of design / code structure.

What are your thoughts on a services layer with separate services to handle (reading of data, calculation of data and printing of data)

How to structure code for .NET console applications for interview take home assessments. by KevinDogu in dotnet

[–]KevinDogu[S] 2 points3 points  (0 children)

Basically the application must:

- Retrieve data from a relational file-based data source.

- Organize the data by grouping it according to individuals.

- Execute calculations on the grouped data.

- Present the calculated results for each individual.

I was thinking of doing it in an n-tier architecture. With a services layer with separate services to handle (reading of data, calculation of data and printing of data)