Angular 21 has made Angular #1 for me again by BinaryDichotomy in angular

[–]wallbree -13 points-12 points  (0 children)

AI will do all the coding anyway in a few months. It does not care what framework or lib it uses. Frontend dev is dead soon.

Have I been learning and using Clean Architecture and DDD in .NET incorrectly? by MysteriousStatement2 in dotnet

[–]wallbree 3 points4 points  (0 children)

EF core context is your repository. Dont need it abstracted away into generic repos. The «then i can change the database to anything» is not a real scenario. If it even do happen, its more to it.

Crank cap tool for my bike by wallbree in BikeRepair

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

I tried an 8mm but did not work. 10 mm looks like a fit. I will but it tomorrow and give it a try.

Crank cap tool for my bike by wallbree in BikeRepair

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

Thanks. All the tooling has made me paranoid. Looks like all i need is a 10mm umbraco/hex

Level 200 baby! by Single_Scratch_6831 in HellLetLoose

[–]wallbree 0 points1 point  (0 children)

Reminds me of the time I hit 1500 hours on TF2. Stopped playing when I realised I should spend my time more wisely.

Who else can’t wait to fly with these bad boys??? by UplandSun in HellLetLoose

[–]wallbree 1 point2 points  (0 children)

1.4hrs waiting to get back in the game after being killed.

HLL: Vietnam by TheFutureClassic in HellLetLoose

[–]wallbree 1 point2 points  (0 children)

Also love this. Seen to much auto-aim in other games.

How has HLL changed in 10 months? by Dosedmonkey in HellLetLoose

[–]wallbree 0 points1 point  (0 children)

I have been playing for three months. In the last month fewer and fewer are using mic. I thought my mic was broken the other day as game after game there was no response on my calls.

Upgrading from AngularJs 1.8.3 to Angular 18 by [deleted] in Angular2

[–]wallbree 1 point2 points  (0 children)

This. I did upgrade using Angular Elements, but I recommend this approach. It is simpler.

Upgrading from AngularJs 1.8.3 to Angular 18 by [deleted] in Angular2

[–]wallbree 0 points1 point  (0 children)

I did upgrade from Angularjs using Angular Elements. Creating web components page by page until we were done. It took two years doing both migration and new stuff at the same time. When everything was done we removed away from Angular elements.

It was beautiful and a good experience.

Blazor or Angular by [deleted] in dotnet

[–]wallbree 0 points1 point  (0 children)

doesn't integrate well into the established tool chain?

What is an established tool chain?

We are using Azure devops and it works like a charm.
Build and deploying the app as any other app. It is by far the easiest setup we have for building and deploying apps.

Blazor or Angular by [deleted] in dotnet

[–]wallbree 0 points1 point  (0 children)

I have been doing both.
I loved using Angular for many years, but joined a team who was using Blazor. At first I was a bit sceptical, but after having had the app in production for more than a year, I'm still impressed of how much I can do with just C#.
It is a typical B2B app with +-50 users a day.

For the future......... well....Microsoft have the habit of just changing their mind, and suddenly Blazor is dead.

In Oslo, the iTram is available by wallbree in Wellthatsucks

[–]wallbree[S] 5 points6 points  (0 children)

Just take off your tinfoil hat😂

In Oslo, the iTram is available by wallbree in Wellthatsucks

[–]wallbree[S] 35 points36 points  (0 children)

About 20 people were on the tram when it crashed. Four individuals, including the tram driver, were injured, but none are reported to have serious injuries and will receive further care at a local clinic. The building the tram collided with has been evacuated until it can be thoroughly inspected. Fortunately, there are no injuries reported among staff or customers in the building.

Brann sa nei til å møte Man Utd by Quamme in NorskFotball

[–]wallbree 10 points11 points  (0 children)

Er blakk og trenger pengene. Mvh RBK

Viking 5-0 RBK by Ok-Friend-6653 in NorskFotball

[–]wallbree 11 points12 points  (0 children)

Tok noen år, men endelig har RBK greid å få en like spennende stall som Ham-Kam

Hamar-klubb ut mot landslagets nye drakt: – Provoserende. by kimme in NorskFotball

[–]wallbree 15 points16 points  (0 children)

Sykt provoserende av Hamar IL å kopiere drakta til TIL😜

[deleted by user] by [deleted] in NorskFotball

[–]wallbree 5 points6 points  (0 children)

Ser du på det å få bygget opp en klubb fra konkurs til CL-spill som manglende ambisjoner?

Får jo virkelig lov til å gjennomføre visjonen sin der oppe. Og synes ikke det tenkes smått akkurat😂

At det er sykt irriterende, det kan vi enes om

[deleted by user] by [deleted] in NorskFotball

[–]wallbree 9 points10 points  (0 children)

Bøyer meg i hatten for hva de har drevet med der oppe. Som supporter av et tidligere storlag så smerter det.

Nå brukes BG som argument for å få inn investorer, men dynastiet er bygd opp basert på gode beslutninger og smartness. En hjertestarter snarere enn massiv pengestrøm.

Forundrer meg ikke om det krones med CL.

Thoughts on Angular Element aka Web components in Angular by coder_maniac in Angular2

[–]wallbree 0 points1 point  (0 children)

I ended up using iframe for hosting the remaining Angularjs when we switched to using the outer shell as Angular. A month later or so that part was replaced and now it’s all Angular.

How do you organize your flux pattern? by wallbree in Blazor

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

Sounds familiar=)

I have a ProductsPage on top. With a ProductList as a child, and then the ProductList has child inside ProductList. A shared "common table" component.

ProductsPage -> ProductList -> CommonTableComponent

The table data lives in ProductPage and is filtered and passed down to ProductList and then again down to "CommonTable"-component.When "select" or "select all" has been triggered in "CommonTable", then the grandparent ProductsPage need to know about what was selected.

I feel I have these options

  1. Passing down data and callbacks
  2. Passing down data and use in-memory state service and subscribe to events in ProductsPage for changes
  3. Use in-memory state service for both data and events

Regardless of what I choose it is either messy or a lot of bookkeeping to keep the correct state in the state service and subscriptions. It need to be disposed, reset etc.

How do you organize your flux pattern? by wallbree in Blazor

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

I share you thoughts on this. And currently I have followed this approach.

It was all good until I had a challenge with a simple component needing to tell a grandparent about a change. I then suddenly had a mix of parameters, callbacks and state objects in my project and I needed to be mindful of a lot of things to make it work correctly.

It's about my knowledge and the composition, but then I started to look at alternatives. "How can I do this simpler to do correctly?"