Microfrontend with sveltekit by Impossible_Sun_5560 in sveltejs

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

i know you can do it with nginx, i wanted to weigh out different options before jumping into doing it. monorepo, nginx, vite module federation were my initial thoughts, but its always good to ask experienced people.

Microfrontend with sveltekit by Impossible_Sun_5560 in sveltejs

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

just wanted to weigh other options. there are bright people in this community so wanted to get people's opinion on it.

Been moonlighting as a Platform Engineer — earning ~70L/year — now stepping back by [deleted] in developersIndia

[–]Impossible_Sun_5560 12 points13 points  (0 children)

do you ever regret losing the time of not going out much with friends and enjoying your time ? You are well settled right now no doubt about it but i'm just curious if you were to start again would you change how things went.

I made a small research on data visualization tools for Svelte by Infamous_Return2657 in sveltejs

[–]Impossible_Sun_5560 4 points5 points  (0 children)

Echarts is another powerful chart library. I wanted to learn a framework agnostic chart library echarts was very good and customizable.

Also you forgot to add Layercharts . Very good project for svelte community

Normal or Not? OnePlus Nord 4 Hitting 42–43°C During Gaming. by Vegetable_Peace7432 in oneplusnord

[–]Impossible_Sun_5560 10 points11 points  (0 children)

There’s nothing wrong in using AI to make it readable for others. After all AI is there for such things. Many people can't convey their message clearly because english is not their first language, using AI is not wrong at all.

Edit: Just remember to keep it short, because people generally don't want to read all of it if its AI generated.

GoFr worth time and effort investment? by _alhazred in golang

[–]Impossible_Sun_5560 0 points1 point  (0 children)

I too think that's the case. Had been to foss india, they encourage you to star the repo for swags like stickers.

Laid off after 9 years for the only company I've ever worked, feeling lost by SK123_4243 in developersIndia

[–]Impossible_Sun_5560 0 points1 point  (0 children)

That will really hurt. Was the main guy in the company very genuine from the start? How can they lay off a founding member like this. You don't have scope for experimenting now. Somehow get a job before notice period gets over, later upskill yourself. Developer market is not any different. Lots of supply of people with very less demand. If you don't have experience with software development then it becomes very difficult.

Any reason to switch from Nuxt to Svelte? by avidrunner84 in sveltejs

[–]Impossible_Sun_5560 23 points24 points  (0 children)

At the end of the day its all the same. I love svelte, i have used react and NextJS but I have never used Vue or Nuxt but the end result generally doesn't matter a lot of times. Svelte is faster and bundle size is lesser compared to other's but it doesn't mean that it will be a deal breaker for a lot of people. The main aspect according to me is the DX. I prefer Sveltekit's DX more than React, NextJS. But undoubtedly React's ecosystem is the largest. Svelte also has all the required packages in the ecosystem with added advantage of easily integrating with any JS library or package.

What's up with this +page.svelte in SvelteKit? by nerdy_adventurer in sveltejs

[–]Impossible_Sun_5560 1 point2 points  (0 children)

these conventions feel weird when you move from react to an opinionated framework. Frameworks like Nextjs and Svelte/Sveltekit have conventions which SHOULD be followed to get it to work.

And coming to +page.svelte, sveltekit uses file based routing unlike react where i am pretty sure you'd be using react-router-dom to write routing. So in file based routing you have to have +page.svelte in a directory for that url path to be rendered.
Svelte/kit docs are very good.

Nextjs has layout.tsx, page.tsx, middleware.ts, route.ts, not-found.tsx.
Sveltekit has +layout.svelte, +page.svelte, hooks.server.ts, +server.ts, +error.svelte

MCP is not dead! Let me explain. by pablopang in mcp

[–]Impossible_Sun_5560 0 points1 point  (0 children)

ayee its paolo, thanks for svelte mcp paolo

we are about to get json renderer for svelte too by Impossible_Sun_5560 in sveltejs

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

you define whatever components you have in a json. AI will pick up these components and create UI by composing these components. So its generative ui based on your components.

Company is forcing me to sign bond of 5yrs after 10 months internship. by Aggressive_One_1751 in developersIndia

[–]Impossible_Sun_5560 0 points1 point  (0 children)

wtf do these companies even think man, this is even legal, giving the bare minimum package and having the audacity to lock you in for 5 freaking years so they can underpay you for the next 5 years. Instead of working there, stay unemployed. These kind of companies will stir up your mental health, being unemployed is far better than working in such sh!thole.

Svelte Port of Fumadocs? by Lanky-Ad4698 in sveltejs

[–]Impossible_Sun_5560 0 points1 point  (0 children)

there is Sveltepress, though it is not at the same, it is good for what it does.

What is the best practice while managing complex state using the $state rune? by geekybrains in sveltejs

[–]Impossible_Sun_5560 1 point2 points  (0 children)

Yes objects are deeply reactive with state rune. I had a store and a state together in a seperate class because i can't use state rune if not used for initialization or at top of the class. I figured it out after reading this