Skip to contentAboutWho we areMembersTechnical oversight committeeGoverning boardAmbassadorsStaffAnnual report 2020FAQContactProjectsContributeServices for CNCF projectsGraduated & incubating projectsSandbox projectsArchived projectsCloud Native trail mapCloud Native landscapeEnd user tech radarProject journey reportsProject toolsContinuous integrationGraduation criteriaWebsite guidelinesCommunity infrastructure labCopyright noticesCertificationSoftware conformance (Certified Kubernetes)TrainingCerti...
Skip to main contentContentsExit focus modeTable of contentsStart Module 10 Units Beginner Developer Student .NET Take your first steps with F# - Set up your development environment, write your first line of code, and build your first application Learning objectives...
Hardening an ASP.NET container running on Kubernetes
AboutPAC-MAN12 min read. What happens when you build a .NET app? What happens the instant you run it? The last time I studied this was when .NET Framework was in its infancy. That was nearly 20 years ago! Things have changed in those two decades: apps are now cross-platform; .NET has lost its "Framework" moniker; and I've lost my hair! This post looks at:what's in a modern .NET 5 (C#) projectwhat's generated when you buildwhat happens when you run it We won't go into a massive amount of detail, but ...
Z ankiety, którą kiedyś wrzucaliśmy wynikało, że jedną z najbardziej wyczekiwanych zmian w dotnetomaniaku jest rozbudowa mechanizmów związanych z wydarzeniami. W związku z tym rozszerzyliśmy moduł wydarzeń o integrację z publicznym kalendarzem Google. Dzięki niej możecie dodać kalendarz dotnetomaniaka i być na bieżąco z wydarzeniami związanymi z .NET. Aaa jeśli wiecie o jakimś wartościowym wydarzeniu związanym z .NET i chcielibyście podzielić się tą wiedzą z innymi-zapraszamy do dodania go przez stronę ...
Sam July 9th, 2021 API versioning can help evolving our APIs without changing or breaking the existing API services. URL segment, request header, and query string are three ways to achieve API versioning in ASP.NET Core application. ASP.NET Core OData 8, built upon ASP.NET Core, has the built-in API versioning functionality via route URL prefix template. For instance, the following code configures a version template in the route URL prefix to achieve URL based API versioning: services.AddControllers(...
Hassan July 10th, 2021 Few months ago our .NET team announced a newer version of the .NET framework which continues the efforts to deliver the final parts of the .NET unifications plan that started with .NET 5. The newer version is .NET 6, which comes in with more powerful features, configurability, pluggability and extensibility across many platforms. On top of that comes ASP.NET 6, Blazor, MAUI and so many other capabilities that makes the new foundational framework the perfect choice for software e...
Rocket Mortgage Technology BlogRocket Mortgage Technology BlogRocket Mortgage TechnologyFollow·9 min read Measuring Performance in .NET Jason Bock, Developer Advocate, Rocket Mortgage As developers, we come across unique ways to implement algorithms that may seem intriguing, but their novelty must be challenged with performance analysis. In this article, I’ll discuss ways to determine if words are anagrams using prime numbers. I’ll compare this approach to other solutions, and I’ll use Benchmark.NET t...
5th July 20215th July 2021Steve Gordon.NETPart 1: Why do we need a StringBuilder and when should we use one? After becoming proficient in .NET and C#, developers are likely to learn that they should use a StringBuilder to optimise string manipulation and concatenation. This is not a hard and fast rule for all situations but is generally good advice if your code combines or modifies strings repeatedly, particularly if the number of modifications is unbounded and not known until runtime. In this post, I ...
Pieniądze w IT to gorący temat. Jak zresztą w każdym zawodzie. W branży cyfrowej jednak o tyle gorący, że pieniądze są zwykle większe. Podwyżka programisty może być równa jednej trzeciej albo i połowie pensji kelnera, więc jest się czym emocjonować…
Ultimate Guide to Machine Learning with Python - e-books bundle! Become Machine Learning Superhero TODAY! &##128293;FacebookTwitterInstagramLinkedInGitHomeBook 📙BlogContactSelect Page | .NET, C# | 0 commentsSubscribe and receive free guide - Ultimate Data Visualization Guide* indicates requiredEmail Address * C# has been around for a while. Since January 2002, to be more precise. As we wait for the 20th birthday of this popular programming language, we are expecting its new version as well. C# 10 ...
...korporacyjne proxy, antywirusy i innego rodzaju oprogramowanie monitorujące jest w stanie ograniczyć wydajność programisty – moim zdaniem – nawet o połowę. Coś co w normalnych warunkach zajmuje 2 minuty może w takim środowisku zająć minut 10, a to już wystarczająco, by deweloper się zirytował i rozproszył. 2 minuty pozwolą pozostać we flow, a 10 minut frustracji przerodzi się w wizytę w kuchni albo chill-roomie, a następnie w kolejne kwadranse spędzone na powrocie do skupienia.
Bardzo często myśląc o efektywności mówimy o realizacji jak największej liczby zadań w określonym czasie (ang. output). Często nasuwają nam się również miary pokroju Velocity czy Capacity. O ile nie ma nic złego w mierzeniu prędkości zespołu, o tyle mówimy tutaj bardziej o wydajności, a nie efektywności. Prawdziwą efektywność należy utożsamiać z efektem naszej pracy jakim jest produkt. Powinniśmy więc mówić o wartości jaką dostarczamy końcowemu użytkownikowi (ang. outcome), czy też ujmując inaczej z mie...
Laurent April 15th, 2021 Hi! I’m Laurent Ellerbach. I’m a Principal Software Engineer Manager at Microsoft working for the Commercial Software Engineering team. My team and I are doing co-engineering with our largest customers helping them in their digital transformation and focussing on Azure. I’m more focussing on Manufacturing industry and I’ve been involved in IoT for a very long time. I’ve been a contributor to .NET IoT and quickly became one of the main contributors which drove me to work very cl...
Recently, I had to convert an SVG file to PNG. I tried a few free online converters, but none of them were able to convert the image correctly. Indeed, they don't support custom fonts… Instead of wasting more time at searching for an existing tool, I opened Visual Studio and I made a quick application to convert my images!
content Videos Content Index Board Games Photography
The other day at work I ran into an attribute I hadn't heard about, the [Conditional] attribute. In this post I start by describing conditional compilation using pre-processor directives like #if, and then introduce the [Conditional] attribute, and describe how it differs to using #if.Conditional compilation with #if With the release of .NET Core 5 years ago (has it really been that long?!) the need to multi-target .NET libraries and applications became more prominent. As the early versions of .NET...
Dependency injection (DI) software design pattern is one of the most used ones and requires no introduction, but if you need any check out MDNS article about this topic. To achieve Inversion of Control we can use DI Containers, in which we define services and the abstractions that they fulfill so that they can be injected (created) at runtime. .NET Core and .NET5+ has a simple container built-in that allows registering dependencies one by one, but the application can quickly outgrow this approach, plus ...
michielpost.nl Personal blog of Michiel PostcategoriesblockchainblazorauthorMichielpublishedcategoriesblazor Blazor WebAssembly apps can become pretty large (10+ MB), every Blazor app includes the dotnet runtime compatible with WebAssembly, and of course all of your app's dependencies. Microsoft is working on getting the download size as small as possible, with techniques like tree shaking. This means that unused code won't be included in the Release build. But there are also some things we can do ou...
Systemy są coraz większe, rozproszone i skomplikowane. W tym wpisie poruszona jest kwestia monitoringu. Dlaczego jest ważny i co możemy monitorować.