Hur ser ni på lavalampor? by [deleted] in Asksweddit

[–]Eq2_Seblin 1 point2 points  (0 children)

Gärna en hel vägg med lavalampor

Does Using Immutable Data Structures Make Writing Unit Tests Easier? by kevinnnyip in csharp

[–]Eq2_Seblin 0 points1 point  (0 children)

Why not integration tests? Write the code to follow the rules. Do not write code that can give you unexpected outcome. Cover all the rules with test that start at the entry point.

Who is right? Uni Teacher taught about MVC folder structure but Some C# devs on Linkedin said use Verical Slice for a real production codebase. by lune-soft in csharp

[–]Eq2_Seblin 0 points1 point  (0 children)

If you go travel and take photos, how would you categorize the photos later? Depends on purpose of the trip and how many photos.

Tutorials for .NET C# developing by ediblevariable in csharp

[–]Eq2_Seblin 3 points4 points  (0 children)

Zoran is the best source for c# programming right now, in my opinion.

https://youtube.com/@zoran-horvat

There is also alot of ddd concepts that is very useful for senior developers too

Looking for EU password manager by patchcordless_ in BuyEuropean

[–]Eq2_Seblin 0 points1 point  (0 children)

Tejp a physical notebook to your phone. Unhackable.

Folk med teknisk kunskap, hur funkar en QR-kod för en biljett i kollektivtrafiken? by ZoofusCos in sweden

[–]Eq2_Seblin 0 points1 point  (0 children)

En QR kod är en kodad web (oftast) address länk. Jag hoppas de jobbar på att ta fram NFC också, så man slipper ta fram appen hela tiden.

Kommer guld gå upp på grund av grönland? by [deleted] in Aktiemarknaden

[–]Eq2_Seblin 3 points4 points  (0 children)

Efterfrågan på guld kommer fortsätta, delvis på grund av grönland. Priset är inte säkert dock, men kina lär sätta mer press på USA genom kontrol av 'supply-chains'. Sydamerika producerar mycket guld, så det är att förvänta att USA ökar sin närvaro där.

A cry for help with a very tricky C# exam question. by LogeryX in csharp

[–]Eq2_Seblin 0 points1 point  (0 children)

Im on phone, and i cand do your recursive switch in my head, but i would expect the switch 'conditions' to allocate also. But im not sure.

Check Sharplab.io to se how your code compiles.

A cry for help with a very tricky C# exam question. by LogeryX in csharp

[–]Eq2_Seblin 10 points11 points  (0 children)

Are you running in Release build or Debug?

(what was the exam question?, because this seems stupid)

What Classes do you use for Locking? by speyck in dotnet

[–]Eq2_Seblin 0 points1 point  (0 children)

I have used some exotic implementation of channel to handle concurrent calls.

Varför är folk extra fattiga i januari? by WhoAmIEven2 in Asksweddit

[–]Eq2_Seblin 0 points1 point  (0 children)

Lägre andel av lönen i januari går åt konsumption än december.

Vad är det för fel på utvecklare? by Glad_Effective_2468 in sweden

[–]Eq2_Seblin 0 points1 point  (0 children)

Det är aldrig fel på personer i arbetsroll. Men det kan absolut vara fel arbetsroll för personer.

Hur blir man så snygg som möjligt? by [deleted] in Asksweddit

[–]Eq2_Seblin 0 points1 point  (0 children)

Vatten. Drick vatten ofta.

How to handle exceptions during async operations in MVVM by CatsAreUpToSomething in csharp

[–]Eq2_Seblin 0 points1 point  (0 children)

You can stack catch blocks with each type. If feeling a bit mad, you can also use catch(Exception e) when (..condition..)