Ken BonnyforKen Bonny's Blogkenbonny.hashnode.net·Apr 30, 2021Introducing C# 10Here is a first for my blog: Rwing offered to translate it to Chinese. So I took him up on it and you can read his translation on his blog cnblogs.com. I hope it says nice things about me. 😁 C# 10 Earlier this week, I followed a talk by Mads Torger...Adventures In Modern Recording and 5 others are discussing this6 people are discussing thisDiscuss·53 likes·30.7K readsC#
Sam WalpoleforDevDocsamwalpole.hashnode.net·Oct 24, 2020How to run ASP.NET Core & SQL Server from DockerI've recently gotten into using Docker in my development cycle and I'm really enjoying how much of a wonderful tool it is. One thing that always used to be a pain was setting up a development server to run SQL Server. Now with Docker, I can just spin...Rajeev Ranjan Roy and 9 others are discussing this10 people are discussing thisDiscuss·52 likes·22.3K readsDocker
Daniel ReisforDaniel Reis's Blogdanspark.hashnode.net·Feb 19, 2021Using function proxies with Azure Static Web AppsAzure Static Web Apps is a service that provides you with a way to serve static content with an Azure Functions backend API. It's currently in preview, but it already looks promising, giving you a variety of useful features to build a web app. You ca...Discuss·42 likes·3.5K readsAzure
Sanbdeep NandeyforSandeep Nandey Blogssandeep-nandey.hashnode.net·Apr 7, 2023Deploy .Net Core AWS Lambda Function using AWS CodeBuild PipelineI have divided the deployment process into 5 steps Understand and update aws-lambda-tools-defaults.json of our .Net project Add a buildspec.yml file to our .Net project Create an AWS CodeBuild pipeline Permissions required to deploy Run CodeBuil...Discuss·127 readsAWS
Tobby UmohforLittle C# Sessionstobby.hashnode.net·Mar 25, 2023A Soft Attempt at Writing a System Design Paper (Spot-A-Hub API)"Simplicity is the soul of efficiency." — Austin Freeman (in The Eye of Osiris) The purpose of this project is to design a simple and free API that allows users (remote workers, developers, designers and so on) to find hubs or co-working spaces clos...Discuss·1 like·80 readsSystem Design
Brecht Van der ElstforBrecht Van der Elstbrechtvde.hashnode.net·Mar 16, 2023Using Source Generators to create a Blazor icon libraryIn this article, you'll learn how to utilize Source Generators to create an icon library for Blazor apps. Source Generators are a powerful tool, which can be used to generate additional C# code during compilation. We won't be designing the icons ours...Discuss·27 readsdotnetcore
George PapadopoulosforPhoesion DevBloggepa.hashnode.net·Mar 13, 2023Using ASP.Net Core in Phoesion GlowPhoesion Glow is a microservice development framework that offers a complete solution for creating, deploying, and managing your microservices. While Phoesion Glow offers a glow-native SDK for writing services, many times we need to use ASP.Net speci...DiscussMicroservices
satishforLearning musingssatish860.hashnode.net·Mar 11, 2023What I Use - My Tech StackThis was one of the trends on Twitter, and I have learned about a lot of tech stacks related to others. So here is my tech stack and the resources to learn about it. UI I am a backend developer, but I try to keep up with the JavaScript framework to a...Discuss·1 like·97 readsdotnetcore
Daniel GeneziniforDaniel Genezini's Blogdanielgenezini.hashnode.net·Mar 2, 2023How to run disposable databases for your tests. Improve your integration tests accuracy with TestcontainersIntroduction Integration tests are essential to ensure that the different components of our system work together as expected and continue to work after changes. In this post, I’ll explain how to spin up disposable database containers to use in integr...Discussdotnet
Daniel GeneziniforDaniel Genezini's Blogdanielgenezini.hashnode.net·Mar 1, 2023Integration tests without API dependencies with ASP.NET Core and WireMock.NetIntroduction Although there are many definitions about the scope of an integration test, Martin Fowler defines Narrow integration tests, where the integration with other systems are tested using mocks, and Broad integration tests, where they communic...Discussdotnet
Md Asif Alamformeasifalammeasifalam.hashnode.net·Feb 26, 2023Assign the same value to multiple variables in a single statementYou might be seen this statement previously where we assign a single value to multiple variables, int num1, num2, num3; num1 = num2 = num3 = 5; But within C# we can assign multiples values to multiple variables using the statement var (a, b, c) = (...Discussc#
Daniel GeneziniforDaniel Genezini's Blogdanielgenezini.hashnode.net·Feb 25, 2023.NET and AWS S3 with LocalStack: How to develop with local S3 bucketsIntroduction LocalStack is an open-source framework that allows us to emulate the major AWS services locally, making it easier to develop and test cloud applications without incurring the cost and complexity of deploying to a real cloud environment. ...Discuss·27 readsdotnet