proposals VS FizzBuzzEnterpris

Compare proposals vs FizzBuzzEnterpris and see what are their differences.

proposals

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

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
proposals FizzBuzzEnterpris
15 17
433 -
0.2% -
0.0 -
over 2 years ago -
- -
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.

proposals

Posts with mentions or reviews of proposals. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-23.
  • An intro to TSConfig for JavaScript Developers
    2 projects | dev.to | 23 Apr 2024
    target - Specifies the ECMAScript target version for the emitted JavaScript. Defaults to ES3. To ensure maximum compatibility, set this to the lowest version that your code requires to run. ESNext setting allows you to target the latest supported proposed features.
  • Writing RFCs
    1 project | dev.to | 6 Mar 2024
    TC39
  • Pipeline Operator great again!
    2 projects | dev.to | 29 Sep 2023
    Current Status: You'd have to check the TC39 proposals repository or the official proposal text for the most recent status. As of my last update, it had not yet reached Stage 4 (final stage) of the TC39 process, which means it wasn't part of the ECMAScript specification yet.
  • Set methods proposal reaches stage 3
    6 projects | /r/javascript | 1 Dec 2022
  • Upcoming ECMAScript features I'm excited about
    6 projects | dev.to | 22 Jul 2022
    More proposals can be found on the official GitHub page.
  • What to learn in 2022
    22 projects | dev.to | 19 Apr 2022
  • Updates from the 89th TC39 meeting
    4 projects | /r/javascript | 2 Apr 2022
    There were a couple of other proposals that made stage 1 too, can see here.
  • Don't make me think, or why I switched to Rails from JavaScript SPAs
    22 projects | news.ycombinator.com | 4 Feb 2022
    The working group most in charge of JS is ECMA's TC-39 (TC => Technical Committee) [0]. They've been taking a very deliberate, slow path to expanding the "standard" library because they take a very serious view of backwards compatibility on the web. Some proposals were shifted because of conflicts with ancient versions of things like MooTools still out in the wild, for instance. (This was the so-called "Smooshgate" incident [1].)

    This may speed up a bit if the Built-In Modules proposal [2] passes, which would add a deliberate `import` URL for standard modules which would give a cleaner expansion point for new standard libraries over adding more global variables or further expanding the base prototypes (Object.prototype, Array.prototype, etc) in ways that increasingly likely have backwards compatibility issues.

    TC-39 works all of their proposals in the open on Github [3] and it can be a fascinating process to watch if you are interested in the language's future direction.

    [0] https://tc39.es/

    [1] https://developers.google.com/web/updates/2018/03/smooshgate

    [2] https://github.com/tc39/proposal-built-in-modules

    [3] https://github.com/tc39/proposals

  • O que são RFCs e como elas funcionam na linguagem PHP
    3 projects | dev.to | 10 Jan 2022
  • Ask HN: Where are the resources for complex architectures for Node.js?
    5 projects | news.ycombinator.com | 30 Dec 2021
    My biggest pointer would be to remember that Java & JavaScript aren't named that way by coincidence. They're two different approaches to a similar problem. Java suffers from Enterprise Development (eg: Enterprise FizzBuzz[0]), JavaScript suffers from Ultimate Accessibility (eg: how many questions on Stack Overflow conflated jQuery and JS?).

    > How should exceptions be managed? [...] Has there been a debate about best practice? Where can I find it?

    I suggest you handle the errors you can and otherwise let it crash.[1][2] Debates in NodeJS-land have steered towards more monadic/Result-like structures and working synchronous-looking try/catch onto async/await. NodeJS and its various components are open source, you'll have a lot of luck looking around on GH for issues & PRs related to a feature -- same for the language, ECMAScript[3] officially.[4]

    Since you mentioned Clojure, have you looked at ClojureScript?[5] That may be a good entry to JS authors & articles you'd enjoy.

    > I have the impression that NodeJS is a bit more magical than the JVM [...] Is that correct? Where are good resources on this subject?

    As other replies have mentioned, you're really talking about V8[6] for the "JSVM" executing that code. A thing I've seen throw some people for a loop is how minimalist the specification actually is.[7] The magic in NodeJS is certainly from V8 and the rate of optimizations there but also libuv,[8] what actually powers the infamous event loop.

    Hope that helps!

    [0]: https://github.com/EnterpriseQualityCoding/FizzBuzzEnterpris...

    [1]: Borrowing from Erlang, see Making reliable distributed systems in the presence of software errors, Joe Armstrong, page 104 "Error Handling Philosophy" https://erlang.org/download/armstrong_thesis_2003.pdf

    [2]: _Most_ kinds of errors will cause the process to crash if you don't handle them, https://nodejs.org/dist/latest-v16.x/docs/api/errors.html . Promise rejections don't (yet) though it emits an error, and callback-based APIs will always consist of an [error, data] tuple for the arguments

    [3]: https://github.com/tc39/proposals

    [4]: Because Oracle owns the trademark, of course: http://tarr.uspto.gov/servlet/tarr?regser=serial&entry=

    [5]: https://clojurescript.org/

    [6]: https://v8.dev/docs

    [7]: "ECMAScript as defined here is not intended to be computationally self-sufficient; indeed, there are no provisions in this specification for input of external data or output of computed results. Instead, it is expected that the computational environment of an ECMAScript program will provide not only the objects and other facilities described in this specification but also certain environment-specific objects, whose description and behaviour are beyond the scope of this specification except to indicate that they may provide certain properties that can be accessed and certain functions that can be called from an ECMAScript program." https://tc39.es/ecma262/#sec-overview

    [8]: https://github.com/libuv/libuv

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 proposals and FizzBuzzEnterpris you can also consider the following projects:

DIPs - D Improvement Proposals

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

peps - Python Enhancement Proposals

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

proposal-set-methods - Proposal for new Set methods in JS

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

Nim - Nim is a statically typed compiled systems programming language. It combines successful concepts from mature languages like Python, Ada and Modula. Its design focuses on efficiency, expressiveness, and elegance (in that order of priority).

fibers - Concurrent ML-like concurrency for Guile

temporal-polyfill - Polyfill for Temporal (under construction)

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

proposal-change-array-by-copy - Provides additional methods on Array.prototype and TypedArray.prototype to enable changes on the array by returning a new copy of it with the change.

manifold - Manifold is a Java compiler plugin, its features include Metaprogramming, Properties, Extension Methods, Operator Overloading, Templates, a Preprocessor, and more.