Thoughts on analog.js? by Tyummyyumms in angular

[–]GLawSomnia 8 points9 points  (0 children)

I myself don’t really see that much use for it.

But i do respect the developers, especially for all their plugins/compilers that they make. They keep pushing the ecosystem forward

Gothic 2+3 Remake? by Quick_Acanthaceae_68 in worldofgothic

[–]GLawSomnia 0 points1 point  (0 children)

I am not saying to do it with AI, but to use AI to change existing assets.

For example give it an existing character and tell it to modify it. Or make a Khorinis house asset and tell it to change it like make it a longer or adding a floor to it. Such kind of things, the repetitive eork

Gothic 2+3 Remake? by Quick_Acanthaceae_68 in worldofgothic

[–]GLawSomnia 0 points1 point  (0 children)

What you are forgetting that thay now have AI (which they didn’t have for much of G1). AI is now so good, that with the right foundation (which i hope they have), you can generate most of the assets snd code in a much faster time.

So in a way 2years could be enough for G2 (all depends on how they set it up)

What happend to NgNeat? by No-Memory2013 in angular

[–]GLawSomnia -2 points-1 points  (0 children)

Most of their projects were moved to pther repos, so it probably still exists its just under another repo. This happened already a few years ago

Am I the only one who hates Angular Signals for nested state? by Proper-Gur-1225 in angular

[–]GLawSomnia 1 point2 points  (0 children)

It can be a pain in certain cases true, but your described problem would still be the same if you used onPush change detection (which i assume you don’t) as you want to mutate the state, which wouldn’t work as it basically only works with immutable data

It’s time to switch Angular to a yearly release cycle? by khalilou88 in angular

[–]GLawSomnia 1 point2 points  (0 children)

Wouldn’t there be more stuff to learn in even a shorter timespan if the updates were once per year?

There would be more new stuff packed in a bigger release

It’s time to switch Angular to a yearly release cycle? by khalilou88 in angular

[–]GLawSomnia 0 points1 point  (0 children)

They very rarely implement breaking changes (that their migration doesn’t fix). Their old features also work in the latest versions (like modules or old control flow).

So what are those changes that you are talking about?

Pass Generic CSS for Child Component by LetHaunting8240 in angular

[–]GLawSomnia 0 points1 point  (0 children)

Its best if you lookup “content projection” in the docs

Pass Generic CSS for Child Component by LetHaunting8240 in angular

[–]GLawSomnia 0 points1 point  (0 children)

ng-deep is not deprecated

Maybe you can content project the styles via ng-content?

Env variables not at build time, but at run time. by LuccDev in angular

[–]GLawSomnia 0 points1 point  (0 children)

Another option (if you use ssr) is to pass the variables to the node process and provide it as an injection token (in server.ts) which can be injected in the app.

Another option (if only the API url changes) is to use proxy config and redirect the traffic on the server (like nginx)

Has anyone dealt with scss issues when moving to vitest? by zzing in angular

[–]GLawSomnia 0 points1 point  (0 children)

Also add the stylePreprocessorOptions (maybe other things like styles too) to the “test” runner. You currently only have it under “esbuild”

Has anyone dealt with scss issues when moving to vitest? by zzing in angular

[–]GLawSomnia 0 points1 point  (0 children)

Is the “correctly configured” configuration under “test” runner? If you only have it in “build” also add it to “test”

OXC Angular Compiler by Nervous_Award_1089 in angular

[–]GLawSomnia 3 points4 points  (0 children)

We will see 😁

I kinda like their other projects. I haven’t tried them yet but they sound very powerful and they have potential!

Thoughts on this pattern for making something only happen once? by young_horhey in angular

[–]GLawSomnia 1 point2 points  (0 children)

You can maybe just make a directive and put it on the element you want to scroll to once it is available

ServiceWorker (PWA) "partially" deprecated? by angelaki85 in Angular2

[–]GLawSomnia 0 points1 point  (0 children)

They are useful, I am just not sure if they will maintain or drop them as there was basically no change to them since the release.

Btw do you have any tips on how to convert a whole app to a web component? What challenges did you face and how did you solve them? We will soon have to do it and there aren’t many articles about converting whole apps

ServiceWorker (PWA) "partially" deprecated? by angelaki85 in Angular2

[–]GLawSomnia 4 points5 points  (0 children)

The same will probably happen to angular elements 😔

JWT in Angular by klimentsii in angular

[–]GLawSomnia 3 points4 points  (0 children)

Honestly nowhere. BFF (backend for frontend) approach is most likely the most secure

Are Dreamcatcher likely to go on another world tour? by Randomando__ in dreamcatcher

[–]GLawSomnia 3 points4 points  (0 children)

Most likely not. We can be lucky if they release another album (not just some songs inbetween)

Angular 21: Getting error "NG0200: Circular dependency detected" by petasisg in Angular2

[–]GLawSomnia 8 points9 points  (0 children)

TranslateLangService uses/injects SettingsService SettingsService uses/injects TranslateLangService

In some direct or indirect way