AspNetCoreDiagnosticScenarios VS FizzBuzzEnterpris

Compare AspNetCoreDiagnosticScenarios vs FizzBuzzEnterpris and see what are their differences.

AspNetCoreDiagnosticScenarios

This repository has examples of broken patterns in ASP.NET Core applications (by davidfowl)

FizzBuzzEnterpris

By EnterpriseQualityCoding
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
AspNetCoreDiagnosticScenarios FizzBuzzEnterpris
53 17
7,454 -
- -
6.0 -
about 1 month ago -
C#
- -
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

AspNetCoreDiagnosticScenarios

Posts with mentions or reviews of AspNetCoreDiagnosticScenarios. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-30.
  • Asynchronous Programming in C#
    9 projects | news.ycombinator.com | 30 Apr 2024
    Important: following #prefer-asyncawait-over-directly-returning-task from https://github.com/davidfowl/AspNetCoreDiagnosticScenarios/b... is not correct.

    The concerns raised are niche and edge case and task must always be forwarded as is provided there is no post-processing or resource cleanup with idisposable.

  • Give me your async/await gotchas
    3 projects | /r/dotnet | 9 Dec 2023
    This one is a pretty decent guide - https://github.com/davidfowl/AspNetCoreDiagnosticScenarios/blob/master/AsyncGuidance.md
  • What's the Benefit/Allure of Async/Await vs. CSP/Green Threads (and Other Concurrency Models)?
    6 projects | /r/rust | 9 Dec 2023
    The C# (mostly applicat community has e.g. https://github.com/davidfowl/AspNetCoreDiagnosticScenarios/blob/master/AsyncGuidance.md written by one of the Asp.Net architects. I found this in this lovely thread https://news.ycombinator.com/item?id=36785691 which expresses my views/confusion more clearly than I can express.
  • The State of Async Rust
    9 projects | news.ycombinator.com | 25 Sep 2023
    No it doesn't, hence why there are best practices guidelines written by the .NET architects, and there was a research project to add Go/Java co-routines as well.

    https://github.com/davidfowl/AspNetCoreDiagnosticScenarios/b...

    https://twitter.com/davidfowl/status/1532880744732758018?lan...

    https://github.com/dotnet/runtimelab/issues/2057

    https://github.com/dotnet/runtimelab/issues/2398

  • Java 21 makes me like Java again
    22 projects | news.ycombinator.com | 16 Sep 2023
  • The Downsides of C++ Coroutines
    1 project | news.ycombinator.com | 13 Aug 2023
    They don't work just fine in C#, there is a reason why one of ASP.NET architects has written a guide of best practices.

    https://github.com/davidfowl/AspNetCoreDiagnosticScenarios/b...

  • No-GIL mode coming for Python
    7 projects | news.ycombinator.com | 29 Jul 2023
    Many that praise async/await in C#, kind of forget it took about 10 years to spread across all the layer of the language and runtime, since it was done via IL rewriting, it caused several issues with F# async tasks, due to the age of the ecosystem plenty of code isn't async/await friendly and needs to be wrapped into Task.Run() or similar.

    There is a best practices guideline from one of the ASP.NET architects, https://github.com/davidfowl/AspNetCoreDiagnosticScenarios/b...

    During last year they researched adding Go/Java's approach to .NET, but now it is too late. See the ASP.NET Q&A session at BUILD 2023.

  • Task vs threads - use cases
    2 projects | /r/dotnet | 12 Jul 2023
    The best guidance I have found was from here: AsyncGuidance.md
  • How Much Memory Do You Need to Run 1M Concurrent Tasks?
    6 projects | news.ycombinator.com | 21 May 2023
    To expand upon this thought, here is the AsyncGuidance doc[1] on why not to use .Result to get the return value of a completed Task in C#.

    To make this simple they introduced async Main[2] a few years ago.

    [1]: https://github.com/davidfowl/AspNetCoreDiagnosticScenarios/b...

  • React developer to NET
    5 projects | /r/dotnet | 11 May 2023
    Async Guidance

FizzBuzzEnterpris

