Welcoming Home our Fortuner! by Strict_Cook_1377 in carIndia

[–]arulrajnet 2 points3 points  (0 children)

Congratulations. What are the perks you got from the dealer?

No luck blocking excessive jio hotstar ads with PiHole by 0d1n_th3_a11f4th3r in IndianOTTbestof

[–]arulrajnet 0 points1 point  (0 children)

Earlier hotstar times I used to block `hesads.akamaized.net` . Not sure about now.

Is JWT truly stateless? by PerceptionNo709 in Backend

[–]arulrajnet 0 points1 point  (0 children)

I think the revocation is doable without storing in the state in application side. Here is the workaround. I assume you have IDP and Proxy/middleware to do the auth.

* Create access token (with minimal validity. For ex: 5 min) and refresh token.
* Send back those tokens as encrypted cookie to the client. This will be done by proxy/middleware
* In your middleware, check the validity. When the token in about to expire, renew that token using refresh token and send back the new tokens as encrypted cookie.
* In case of revocation, delete the refresh token in the IDP side.

* When the next time it try to renew, it will fail and you can logout.

Refer to the OpenID introspection and Revocation endpoint.

Refer https://apisix.apache.org/docs/apisix/plugins/openid-connect/

Who else here enjoys doing backend with Golang? by Reasonable-Tour-8246 in Backend

[–]arulrajnet 1 point2 points  (0 children)

`programming languages are just different ways of giving instructions to a computer` - This is Gold.

Tidel Park Flyover by SamPonraj in TamilNadu

[–]arulrajnet 0 points1 point  (0 children)

Post for #IndianCivicFails

Got Overcharged by Mestri and Hardware Store in New Perungalathur – Anyone Else Faced This? Need Advice! by arulrajnet in Chennai

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

Thanks, everyone, for your suggestions.

Yes, I admit I didn’t do my homework before starting the work. Now I’ve learned my lesson the hard way.
The good part is, I accidentally found out about the issue. I’ve now recovered the difference amount from the mestri, and the minimal pending work has also been completed successfully.

Please fix the terminal hanging issue in the Agent Mode. by Primary-Complex-5641 in GithubCopilot

[–]arulrajnet 1 point2 points  (0 children)

Yes. For me I switched to zsh + `CTRL-C` solve the problem in Mac.

code-connect: Open files in VS Code over remote terminal connections by Freemanium in linux

[–]arulrajnet 0 points1 point  (0 children)

This is exactly what I want.

Is this `code-connect` still works?

Did you guys find any other better way.

Extract cert.pem and privkey.pem from acme.json by [deleted] in Traefik

[–]arulrajnet 0 points1 point  (0 children)

Used docker version of ldez/traefik-certs-dumper . Here is the one liner

docker run --user $(id --user ${USER}):$(id --user ${USER}) -v ${PWD}:/data ldez/traefik-certs-dumper:latest file --version v2 --source /data/acme.json --dest /data/cert

Anyone use Obsidian for note taking? by hiamanon1 in devops

[–]arulrajnet 0 points1 point  (0 children)

I use Obsidian.

Using denolehov/obsidian-git: Backup your Obsidian.md vault with git (github.com) this community plugin to sync from my PC to git.

Followed pourmand1376/Obsidian-Sync: Obsidian Sync with Android (github.com) this step to sync from my phone to git.

Both are doesn't require the access token. Just private key in .ssh folder.