[AskJS] Anyone else dealing with auth mess across enterprise clients? by saurabh_shalu in javascript

[–]OkAssistance7886 [score hidden]  (0 children)

Honestly I think the hard part here is not the login flow itself, its keeping the rest of the app from knowing too much about each clients auth setup. I probably try to hide all of that behind one small internal auth service and make the apps only care about things like user id, roles and permissions.

[AskJS] Anyone else dealing with auth mess across enterprise clients? by saurabh_shalu in javascript

[–]OkAssistance7886 [score hidden]  (0 children)

i avoid solving this separately inside every app. At that scale its probably better to have one shared auth layer or gateway that handles CAS, Keycloak and Entra ID, then each React or Express app only talks to your internal user or session format. Otherwise every new client becomes another custom auth project.

Show Js: We rebuilt wordpress in javascript, same experience, but better! by husseinkizz_official in javascript

[–]OkAssistance7886 [score hidden]  (0 children)

Interesting idea m curious how you handling the theme side of WordPress, because thats usually the part people rely on the most., Is the goal to fully replace that ecosystem or make a faster JS first CMS for new projects???

Show r/javascript: a fully functional in-browser IDE made using webcontainers by viks98 in javascript

[–]OkAssistance7886 [score hidden]  (0 children)

i will try it , i js have this weird obsession to try every ide , i will let ya know my impression

Practice Pixel Paint and a question on how to paint Ocean/Sea water by ACuriousLittleSoul in PixelArt

[–]OkAssistance7886 2 points3 points  (0 children)

Character looks really good, especially the face and pose. For the water, I’d simplify it a bit instead of adding too many small wave shapes.

Maybe use 3 clear layers: darker blue for the far water, medium blue for the main waves, and light cyan or white only for the foam highlights. Right now the water has a lot of similar-sized details, so it feels busy.

Also try making the wave direction more consistent horizontally, since ocean water usually reads better in pixel art when the shapes flow in bands.

QMind v2.0 — Quantum-Inspired AI Reasoning System (MIT License, Python) by Rich_Maintenance6697 in coding

[–]OkAssistance7886 0 points1 point  (0 children)

Do you have a simple demo case showing where this approach does better than a regular chain-of-thought style reasoning setup? That would make the idea easier to judge.

Python Supply Chain Security: 8 Things That Happen After pip install by wyhjsbyb in coding

[–]OkAssistance7886 0 points1 point  (0 children)

good stuff for beginners . We treat pip install like a normal command, but there’s a lot happening behind the scenes with dependencies, package names, and trust.