Justinian Erdmier 🇩🇪🏳️‍🌈🇺🇦

4K posts

Justinian Erdmier 🇩🇪🏳️‍🌈🇺🇦 banner
Justinian Erdmier 🇩🇪🏳️‍🌈🇺🇦

Justinian Erdmier 🇩🇪🏳️‍🌈🇺🇦

@JustinianCodes

Software Engineer and #DotNet Evangelist. #Blazor SME. Pronouns: They/him

Someplace, the Universe Beigetreten Eylül 2014
894 Folgt276 Follower
Justinian Erdmier 🇩🇪🏳️‍🌈🇺🇦 retweetet
Fjell
Fjell@underpalewater·
Fjell tweet media
ZXX
16
934
12.5K
95.5K
Justinian Erdmier 🇩🇪🏳️‍🌈🇺🇦 retweetet
JimBobSquarePants 🇺🇦
JimBobSquarePants 🇺🇦@James_M_South·
In my little corner of the #dotnet developer world there seems to be a bit of a renaissance happening. We have @AvaloniaUI and @UnoPlatform both achieving incredible stability, feature sets and performance! I'm seeing @wieslawsoltes churning out amazing UI tooling! We have @KDCoder building a whole 2D game developer framework! It's so inspirational! Is there anything similar I should also be looking at??
English
5
4
72
3.9K
Justinian Erdmier 🇩🇪🏳️‍🌈🇺🇦 retweetet
Mathieu
Mathieu@miniapeur·
Mathieu tweet media
ZXX
19
294
10.6K
106.8K
Justinian Erdmier 🇩🇪🏳️‍🌈🇺🇦 retweetet
DrSmey
DrSmey@dr_smey·
#pixelart #aseprite Set of Icons (2021)
DrSmey tweet mediaDrSmey tweet media
English
29
825
12.9K
259.7K
Justinian Erdmier 🇩🇪🏳️‍🌈🇺🇦 retweetet
Justinian Erdmier 🇩🇪🏳️‍🌈🇺🇦 retweetet
Shilov
Shilov@IndieShilov·
Shilov tweet media
QME
8
137
1.7K
20.1K
Justinian Erdmier 🇩🇪🏳️‍🌈🇺🇦 retweetet
FantasyArtistry
FantasyArtistry@FantasyArtistry·
Stardust Parasaurolophus icon! patreon reward <3
FantasyArtistry tweet media
Română
12
558
3.7K
30.1K
Justinian Erdmier 🇩🇪🏳️‍🌈🇺🇦 retweetet
🪲🎸
🪲🎸@_am__03·
For all the pufferfish fans, I’m so sorry that I couldn’t fix the audio on TikTok😔🤞 I hope that you can enjoy from twitter!
English
21
498
1.7K
17.7K
Justinian Erdmier 🇩🇪🏳️‍🌈🇺🇦 retweetet
Kayla Cinnamon ☕ 🔜 #MVPSummit
Kayla Cinnamon ☕ 🔜 #MVPSummit@cinnamon_msft·
Finally decided to start a YouTube channel! Would greatly appreciate if you went and checked it out 🫶 First video: how to fully customize Windows Terminal with Oh My Posh (and more!) Also let me know if you want to see any specific videos from me! 💖 youtu.be/VFnr0lwwGuQ?si…
YouTube video
YouTube
English
18
81
461
112.1K
Justinian Erdmier 🇩🇪🏳️‍🌈🇺🇦 retweetet
pikaole
pikaole@pikaole·
Bees 🐝
pikaole tweet media
English
92
3.6K
20.7K
271.4K
Justinian Erdmier 🇩🇪🏳️‍🌈🇺🇦 retweetet
Dave Callan | dotnet
Dave Callan | dotnet@Dave_DotNet·
Since Entity Framework 10 we have support for Named (and Multiple) Query Filters 🥳 #dotnet
Dave Callan | dotnet tweet media
English
5
8
85
5K
Justinian Erdmier 🇩🇪🏳️‍🌈🇺🇦 retweetet
Marcel
Marcel@marcelkargul·
the hard thing about product design is making complex things look simple.
Marcel tweet media
English
32
3
251
8.6K
Justinian Erdmier 🇩🇪🏳️‍🌈🇺🇦 retweetet
Milan Jovanović
Milan Jovanović@mjovanovictech·
AI in .NET is way easier than people think. And you can start for free. If you want a practical first project, build vector search: - Turn text into embeddings (vectors) - Store them in your vector store (pg_vector) - Turn the user’s query into a vector - Compare with cosine similarity to find the closest matches That’s why it feels like “search by meaning” instead of keywords. To do this cleanly in .NET, start with MEAI (Microsoft Extensions AI), the official library for LLM + embeddings. Start here: milanjovanovic.tech/blog/working-w… --- Do you want to simplify your development process? Grab my Clean Architecture template here and save 7 days of development time: milanjovanovic.tech/templates/clea…
Milan Jovanović tweet media
English
6
27
154
5.9K
Justinian Erdmier 🇩🇪🏳️‍🌈🇺🇦 retweetet
Milan Jovanović
Milan Jovanović@mjovanovictech·
The best HttpClient config is the one you don’t repeat in every service. In .NET, you set it up once with IHttpClientFactory (and Aspire if you’re using it): - Discovery for service-to-service calls - Resilience defaults so transient failures don’t hurt you Then you just inject the client and write business code. Want the full walkthrough? Start here: milanjovanovic.tech/blog/the-right… --- Do you want to simplify your development process? Grab my Clean Architecture template here and save 7 days of development time: milanjovanovic.tech/templates/clea…
Milan Jovanović tweet media
English
4
22
138
6.4K
Justinian Erdmier 🇩🇪🏳️‍🌈🇺🇦 retweetet
Jubilee ❣️
Jubilee ❣️@16pxl·
wow i love pixel art
Jubilee ❣️ tweet media
English
59
5.2K
45.8K
296.1K
Justinian Erdmier 🇩🇪🏳️‍🌈🇺🇦 retweetet
Mukesh Murugan
Mukesh Murugan@iammukeshm·
I see this mistake in almost every codebase I review. Developers awaiting async calls one by one: var user = await GetUserAsync(); var orders = await GetOrdersAsync(); var stats = await GetStatsAsync(); Each await waits for completion before starting the next. 3 calls at 200ms each = 600ms total. You should learn about Task.WhenAll(). var userTask = GetUserAsync(); var ordersTask = GetOrdersAsync(); var statsTask = GetStatsAsync(); await Task.WhenAll(userTask, ordersTask, statsTask); Now your total wait time = the slowest task. 600ms becomes ~200ms. I use Task.WhenAll() whenever I have: - Multiple API calls that don't depend on each other - Dashboard data fetching from different sources - Notifications going to multiple channels (email, SMS, push) - Cache invalidation across multiple keys Why I love it: - No extra threads needed, just smarter scheduling - Async I/O waits for responses, doesn't block - One simple change, massive performance gain Some lessons I learned the hard way: - Only works when tasks are truly independent - If Task B needs Task A's result, you can't parallelize - For thousands of tasks, I add SemaphoreSlim for throttling Trust me, go check your codebase right now. You'll find at least one place where this applies. Join my free .NET Web API Zero to Hero Course: codewithmukesh.com/courses/dotnet… Found this useful? Repost it to help a fellow developer. #dotnet #csharp #aspnetcore #performance #asyncawait
Mukesh Murugan tweet media
English
6
22
199
13.2K
Justinian Erdmier 🇩🇪🏳️‍🌈🇺🇦 retweetet
Mukesh Murugan
Mukesh Murugan@iammukeshm·
What people think .NET development is: ✏️ Writing C# code 💻 Using Visual Studio 🔧 EF Core scaffolding 🚀 1-click deployments 📝 CRUD apps with minimal endpoints What it REALLY is: The iceberg runs deep 🧊 ↳ Clean Architecture & SOLID principles ↳ Domain-Driven Design ↳ Security & Authorization ↳ EF Core query optimization & transactions ↳ Scalable system designs ↳ Caching & memory management ↳ Code reviews, Git & PR quality ↳ Code coverage & testing ↳ Cost optimizations The surface-level stuff gets you started. The underwater stuff keeps you employed for decades. Which part of the iceberg are you working on right now?
Mukesh Murugan tweet media
English
1
14
78
3.2K