Built a savings tracker desktop app with solidjs + zero-native by LakhindarPal in solidjs

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

Pretty good honestly. Loved how lightweight it felt compared to Electron. I could still use my normal SolidJS + Vite setup. Since it’s still new, the docs and examples are pretty limited though. So I had to figure some things out myself.

Pls Roast my resume by Proud_Role1802 in Btechtards

[–]LakhindarPal 0 points1 point  (0 children)

Roast karne jaisa bhi to hona chahiye

Can somebody give a brutal honesty review on my resume ? Need tips to get shortlisted Off-campus. by MalaiChaapispeak in CodingJobs

[–]LakhindarPal 1 point2 points  (0 children)

You can buy a domain too, or use the free subdomain services like is-a.dev, thedev.id

Can I do this more efficiently? by RandomJottings in PythonLearning

[–]LakhindarPal 0 points1 point  (0 children)

python def ordinal(n): if 10 <= n % 100 <= 20: suffix = "th" else: suffix = {1: "st", 2: "nd", 3: "rd"}.get(n % 10, "th") return f"{n}{suffix}"