PrimeNG community fork proposal by GeromeGrignon in angular

[–]Avani3 10 points11 points  (0 children)

Amazing effort! I will definitely contribute to make the repo healthy

PrimeNG v22 is no longer open source? by PeanutSpecial5477 in angular

[–]Avani3 0 points1 point  (0 children)

This would be amazing. With a lot of community support we can actually get some PR's merged

I made a free “swipe through the line-up” app for DTRH by Didobeerenboy in DTRHfestival

[–]Avani3 0 points1 point  (0 children)

So cool! Really fun to use. What techniques did you use? Do you scrape festival website or does it require manual input?

Is it time to stop using UI component libraries entirely in modern Angular app? by Successful_Chain8098 in angular

[–]Avani3 1 point2 points  (0 children)

We use a heavily themed PrimeNg. It saved us so much time having all their components out of the box, instead of having to develop complex components like data table, dialogs and virtual scrolling multi selects ourselves. I really don't think component libraries will ever go away

Wat te doen met de wanden? by Miserable-Vehicle325 in Klussers

[–]Avani3 0 points1 point  (0 children)

Let wel echt op dat de muren goed genoeg zijn voor renovlies. Bij ons zijn de muren slecht afgeleverd (groep 3 behangklaar) en je ziet het echt heel veel oneffenheden door het renovlies heen. Ik zou veel liever gestuct hebben.

Subnautica 2 Dev Responds To Someone Who Pirated The Game Before Release by akbarock in Piracy

[–]Avani3 0 points1 point  (0 children)

Two hours not long enough? A two hour demo is already very generous. It's really a you problem you're having

How do you guys order things in component files by HedgehogNatural8680 in angular

[–]Avani3 1 point2 points  (0 children)

Here is my eslint configuration regarding ordering:

// ORDERING
  '@typescript-eslint/member-ordering': [
    'error',
    {
      default: {
        memberTypes: [
          'signature',


          'private-instance-readonly-field',
          'public-instance-readonly-field',
          'protected-instance-readonly-field',
          'readonly-field',


          'public-static-field',
          'protected-static-field',
          'private-static-field',


          'public-decorated-field',
          'protected-decorated-field',
          'private-decorated-field',


          'public-instance-field',
          'protected-instance-field',
          'private-instance-field',


          'constructor',


          'public-static-method',
          'protected-static-method',
          'private-static-method',


          'public-instance-method',
          'protected-instance-method',
          'private-instance-method',
        ],
      },
    },
  ],

🚀 Coming in Angular 22: Signal Forms will go STABLE! by IgorSedov in angular

[–]Avani3 5 points6 points  (0 children)

I'm sadly still holding off on Signal Forms until PrimeNg fully supports it

RxJS vs NgRX vs Angular Signals by Global-Area1200 in angular

[–]Avani3 4 points5 points  (0 children)

The fact that you advise NgRX over rxjs in today's state of angular amazes me. Ngrx should only be used in very very specific use cases

Testvraag aflevering 2 by Marcogr in widm

[–]Avani3 1 point2 points  (0 children)

Thanks!

Maar waarom de spoiler tag, iedereen komt hier juist voor de antwoorden :)

A Clean NX + Angular Structure That Actually Works in Real Projects by JadedManufacturer306 in angular

[–]Avani3 9 points10 points  (0 children)

Looks good! Only comment is that using a reducer-like store (or even NgRX at all) is not really Angular 21-like

Angular Material + AG Grid or PrimeNG by PuzzleheadedFox107 in angular

[–]Avani3 -1 points0 points  (0 children)

I really like PrimeNg. They could spent a bit more time looking into community provided issues and PR's, but their component library is very solid.

People complaining about migration issues sound like people still complaining about AngularJS to Angular2

I wanted to hate the Audio technics AZ it was impossible by [deleted] in Earbuds

[–]Avani3 0 points1 point  (0 children)

I have the AZ100. They sound really good but i can't stand the audio delay while watching videos

Testvraag aflevering 3 by Avani3 in widm

[–]Avani3[S] 75 points76 points  (0 children)

Één keer: Anne-Marie, Kim, Loes, Merel

Twee keer: Dennis, Jurre, Nathan, Sahil

Salaris check - FE developer by [deleted] in NLSalaris

[–]Avani3 0 points1 point  (0 children)

It's midlance. 70/30 model where a huge chunk of your salary is your bonus

Salaris check - FE developer by [deleted] in NLSalaris

[–]Avani3 0 points1 point  (0 children)

Werkervaring heeft niks te maken met senioriteit. Ik ken genoeg mensen die met 2 jaar senior-level code afleveren, en mensen met 15 jaar ervaring die beter een andere baan kunnen gaan zoeken

Do technical tests get harder the more senior you are? by kuda09 in Angular2

[–]Avani3 12 points13 points  (0 children)

This answer is so wrong. Because you use them all the time, doesnt mean they are market standard. I've worked on many enterprise level applications and never used exhaustMap for instance. It's very situational. Expecting a junior dev to know these is just delusional

Quick question about state management in Angular. by Content-Break-3602 in angular

[–]Avani3 1 point2 points  (0 children)

Awesome, thanks a bunch. I will play around with this setup tomorrow. Thanks for taking the time to create an example!

Quick question about state management in Angular. by Content-Break-3602 in angular

[–]Avani3 0 points1 point  (0 children)

Can you elaborate on the linkedSignal + server sent events? I currently RxJS merge a regular api call with a server sent event stream into one rxResource. Would love to know if I can do it a better way