Posts with mentions or reviews of FizzBuzzEnterpris. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-09-16.
  • Java 21 makes me like Java again
    22 projects | news.ycombinator.com | 16 Sep 2023
    > I'll answer your question with a question: Have you seen https://github.com/EnterpriseQualityCoding/FizzBuzzEnterpris... ? :)

    You can write that kind of crap in any language, including C++.

  • No One Wants Simplicity
    2 projects | news.ycombinator.com | 23 Aug 2023
    There’s a difference between complexity that’s inherent to the problem, and complexity that’s added by developers who have drunk architectural cool aid.

    This is an example where all of the complexity is caused by rigid adherence to the most popular architectural patterns of about 10 years ago.

    https://github.com/EnterpriseQualityCoding/FizzBuzzEnterpris...

    It looks completely ridiculous to modern eyes, but during peak OOP it was just how you should do it.

    If you like simplicity then your fizz buzz implementation would be a few lines.

  • Virtual Threads Arrive in JDK 21, Ushering a New Era of Concurrency
    8 projects | news.ycombinator.com | 12 Apr 2023
    https://github.com/EnterpriseQualityCoding/FizzBuzzEnterpris... isn't too far removed from some of what I've seen in big tech, especially architecture-wise. Certainly less costly absurdity.
  • Subverting the Software Interview
    4 projects | news.ycombinator.com | 15 Jan 2023
    What you need is Fizzbuzz, Enterprise Edition

    https://github.com/EnterpriseQualityCoding/FizzBuzzEnterpris...

  • Every day, I commit a new and more complicated version of some simple code
    3 projects | news.ycombinator.com | 28 Oct 2022
  • Ask HN: Why do you make class members private?
    2 projects | news.ycombinator.com | 25 Jul 2022
    It's been a decade since I used C# but the corporate design pattern culture of that language back then turned me off of it forever.

    Everything looked like this: https://github.com/EnterpriseQualityCoding/FizzBuzzEnterpris...

    Maybe it's better now but the Java/C# practice of shoveling largely empty classes around with an IDE isn't something I'd point to as a good example.

  • Why DRY is the most over-rated programming principle
    4 projects | news.ycombinator.com | 7 Jul 2022
    ```

    With your example I had to think for about 1-2 min before it made sense. If the codebase is full of clever stuff then I have to spend hours understanding all of the clever things before I can make changes. If everything is simple then it's easy to change.

    If you want to see where overengineering leads you then take a look at this project. https://github.com/EnterpriseQualityCoding/FizzBuzzEnterpris...

    It is satire but I have absolutely worked in places that write code like that.

    Good programmers know that it's 10x times harder to read code than write it, so they deliberately keep it simple so that they can read it later.

  • Why programmers are not paid in proportion to their productivity
    2 projects | news.ycombinator.com | 29 Jun 2022
    I did something similar a 4 or so years back. I wrote something in a month (+ a couple of working with stakeholders to make sure it did what it should). I did it in a legacy tech stack that the architects didn't like, on the side of the main activity, as the deadline was coming close and some hireing processes were slow.

    A team of around devs 5 (some coming and going) having been trying to solve the same problem since, but they're still not being close to finished.

    In other words, the productivity is in the order 50x to 100x slower than when I did it. Rather, the main reason was that I knew how to write code like that, while they were set up to fail.

    Basically, some architect was making all sorts of unnecessary demands for how to wite the code, and the programers were not familiar with much of the tech stack that was introduced.

    Also, coding standards were really verbose, easily 10x-30x what I wrote, in lines of code. The current state of what they have look suspiciously like FizzBuzzEnterpriseEdition:

    https://github.com/EnterpriseQualityCoding/FizzBuzzEnterpris...

    TLDR; Incompetent tech leadership prone to cargo-culting, can slow down productivity to virtually zero. In some cases, productivity can go up by ~100x if ignoring their demands.

  • The use of `class` for things that should be simple free functions (2020)
    3 projects | news.ycombinator.com | 29 May 2022
    I swear I've worked with people who if they were shown FizzBuzzEnterpriseEdition wouldn't be able to see the joke as that's how they naturally write all code.

    https://github.com/EnterpriseQualityCoding/FizzBuzzEnterpris...

  • The mindless tyranny of “what if it changes?” as a software design principle
    4 projects | news.ycombinator.com | 22 May 2022
    Reminds me of FizzBuzzEnterpriseEdition . https://github.com/EnterpriseQualityCoding/FizzBuzzEnterpris...

    You never know when you might need to change the implementation of how the "Fuzz" string is returned, so you need a FuzzStringReturner.

    And you never know when you might need multiple different ways of returning "Fuzz", so you need a FuzzStringReturnerFactory.

    And that barely scratches the surface of what you need.

What are some alternatives?

When comparing AspNetCoreDiagnosticScenarios and FizzBuzzEnterpris you can also consider the following projects:

PSI - Private Set Intersection Cardinality protocol based on ECDH and Bloom Filters

FizzBuzz Enterprise Edition - FizzBuzz Enterprise Edition is a no-nonsense implementation of FizzBuzz made by serious businessmen for serious business purposes.

t-digest - A new data structure for accurate on-line accumulation of rank-based statistics such as quantiles and trimmed means

holochain - The current, performant & industrial strength version of Holochain on Rust.

WPF - WPF is a .NET Core UI framework for building Windows desktop applications.

lwjgl3ify - A mod to run Minecraft 1.7.10 using LWJGL3 and Java 17, 19, 20

hamt - A hash array-mapped trie implementation in C

proposals - ✍️ Tracking the status of Babel's implementation of TC39 proposals (may be out of date)

Hot Chocolate - Welcome to the home of the Hot Chocolate GraphQL server for .NET, the Strawberry Shake GraphQL client for .NET and Banana Cake Pop the awesome Monaco based GraphQL IDE.

fibers - Concurrent ML-like concurrency for Guile

eShopOnWeb - Sample ASP.NET Core 8.0 reference application, powered by Microsoft, demonstrating a layered application architecture with monolithic deployment model. Download the eBook PDF from docs folder.

music-explorer - A music scraper, navigator, archiver, and cataloger for people looking for new sounds.