Come on, a whole modulo operation? What are we running on, a super computer??

This page summarizes the projects mentioned and recommended in the original post on /r/ProgrammerHumor

Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
  • SharpLab

    .NET language playground

  • I have never worked with C#, so I can't really tell you unfortunately. If I inspect the "JIT ASM" of the following code in sharplab.io, in Release mode, it seems that similar optimizations are performed. static bool IsEvenA(int n) { return (~n & 1) != 0; } static bool IsEvenB(int n) { return n %2 == 0; }

  • WorkOS

    The modern identity platform for B2B SaaS. The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning.

    WorkOS logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts