papers

ISO/IEC JTC1 SC22 WG21 paper scheduling and management [GET https://api.github.com/repos/cplusplus/papers: 404 - Not Found // See: https://docs.github.com/rest/repos/repos#get-a-repository] (by cplusplus)

Papers Alternatives

Similar projects and alternatives to papers

  1. rust

    2,917 papers VS rust

    Empowering everyone to build reliable and efficient software.

  2. InfluxDB

    InfluxDB – Built for High-Performance Time Series Workloads. InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.

    InfluxDB logo
  3. rfcs

    697 papers VS rfcs

    RFCs for changes to Rust

  4. Windows Terminal

    The new Windows Terminal and the original Windows console host, all in the same place!

  5. llvm-project

    The LLVM Project is a collection of modular and reusable compiler and toolchain technologies.

  6. CppCoreGuidelines

    The C++ Core Guidelines are a set of tried-and-true guidelines, rules, and best practices about coding in C++

  7. serenity

    The Serenity Operating System 🐞

  8. egui

    234 papers VS egui

    egui: an easy-to-use immediate mode GUI in Rust that runs on both web and native

  9. Stream

    Stream - Scalable APIs for Chat, Feeds, Moderation, & Video. Stream helps developers build engaging apps that scale to millions with performant and flexible Chat, Feeds, Moderation, and Video APIs and SDKs powered by a global edge network and enterprise-grade infrastructure.

    Stream logo
  10. serde

    203 papers VS serde

    Serialization framework for Rust

  11. carbon-lang

    Carbon Language's main repository: documents, design, implementation, and related tools. (NOTE: Carbon Language is experimental; see README)

  12. {fmt}

    175 papers VS {fmt}

    A modern formatting library

  13. STL

    163 papers VS STL

    MSVC's implementation of the C++ Standard Library.

  14. meson

    115 papers VS meson

    The Meson Build System

  15. json

    97 papers VS json

    JSON for Modern C++

  16. cppfront

    95 papers VS cppfront

    A personal experimental C++ Syntax 2 -> Syntax 1 compiler

  17. circle

    60 papers VS circle

    The compiler is available for download. Get it!

  18. cpr

    22 papers VS cpr

    C++ Requests: Curl for People, a spiritual port of Python Requests.

  19. cve-rs

    15 papers VS cve-rs

    Blazingly 🔥 fast 🚀 memory vulnerabilities, written in 100% safe Rust. 🦀

  20. LEWG

    Project planning for the C++ Library Evolution Working Group

  21. sg16-meetings

    SG16 meeting plans and summaries

  22. compiler-explorer

    220 papers VS compiler-explorer

    Run compilers interactively from your web browser and interact with the assembly

  23. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better papers alternative or higher similarity.

papers discussion

papers reviews and mentions

Posts with mentions or reviews of papers. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2025-09-06.
  • C++26: Erroneous Behaviour
    9 projects | news.ycombinator.com | 6 Sep 2025
    The interpretation is probably up for some debate especially since meeting details are not public, but some relevant links are:

    - The P3390R0 Safe C++ proposal and the related vote in the 2024-11 Wrocław meeting: https://github.com/cplusplus/papers/issues/2045

    - The adoption of the paper P3466 R1 (Re)affirm design principles for future C++ evolution at the same meeting, which contains language which can be interpreted as preemptively foreclosing a Safe C++-style approach: https://github.com/cplusplus/papers/issues/2121

  • A 20 year old bug in GTA San Andreas surfaced in Windows 11 24H2
    4 projects | news.ycombinator.com | 23 Apr 2025
    And yet, there is a good chance that C++ will start doing exactly this [1]. Because [2]:

    > The performance impact is negligible (less that 0.5% regression) to slightly positive (that is, some code gets faster by up to 1%). The code size impact is negligible (smaller than 0.5%). Compile-time regressions are negligible. Were overheads to matter for particular coding patterns, compilers would be able to obviate most of them.

    > The only significant performance/code regressions are when code has very large automatic storage duration objects. We provide an attribute to opt-out of zero-initialization of objects of automatic storage duration. We then expect that programmer can audit their code for this attribute, and ensure that the unsafe subset of C++ is used in a safe manner.

    > This change was not possible 30 years ago because optimizations simply were not as good as they are today, and the costs were too high. The costs are now negligible.

    [1] https://github.com/cplusplus/papers/issues/1401

    [2] https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2023/p27...

  • Malloc broke Serenity's JPGLoader, or: how to win the lottery
    5 projects | news.ycombinator.com | 7 Jul 2024
    For whatever its worth, if we wait long enough C++ will include the equivalent of `malloc_good_size`. https://github.com/cplusplus/papers/issues/18
  • Reflection for C++26
    4 projects | news.ycombinator.com | 1 Jul 2024
    https://github.com/cplusplus/papers/issues/1668#issuecomment...

    Looks like it did very well in St. Louis!

  • Qt and C++ Trivial Relocation (Part 1)
    3 projects | news.ycombinator.com | 7 May 2024
    It is slowly making its way through the standards committee. https://github.com/cplusplus/papers/issues/43

    The author has a fork of clang and gcc with some pretty impressive speedups, so I’m hopeful! https://lists.isocpp.org/sg14/2024/04/1127.php

  • Learn Modern C++
    6 projects | news.ycombinator.com | 26 Dec 2023
    What's fun is, because everything is decided in papers, we can find out why! https://github.com/cplusplus/papers/issues/884

    Accepted paper here: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2022/p20...

    > The proposed std::print function improves usability, avoids allocating a temporary std::string object and calling operator<< which performs formatted I/O on text that is already formatted. The number of function calls is reduced to one which, together with std::vformat-like type erasure, results in much smaller binary code (see § 13 Binary code).

    Additionally,

    > Another problem is formatting of Unicode text:

    > std::cout << "Привет, κόσμος!";

    > If the source and execution encoding is UTF-8 this will produce the expected output on most GNU/Linux and macOS systems. Unfortunately on Windows it is almost guaranteed to produce mojibake despite the fact that the system is fully capable of printing Unicode

  • The insanity of compile time programming
    2 projects | /r/cpp_questions | 10 Dec 2023
  • P1673 A free function linear algebra interface based on the BLAS
    1 project | news.ycombinator.com | 23 Nov 2023
  • When will std::linalg make it into a new C++ release?
    1 project | /r/cpp | 14 Sep 2023
    See https://github.com/cplusplus/papers/issues/557
  • C++ Papercuts
    3 projects | news.ycombinator.com | 28 Aug 2023
    Bringing editions to C++ failed, and I am not aware of anyone trying to tackle the issues https://github.com/cplusplus/papers/issues/631

    (I could be wrong though! I follow the committee more than you may guess, but not as much as to think I know everything about what's going on.)

  • A note from our sponsor - SaaSHub
    www.saashub.com | 23 Dec 2025
    SaaSHub helps you find the best software and product alternatives Learn more →

Stats

Basic papers repo stats
89
41
4.0
3 months ago

Sponsored
InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
www.influxdata.com

Did you know that Perl is
the 24th most popular programming language
based on number of references?