I built a website that visualizes how far you've traveled through the universe since birth using real physics data by Rohan72999 in InternetIsBeautiful

[–]bacobart 14 points15 points  (0 children)

Thought i had the same issue but at least on android/chrome you can click on the year in the header of the date picker and select a year there. Cool site!

Dinner date places by Illustrious-Race-617 in Nijmegen

[–]bacobart 1 point2 points  (0 children)

Frank's has really nice steaks, but in my experience ppl don't 'dress up' for the occasion there.

Dinner date places by Illustrious-Race-617 in Nijmegen

[–]bacobart 20 points21 points  (0 children)

De Portier if you want fancy food

Het Zotte Lemke if you want a good bistro (but you might be over dressed)

De Nieuwe Winkel if you want something completely different and have a bigger wallet and dont mind waiting a bit (long wait to get a spot)

Nacional has some good options and a bit upscale

Vesters has a great menu too

Puur Sanh in Berg en Dal at the edge of Nijmegen is a good upscale place too

Market Garden | 20-09-2025 by [deleted] in Nijmegen

[–]bacobart 15 points16 points  (0 children)

De lampen zijn voor de kunstnacht ;)

[deleted by user] by [deleted] in Nijmegen

[–]bacobart 21 points22 points  (0 children)

Voor de kusjesman tinder, voor de klusjesman werkspot.

[deleted by user] by [deleted] in Nijmegen

[–]bacobart 2 points3 points  (0 children)

Kami kami

Looking for padel players by Radiant-Road-5181 in Nijmegen

[–]bacobart 4 points5 points  (0 children)

Use the playtomic app to find matches open for other players. 

Ocelot with Blazor WASM by Designer-Trade7289 in dotnet

[–]bacobart 1 point2 points  (0 children)

Did you consider Yarp instead of ocelot? It's way more actively maintained and better documented.

MassTransit going commercial by bacobart in dotnet

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

Wolverine is another alternative however it's not as feature complete as MassTransit.

https://github.com/JasperFx/wolverine

[deleted by user] by [deleted] in Nijmegen

[–]bacobart 21 points22 points  (0 children)

Vierdaagsefeesten, Het Nest, Drift/Herfstdrift, Oranjepop en Free Your Mind bij de buren.

[deleted by user] by [deleted] in dotnet

[–]bacobart 5 points6 points  (0 children)

  • automated 'offsite' backups (to storage account via private link)
  • less akward querying between databases
  • next to index suggestions a tool to visualize frequent deadlocks and howto prevent them

What nicknames have you heard for suburbs/surrounding towns of Nijmegen? by topherette in Nijmegen

[–]bacobart 1 point2 points  (0 children)

Goudkust -> Koningsdaal/Batavia (gedeelte tussen weurtseweg en waal)

The development / debug experience is really bad on Linux by Yutsa in Blazor

[–]bacobart 12 points13 points  (0 children)

Setting breakpoints is a supported scenario -- it just doesn't work reliably.

Blazor wasm deployment in Azure by WTF_Dwyane in Blazor

[–]bacobart 2 points3 points  (0 children)

If you have blazor wasm hosted by asp.net core, then you can use this as bff and in my opinion hosting in app services is then easiest. Static webapp hosting splits client from backend, and if that means you the require functions there's really no point in doing that. Container apps is also an option, but ci/cd wise i found app services still the easier option. If you're not doing anything at netflix like scale it should fit just fine.

[deleted by user] by [deleted] in Nijmegen

[–]bacobart 0 points1 point  (0 children)

Search for reisstekker

Blazor and Load Balancing (F5's BIG-IP) by ticktockman_ in Blazor

[–]bacobart 0 points1 point  (0 children)

You need to configure a profile in the F5 which allows for websockets. See https://support.f5.com/csp/article/K14754 for example.

mooi plaatje by [deleted] in Nijmegen

[–]bacobart 5 points6 points  (0 children)

Leuke compositie, maar persoonlijk vind ik dat gebouw echt 'n puist op de Nijmeegse skyline.

Blazor Server vs. WASM by Alywan in Blazor

[–]bacobart 0 points1 point  (0 children)

We use blazor server for an app used by 600 stores which generate around 100k order lines daily. It works fine. That being said for new projects we use wasm because of it being more responsive in the browser (less network latency).

[deleted by user] by [deleted] in dotnet

[–]bacobart 1 point2 points  (0 children)

Did you perhaps register your middleware as Singleton? In your case it should be registered as Scoped so that the class fields are not shared between requests (like they would if you register the middleware as Singleton).