{"id":24374932,"url":"https://github.com/gabisonia/resources","last_synced_at":"2025-12-25T14:32:50.432Z","repository":{"id":143113465,"uuid":"397923067","full_name":"gabisonia/resources","owner":"gabisonia","description":"List of resources to became a better .Net developer","archived":false,"fork":false,"pushed_at":"2024-12-09T13:20:36.000Z","size":262,"stargazers_count":16,"open_issues_count":1,"forks_count":2,"subscribers_count":6,"default_branch":"main","last_synced_at":"2025-01-19T05:53:58.465Z","etag":null,"topics":["resources","tutorial"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gabisonia.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-08-19T11:41:55.000Z","updated_at":"2024-12-09T13:20:39.000Z","dependencies_parsed_at":null,"dependency_job_id":"c74db7bb-ea1f-462b-b224-03d8fc9b9006","html_url":"https://github.com/gabisonia/resources","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gabisonia%2Fresources","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gabisonia%2Fresources/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gabisonia%2Fresources/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gabisonia%2Fresources/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gabisonia","download_url":"https://codeload.github.com/gabisonia/resources/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243214691,"owners_count":20255021,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["resources","tutorial"],"created_at":"2025-01-19T05:52:33.636Z","updated_at":"2025-12-25T14:32:50.425Z","avatar_url":"https://github.com/gabisonia.png","language":null,"readme":"# Resources\n\nList of resources to become better .Net developer.\n\n\n## .Net/C#/Asp.Net core\n\n- [📖 CLR Via C#](https://www.amazon.com/CLR-via-4th-Developer-Reference/dp/0735667454/ref=sr_1_1?crid=2EH6KZGSQ7H7U\u0026dchild=1\u0026keywords=clr+via+c%23\u0026qid=1629301636\u0026sprefix=CLR+via%2Caps%2C306\u0026sr=8-1)\n- [📖 Under the Hood of .NET Memory Management](https://www.amazon.com/Under-Hood-NET-Memory-Management/dp/1906434751/ref=sr_1_1?dchild=1\u0026keywords=under+the+hood+.net+memory\u0026qid=1629301670\u0026sr=8-1)\n- [📖C# 9.0 in a Nutshell: The Definitive Reference](https://www.amazon.com/C-9-0-Nutshell-Definitive-Reference/dp/1098100964/ref=sr_1_2?dchild=1\u0026keywords=c%23\u0026qid=1629302034\u0026sr=8-2)\n-   [📖 C# 9 and .NET 5 – Modern Cross-Platform Development: Build intelligent apps, websites, and services with Blazor, ASP.NET Core, and Entity Framework Core using Visual Studio Code, 5th Edition ](https://www.amazon.com/NET-Cross-Platform-Development-intelligent-Framework/dp/180056810X/ref=sr_1_3?dchild=1\u0026keywords=c%23\u0026qid=1629302059\u0026sr=8-3)\n\n\n- [Exception handling best practices](https://stackify.com/csharp-exception-handling-best-practices/)\n- [Memory management](https://medium.com/c-programming/c-memory-management-part-1-c03741c24e4b)\n- [GC](https://docs.microsoft.com/en-us/dotnet/standard/garbage-collection/fundamentals)\n- [GC](https://www.jetbrains.com/help/dotmemory/NET_Memory_Management_Concepts.html)\n- [GC](https://www.cloudsavvyit.com/6006/how-does-memory-management-work-in-c/)\n- [Everything about Garbage collection](https://docs.microsoft.com/en-us/dotnet/standard/garbage-collection/)\n- [Asynchronous and Parallel Programming in C# .NET](https://medium.com/geekculture/asynchronous-and-parallel-programming-in-c-net-1e0f14e1db80)\n- [Async Await Best Practices](https://okyrylchuk.dev/blog/mastering-async-and-await-in-csharp-best-practices/)\n- [Async In depth](https://docs.microsoft.com/en-us/dotnet/standard/async-in-depth)\n- [Async Programming](https://docs.microsoft.com/en-us/dotnet/csharp/async)\n- [Dissecting the async methods in C#](https://devblogs.microsoft.com/premier-developer/dissecting-the-async-methods-in-c/)\n- [Async State Machine](https://mykkon.work/async-state-machine/)\n- [Exploring the async/await State Machine – The Awaitable Pattern ](https://vkontech.com/exploring-the-async-await-state-machine-the-awaitable-pattern/)\n- [Synchronization primitives](https://docs.microsoft.com/en-us/dotnet/standard/threading/overview-of-synchronization-primitives)\n- [Best practices for .Net thread synchronization](https://www.infoworld.com/article/2908302/exploring-thread-synchronization-in-net.html)\n- [Deadlocks in depth I](https://michaelscodingspot.com/c-deadlocks-in-depth-part-1/)\n- [Deadlocks in depth II](https://michaelscodingspot.com/c-deadlocks-in-depth-part-2/)\n- [Memory leaks](https://michaelscodingspot.com/find-fix-and-avoid-memory-leaks-in-c-net-8-best-practices/)\n\n\n- [ASP.NET Core: Middleware](https://www.linkedin.com/learning/asp-dot-net-core-middleware/welcome?u=2113185)\n- [Razor Pages](https://www.linkedin.com/learning/asp-dot-net-core-razor-pages/using-loose-coupling-for-maintainability?u=2113185)\n- [Learning ASP.NET Core MVC ](https://www.linkedin.com/learning/learning-asp-dot-net-core-mvc/reuse-shared-html-markup-with-layouts-2?u=2113185)\n- [Building and Securing RESTful APIs in ASP.NET Core](https://www.linkedin.com/learning/building-and-securing-restful-apis-in-asp-dot-net-core-2018/what-is-rest?u=2113185)\n- [ASP.NET Core Identity: Authentication Management](https://www.linkedin.com/learning/asp-dot-net-core-identity-authentication-management/securing-asp-dot-net-core-apps-with-authentication?u=2113185)\n- [ASP.NET Core Identity: Authorization Management](https://www.linkedin.com/learning/asp-dot-net-core-identity-authorization-management/securing-asp-dot-net-core-apps-with-authorization?u=2113185)\n- [ ASP.NET Core: Security ](https://www.linkedin.com/learning/asp-dot-net-core-security-2?u=2113185)\n\n- [Using HTTP Methods for RESTful Services](https://www.restapitutorial.com/lessons/httpmethods.html)\n\n\n## Logging\n\n- [ ASP.NET Core: Logging with log4net ](https://www.linkedin.com/learning/asp-dot-net-core-logging-with-log4net/leverage-the-power-of-logging-frameworks?u=2113185)\n- [C# Logging best practices in 2021 with examples and tools](https://raygun.com/blog/c-sharp-logging-best-practices/)\n- [Logging in .NET Core and ASP.NET Core](https://docs.microsoft.com/en-us/aspnet/core/fundamentals/logging?tabs=aspnetcore2x)\n- [Logging in .NET](https://docs.microsoft.com/en-us/dotnet/core/extensions/logging?tabs=command-line)\n\n\n## DB\n\n- [Introduction to NoSQL • Martin Fowler • GOTO 2012](https://www.youtube.com/watch?v=qI_g07C_Q5I)\n- [NewSQL vs. NoSQL for New OLTP](https://www.youtube.com/watch?v=uhDM4fcI2aI)\n\n- [SQL SERVER – ACID](https://blog.sqlauthority.com/2007/12/09/sql-server-acid-atomicity-consistency-isolation-durability/)\n- [SQL ACID Database Properties Explained](https://www.essentialsql.com/sql-acid-database-properties-explained/)\n\n- [NOSQL Essential Training](https://www.linkedin.com/learning/nosql-essential-training/get-to-know-nosql?u=2113185)\n\n- [ SQL Server 2014: Developing Databases ](https://www.linkedin.com/learning/sql-server-2014-developing-databases/welcome?u=2113185)\n- [SQL Tips, Tricks, \u0026 Techniques](https://www.linkedin.com/learning/sql-tips-tricks-techniques/welcome?u=2113185)\n\n## Devops Related topics\n\n- [CI/CD](https://www.redhat.com/en/topics/devops/what-is-ci-cd)\n- [CI/CD](https://www.atlassian.com/continuous-delivery/principles/continuous-integration-vs-delivery-vs-deployment)\n- [CI/CD](https://www.synopsys.com/glossary/what-is-cicd.html)\n- [Martin Fowler – Continuous Delivery](https://www.youtube.com/watch?v=aoMfbgF2D_4)\n- [Six Strategies for Application Deployment](https://thenewstack.io/deployment-strategies)\n\n- [Branchning Models](https://www.perforce.com/blog/vcs/git-branching-model-multiple-releases)\n- [Branching Models in a nutshell](https://medium.com/contino-engineering/branching-models-in-a-nutshell-bf24ea1d888a)\n- [A successful Git branching model](https://nvie.com/posts/a-successful-git-branching-model/)\n\n\n- [Docker](https://docs.docker.com/get-started/)\n- [Docker](https://www.youtube.com/watch?v=jPdIRX6q4jA\u0026list=PLy7NrYWoggjzfAHlUusx2wuDwfCrmJYcs)\n- [Docker](https://www.freecodecamp.org/news/the-docker-handbook/amp/?__twitter_impression=true)\n- [K8](https://kubernetes.io/docs/tutorials/)\n- [K8](https://www.youtube.com/watch?v=X48VuDVv0do)\n\n## Design patterns and AntiPatterns\n\n- [📖 Design Patterns: Elements of Reusable Object-Oriented Software](https://www.amazon.com/Design-Patterns-Elements-Reusable-Object-Oriented/dp/0201633612/ref=sr_1_1?crid=R2E2CLND4NPB\u0026dchild=1\u0026keywords=design+patterns\u0026qid=1629300613\u0026sprefix=design+pa%2Caps%2C315\u0026sr=8-1)\n- [📖 Head First Design Patterns: A Brain-Friendly Guide](https://www.amazon.com/Head-First-Design-Patterns-Brain-Friendly/dp/0596007124/ref=sr_1_2?crid=R2E2CLND4NPB\u0026dchild=1\u0026keywords=design+patterns\u0026qid=1629300613\u0026sprefix=design+pa%2Caps%2C315\u0026sr=8-2)\n- [📖 Patterns, Principles, and Practices of Domain-Driven Design](https://www.oreilly.com/library/view/patterns-principles-and/9781118714706/)\n\n- [Code Smells](https://refactoring.guru/refactoring/smells)\n- [GoF Patterns](https://en.wikipedia.org/wiki/Design_Patterns)\n- [Design Patterns](https://www.dofactory.com/net/design-patterns)\n- [Design Patterns in C#](https://refactoring.guru/design-patterns/csharp)\n\n- [Anti-pattern](https://en.wikipedia.org/wiki/Anti-pattern)\n- [Big Ball of Mud](https://exceptionnotfound.net/big-ball-of-mud-the-daily-software-anti-pattern/)\n- [Big Ball of Mud](https://deviq.com/antipatterns/big-ball-of-mud)\n- [God Object](https://en.wikipedia.org/wiki/God_object)\n- [God Object](https://exceptionnotfound.net/god-objects-the-daily-software-anti-pattern/)\n- [Anti-Patterns](https://sourcemaking.com/antipatterns/software-development-antipatterns)\n\n- [Catalog of Patterns of Enterprise Application Architecture](https://martinfowler.com/eaaCatalog/)\n\n\n## Principles\n\n- [📖 Clean Code: A Handbook of Agile Software Craftsmanship](https://www.amazon.com/Clean-Code-Handbook-Software-Craftsmanship/dp/0132350882)\n- [📖 97 Things Every Programmer Should Know](https://www.amazon.com/Things-Every-Programmer-Should-Know/dp/0596809484)\n\n- [SOLID](https://en.wikipedia.org/wiki/SOLID)\n- [SOLID](https://www.digitalocean.com/community/conceptual_articles/s-o-l-i-d-the-first-five-principles-of-object-oriented-design)\n- [SOLID](https://itnext.io/solid-principles-explanation-and-examples-715b975dcad4)\n- [SOLID](https://www.dotnettricks.com/learn/designpatterns/solid-design-principles-explained-using-csharp)\n- [SOLID](https://www.baeldung.com/solid-principles)\n- [SOLID](https://medium.com/@mirzafarrukh13/solid-design-principles-c-de157c500425)\n\n- [10 Crucial Software Development Principles to Live By](https://www.laneways.agency/software-development-principles/)\n- [KISS](https://en.wikipedia.org/wiki/KISS_principle)\n- [YAGNI, DRY Code, KISS Programming and More](https://www.itexico.com/blog/software-development-kiss-yagni-dry-3-principles-to-simplify-your-life)\n- [Rule of three](https://en.wikipedia.org/wiki/Rule_of_three_(computer_programming))\n- [DRY](https://en.wikipedia.org/wiki/Don%27t_repeat_yourself)\n- [Avoiding RepetitionMartin Fowler](https://martinfowler.com/ieeeSoftware/repetition.pdf)\n- [YAGNI](https://en.wikipedia.org/wiki/You_aren%27t_gonna_need_it)\n- [YAGNI](https://martinfowler.com/bliki/Yagni.html)\n- [Stop trying to be so DRY, instead Write Everything Twice (WET) ](https://dev.to/wuz/stop-trying-to-be-so-dry-instead-write-everything-twice-wet-5g33)\n- [Demeter’s Law: Don’t talk to strangers!](https://betterprogramming.pub/demeters-law-don-t-talk-to-strangers-87bb4af11694)\n- [Tell, Don’t Ask, the Pragmatic Way](https://programmingwithmosh.com/net/tell-dont-ask-the-pragmatic-way/)\n- [Top 9 qualities of clean code](https://blog.aspiresys.pl/technology/top-9-principles-clean-code/)\n\n## Testing\n\n- [📖 Test Driven Development: By Example](https://www.amazon.com/Test-Driven-Development-Kent-Beck/dp/0321146530)\n- [📖 BDD in Action: Behavior-driven development for the whole software lifecycle](https://www.amazon.com/BDD-Action-Behavior-driven-development-lifecycle/dp/161729165X)\n\n- [TestPyramid](https://martinfowler.com/bliki/TestPyramid.html)\n- [TestCoverage](https://martinfowler.com/bliki/TestCoverage.html)\n- [Testing and Code Coverage](https://pjcj.net/testing_and_code_coverage/paper.html)\n- [Mutation Testing](https://www.guru99.com/mutation-testing.html)\n- [AAA](https://medium.com/@pjbgf/title-testing-code-ocd-and-the-aaa-pattern-df453975ab80)\n- [FIRST](https://medium.com/@tasdikrahman/f-i-r-s-t-principles-of-testing-1a497acda8d6)\n\n## REST\n\n- [REST](https://en.wikipedia.org/wiki/Representational_state_transfer)\n- [REST](https://restfulapi.net/)\n- [REST](https://www.redhat.com/en/topics/api/what-is-a-rest-api)\n- [REST](https://www.mulesoft.com/resources/api/what-is-rest-api-design)\n- [REST](https://www.ibm.com/cloud/learn/rest-apis)\n\n## Architecture \n\n- [📖 Domain-Driven Design: Tackling Complexity in the Heart of Software](https://www.amazon.com/Domain-Driven-Design-Tackling-Complexity-Software/dp/0321125215/ref=sr_1_1?crid=1IXFRTULIFRPI\u0026dchild=1\u0026keywords=domain+driven+design\u0026qid=1629302305\u0026sprefix=Domain+Dri%2Caps%2C160\u0026sr=8-1)\n- [📖 Implementing Domain-Driven Design](https://www.amazon.com/Implementing-Domain-Driven-Design-Vaughn-Vernon/dp/0321834577/ref=sr_1_2?crid=1IXFRTULIFRPI\u0026dchild=1\u0026keywords=domain+driven+design\u0026qid=1629302320\u0026sprefix=Domain+Dri%2Caps%2C160\u0026sr=8-2)\n- [📖 Building Microservices: Designing Fine-Grained Systems](https://www.amazon.com/Building-Microservices-Designing-Fine-Grained-Systems/dp/1491950358/ref=sr_1_1?dchild=1\u0026keywords=microservices\u0026qid=1629302481\u0026sr=8-1)\n\n- [The Two Sides of Domain-Driven Design (DDD)](http://gorodinski.com/blog/2013/03/11/the-two-sides-of-domain-driven-design/)\n\n- [Microservices](https://microservices.io/)\n- [Mircorservices By Martin Fowler](https://www.martinfowler.com/articles/microservices.html)\n\n- [CQRS Documents by Greg Young](https://cqrs.files.wordpress.com/2010/11/cqrs_documents.pdf)\n- [CQRS By Martin Fowler](https://martinfowler.com/bliki/CQRS.html)\n- [Clarified CQRS - Udi Dahan](https://udidahan.com/2009/12/09/clarified-cqrs/)\n- [From CQS to CQRS](https://herbertograca.com/2017/10/19/from-cqs-to-cqrs/)\n- [CQRS](https://medium.com/eleven-labs/cqrs-pattern-c1d6f8517314)\n\n- [Event Sourcing- Martin Fowler](https://martinfowler.com/eaaDev/EventSourcing.html)\n- [Event Sourcing pattern](https://docs.microsoft.com/en-us/azure/architecture/patterns/event-sourcing)\n- [Event Sorucing](https://microservices.io/patterns/data/event-sourcing.html)\n\n- [ServiceOrientedAmbiguity](https://martinfowler.com/bliki/ServiceOrientedAmbiguity.html)\n- [Microservices vs SOA](https://dzone.com/articles/microservices-vs-soa-2)\n\n- [CAP Theorem](https://robertgreiner.com/cap-theorem-explained/)\n- [CAP Theorem, PACELC, and Microservices](https://ardalis.com/cap-pacelc-and-microservices/?utm_sq=h1xm0gz91i)\n- [An Illustrated Proof of the CAP Theorem](https://mwhittaker.github.io/blog/an_illustrated_proof_of_the_cap_theorem/)\n\n- [Self-contained System (SCS)](https://scs-architecture.org/)\n- [SCS](https://www.youtube.com/watch?v=kxNganR6YQA\u0026list=PLnSDpJU-Yq1GHdrgOZOMdNqMie43Oz3sx)\n\n## Deployment techniques\n- [Six Strategies for Application Deployment](https://thenewstack.io/deployment-strategies/)\n- [Five Advanced Deployment Strategies to Consider under DevOps Methodology.](https://www.opsmx.com/blog/advanced-deployment-strategies-devops-methodology/)\n- [Intro to Deployment Strategies: Blue-Green, Canary, and More](https://harness.io/blog/blue-green-canary-deployment-strategies/)\n- [Colorful deployments: An introduction to blue-green, canary, and rolling deployments](https://opensource.com/article/17/5/colorful-deployments)\n\n## Software development process\n\n- [SDLC](https://stackify.com/what-is-sdlc/)\n- [SDLC](https://www.guru99.com/software-development-life-cycle-tutorial.html)\n- [SDLC](https://www.javatpoint.com/software-engineering-software-development-life-cycle)\n\n- [Pair programming](https://martinfowler.com/articles/on-pair-programming.html)\n- [Pair programming](http://www.extremeprogramming.org/rules/pair.html)\n- [Pair programming](https://medium.com/@weblab_tech/pair-programming-guide-a76ca43ff389)\n- [Pair programming](https://stackify.com/pair-programming-advantages/)\n\n\n## Best Practices for Code Review\n\n- [How to Do Code Reviews Like a Human](https://www.youtube.com/watch?v=0t4_MfHgb_A)\n- [How to Do Code Reviews Like a Human (Part One)](https://mtlynch.io/human-code-reviews-1/)\n- [How to Do Code Reviews Like a Human (Part Two)](https://mtlynch.io/human-code-reviews-2/)\n- [How to Make Your Code Reviewer Fall in Love with You](https://mtlynch.io/code-review-love/)\n- [How to Write a Git Commit Message](https://chris.beams.io/posts/git-commit/)\n\n\n## Agile/Scrum/Kanban/Waterfall\n\n- [Manifesto](https://agilemanifesto.org/)\n- [Agile](https://www.agilealliance.org/agile101/)\n\n- [What's the Difference? Agile vs Scrum vs Waterfall vs Kanban](https://www.smartsheet.com/agile-vs-scrum-vs-waterfall-vs-kanban)\n- [What is Scrum? ](https://www.scrum.org/resources/what-is-scrum)\n- [Kanban Explained for Beginners | The Complete Guide ](https://kanbanize.com/kanban-resources/getting-started/what-is-kanban)\n- [Product development: The Waterfall methodology (model) in software development](https://learn.marsdd.com/article/product-development-the-waterfall-methodology-model-in-software-development/)\n- [Agile vs. Waterfall vs. Kanban vs. Scrum: What’s the Difference?](https://www.lucidchart.com/blog/agile-vs-waterfall-vs-kanban-vs-scrum)\n- [Scrum vs Kanban vs Agile vs Waterfall – A side-by-side comparison ](https://www.ntaskmanager.com/blog/scrum-vs-kanban-vs-agile-vs-waterfall/)\n- [What's the Difference? Agile vs Scrum vs Waterfall vs Kanban](https://www.greycampus.com/blog/agile-and-scrum/agile-vs-scrum-vs-waterfall-vs-kanban)\n- [DoD -DoR](https://orgler.medium.com/what-are-dod-and-dor-in-scrum-14894e0b3d0d)\n- [Scrumban](https://www.planview.com/resources/guide/what-is-scrum/lkdc-what-is-scrumban/)\n- [Scrumban](https://www.productplan.com/glossary/scrumban/)\n- [Agile Estimation Techniques: A Deep Dive Into T-Shirt Sizing](https://www.easyagile.com/blog/agile-estimation-techniques/)\n- [Planning Poker](https://www.mountaingoatsoftware.com/agile/planning-poker)\n- [Project Estimation Techniques Everyone Needs To Know](https://www.wrike.com/blog/project-estimation-techniques/)\n- [ Agile Risk Management: The Need Still Exists ](https://tcagley.wordpress.com/2014/10/18/agile-risk-management-the-need-still-exists/#:~:text=ROAM%20is%20a%20model%20that,doing%20something%20about%20the%20risk.)\n\n## Soft Skills \u0026 Self/Team/Time management\n\n- [Pomodoro technique](https://www.attendancebot.com/blog/pomodoro-technique/)\n- [Pomodoro technique](https://en.wikipedia.org/wiki/Pomodoro_Technique)\n- [Devil’s Advocate Theory](https://medium.com/@kavyachaturvedi10/devils-advocate-theory-196bff3b38cd)\n- [Managing Team Conflict](https://www.linkedin.com/learning/managing-team-conflict/welcome?u=2113185)\n- [Emotional Intelligence in Leadership](https://www.mindtools.com/pages/article/newLDR_45.htm)\n- [Emotional Intelligence](https://www.mindtools.com/pages/article/newCDV_59.htm)\n- [7 Strategies for Resolving Conflict in the Workplace](https://medium.com/@KeithKrach/7-strategies-for-resolving-conflict-in-the-workplace-26a745bb593)\n- [How to Use the STAR Interview Response Method ](https://www.thebalancecareers.com/what-is-the-star-interview-response-technique-2061629)\n- [STAR](https://www.indeed.com/career-advice/interviewing/how-to-use-the-star-interview-response-technique)\n\n## Documentation \u0026 Diagrams\n\n## Blogs/Channels\n\n- [InfoQ](https://www.infoq.com/)\n- [Martin Fowler](https://www.infoq.com/)\n- [Scott Hanselman](https://www.hanselman.com/blog/)\n- [DDD Europe](https://www.youtube.com/channel/UC3PGn-hQdbtRiqxZK9XBGqQ)\n- [NDC Conferences](https://www.youtube.com/channel/UCTdw38Cw6jcm0atBPA39a0Q)\n- [Microservices](https://microservices.io/)\n- [Udi Dahan](https://udidahan.com/)\n- [Michael's Coding Spot](https://michaelscodingspot.com/)\n- [GoTo](https://www.youtube.com/user/GotoConferences)\n- [TechWorld with Nana](https://www.youtube.com/channel/UCdngmbVKX1Tgre699-XLlUA)\n- [Sourcemaking](https://sourcemaking.com/)\n- [Vladimir (Vlad) Khorikov](https://enterprisecraftsmanship.com/)\n- [ Dotnetos ](https://www.youtube.com/c/Dotnetos/playlists)\n- [dotnetketchup](https://dotnetketchup.com/)\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgabisonia%2Fresources","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgabisonia%2Fresources","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgabisonia%2Fresources/lists"}