r_cpp | Unsorted

Telegram-канал r_cpp - C++ - Reddit

-

Stay up-to-date with everything C++! Content directly fetched from the subreddit just for you. Join our group for discussions : @programminginc Powered by : @r_channels

Subscribe to a channel

C++ - Reddit

Race Track Project

Hello Everyone ,

I'm creating a project which is a race track between two characters ; Hare and Tortoise .

I need to create an obstacle with a marked X and if any racer hits it , it will cause them to either go back 2 step or miss a turn .

However , here when I'm trying to assign the X to the array , some of them are out of the track .

Any reason how to fix it ?

Here are the code below :

--------------------------------------------------------------------------------------------------------------------------

#include <iostream>

#include <string>

#include <ctime>



using namespace std;



// function declarations

int checkWinner(int harePosition, int tortoisePosition);

bool checkTie(int harePosition, int tortoisePosition);

int characterSpeed(int minSpeed, int maxSpeed);

void display_track(int position1, int position2, char character1, char character2, const int obstacles[\], int numObstacles);



const int TRACK_SIZE = 27; // Size of the track



int main() {

srand(time(0)); // seed for the random speed generator

int harePosition = 0; // starting position for hare

int tortoisePosition = 0; // starting position for tortoise

bool running = true;

char nextRound; // input for the user to go to the next round

string name1, name2, email1, email2; // Player information

int choice1, choice2;

char decision;



// Player 1 Registration

cout << "Enter your name for player 1: ";

cin >> name1;



cout << "Enter your email for player 1: ";

cin >> email1;



// Ask if user wants to register another player (player 2)

cout << "Do you need to register another player? (Y/N): ";

cin >> decision;

if (decision == 'Y') {

cin.ignore(); // Clear newline character from buffer

cout << "Enter your name for player 2: ";

getline(cin, name2);

cout << "Enter your email for player 2: ";

getline(cin, email2);

} else if (decision == 'N') {

cout << "Alright, let's start the race!" << endl;

} else {

cout << "Error, please try again." << endl;

return 1; // Exit program with error

}



// Choose racers for both players

cout << "Choose a racer to participate in the game for player 1:" << endl;

cout << "1. Hare" << endl;

cout << "2. Tortoise" << endl;

cout << "Enter the number corresponding to your choice: ";

cin >> choice1;



// If player 2 is registered, choose racer for player 2

if (decision == 'Y') {

cout << "Choose a racer to participate in the game for player 2:" << endl;

cout << "1. Hare" << endl;

cout << "2. Tortoise" << endl;

cout << "Enter the number corresponding to your choice: ";

cin >> choice2;

}



cin.ignore(); // Clear newline character from buffer



// Get number of obstacles and their positions

int numObstacles;

cout << "Enter the number of obstacles (5-10): ";

cin >> numObstacles;

while (numObstacles < 5 || numObstacles > 10) {

cout << "Invalid number of obstacles. Please enter a number between 5 and 10: ";

cin >> numObstacles;

}



int obstacles[10\];

for (int i = 0; i < numObstacles; ++i) {

cout << "Enter position for obstacle " << i + 1 << " (0-" << TRACK_SIZE - 1 << "): ";

cin >> obstacles[i\];

while (obstacles[i\] < 0 || obstacles[i\] >= TRACK_SIZE) {

cout << "Invalid position. Please enter a position between 0 and " << TRACK_SIZE - 1 << ": ";

cin >> obstacles[i\];

}

}



display_track(harePosition, tortoisePosition, 'H', 'T', obstacles, numObstacles); // display the track before hare and tortoise move



while (running == true) // while the race is still running

{

cout << "Do you want to continue to the next round? (Y/N): ";

cin >> nextRound;

if (nextRound != 'Y') break;



cout << "***********************************************************" << endl << endl;

int tortoiseSpeed = characterSpeed(1, 5); // Generates random speeds for tortoise from 1 to 5

int hareSpeed = characterSpeed(2, 4); // Generates random speeds for hare from 2 to 4

harePosition += hareSpeed; // updates hare's position after getting the speed

tortoisePosition += tortoiseSpeed; // updates tortoise's

Читать полностью…

C++ - Reddit

C++20 modules import granularity

As far as I can see C++20 modules do not support granularity while importing a module.

In Rust it's use module::{BlahBlah}
In Python it's from Library import BlahBlah
In Swift it's import class Library.BlahBlah
an so on...

IMHO it's kinda obvious that you could need such functionality as you modules grow. Even just to avoid having all the symbols from the module showing up on your screen while you typing std:: and intellisense kicks in.

What is the rationale behind this decision of not having support for import granularity?

https://redd.it/1dtmjxb
@r_cpp

Читать полностью…

C++ - Reddit

As a non-computer scientist, what advantages could cpp have for me?

Hey, I know this might be a frequent question if it's worth learning this language or not, but I come from a bit different background. I'm a bioinformatics student and for previous projects I've used mostly Python, sometimes R and Matlab. These projects included some data analysis, ML, mathematical modelling etc. but not really anything deeper than this. This semester we are required to take a c++ course. As far as I know most advantages c++ has over other languages come handy in software development but since I'm not doing anything remotely similar to that I was wondering if it could have any advantages for a very surface level user as me.

https://redd.it/1dtj4r2
@r_cpp

Читать полностью…

C++ - Reddit

Cannot Output Multi-Byte characters

This program cannot output Multi-Byte characters as it only outputs code units not code points. I've made a program for school; that goes through a plain text file and makes a concordance for each word. It will take each word, remove non-alphabetical characters from the front and back, and put it into a Binary Search Tree. When encountering Multi-Byte Unicode characters in a text, you get random ascii characters that make up the multibyte character instead of what it is: for example, "yarns—and," is outputted as "yarnsùand." I spent hours months ago and this week trying to solve this problem, so what do I do?

[https://www.codeproject.com/Articles/38242/Reading-UTF-8-with-C-streams#mozTocId353176](https://www.codeproject.com/Articles/38242/Reading-UTF-8-with-C-streams#mozTocId353176) This article seemed useful. But not being able to read in utf-8 is a solved problem, so making up a facet didn't seem useful. I didn't try it though because of that. Using imbue(utf8\_locale/utf16\_locale) does not help nor does imbuing wsstream with codecvt, Here is a MRE of the bug. I used wstring because when I made this program and went back to it I didn't know how unicode worked until recently.

#include <string>
#include <iostream>
#include <fstream>
#include <windows.h>
#include <consoleapi2.h>
using namespace std;

int main()
{
wfstream file;
file.open("Example.txt", ios::in);
// Changes buffer from char to wchar_t
wchar_t* buffer = new wchar_t[100];
file.rdbuf()->pubsetbuf(buffer, 100);
wchar_t CurrentStreamCharacter = file.get();
wstring NewWord = L"";
while (file)
{
NewWord.push_back(CurrentStreamCharacter);
CurrentStreamCharacter = file.get();
}
//SetConsoleOutputCP(65001);
wcout << NewWord << endl;
wcout << "yarns—and even convictions. The Lawyer—the best of old fellows—had,";
return 0;
}

https://redd.it/1dt9oru
@r_cpp

Читать полностью…

C++ - Reddit

Code review?

Hello, I taught myself c++ and was wondering if someone would like to do a code review for me.
It is a somewhat small game engine (for now). And I’m not worried about a graphics analysis of it. Just the c++ code. Make sure I’m writing the language right.
If interest, heres the link: https://github.com/Cj0x7c00/Anvil.git

the Dev branch is the latest.

https://redd.it/1dt38g6
@r_cpp

Читать полностью…

C++ - Reddit

C++ Jobs - Q3 2024

Rules For Individuals
---------------------

* **Don't** create top-level comments - those are for employers.
* Feel free to reply to top-level comments with **on-topic** questions.
* I will create top-level comments for **meta** discussion and **individuals looking for work**.

Rules For Employers
-------------------

* If you're hiring **directly**, you're fine, skip this bullet point. If you're a **third-party recruiter**, see the extra rules below.
* **Multiple** top-level comments per employer are now permitted.
+ It's still fine to consolidate multiple job openings into a single comment, or mention them in replies to your own top-level comment.
* **Don't** use URL shorteners.
+ [reddiquette][] forbids them because they're opaque to the spam filter.
* **Use** the following template.
+ Use \*\*two stars\*\* to **bold text**. Use empty lines to separate sections.
* **Proofread** your comment after posting it, and edit any formatting mistakes.

Template
--------

\*\*Company:\*\* [Company name; also, use the "formatting help" to make it a link to your company's website, or a specific careers page if you have one.]

\*\*Type:\*\* [Full time, part time, internship, contract, etc.]

\*\*Compensation:\*\* [This section is **optional**, and you can omit it without explaining why. However, including it will help your job posting stand out as there is [extreme demand][] from candidates looking for this info. If you choose to provide this section, it must contain (a range of) **actual numbers** - don't waste anyone's time by saying "Compensation: Competitive."]

\*\*Location:\*\* [Where's your office - or if you're hiring at multiple offices, list them. If your workplace language isn't English, please specify it. It's suggested, but not required, to include the country/region; "Redmond, WA, USA" is clearer for international candidates.]

\*\*Remote:\*\* [Do you offer the option of working remotely? If so, do you require employees to live in certain areas or time zones?]

\*\*Visa Sponsorship:\*\* [Does your company sponsor visas?]

\*\*Description:\*\* [What does your company do, and what are you hiring C++ devs for? How much experience are you looking for, and what seniority levels are you hiring for? The more details you provide, the better.]

\*\*Technologies:\*\* [Required: what version of the C++ Standard do you mainly use? Optional: do you use Linux/Mac/Windows, are there languages you use in addition to C++, are there technologies like OpenGL or libraries like Boost that you need/want/like experience with, etc.]

\*\*Contact:\*\* [How do you want to be contacted? Email, reddit PM, telepathy, gravitational waves?]

Extra Rules For Third-Party Recruiters
--------------------------------------
Send modmail to request pre-approval on a case-by-case basis. We'll want to hear what info you can provide (in this case you can withhold client company names, and compensation info is still recommended but optional). We hope that you can connect candidates with jobs that would otherwise be unavailable, and we expect you to treat candidates well.

Previous Post
-------------

* [C++ Jobs - Q2 2024](https://www.reddit.com/r/cpp/comments/1btvc6m/c_jobs_q2_2024/)

[reddiquette]: https://support.reddithelp.com/hc/en-us/articles/205926439
[extreme demand]: https://www.reddit.com/r/cpp/comments/sz0cd5/c_jobs_threads_should_include_salarycompensation/

https://redd.it/1dt0z4i
@r_cpp

Читать полностью…

C++ - Reddit

[https://www.youtube.com/watch?v=6xzR-IR85wM](https://www.youtube.com/watch?v=6xzR-IR85wM)
* Perfect Hashing in an Imperfect World - Joaquín M. López Muñoz - [https://www.youtube.com/watch?v=yOo6GnbKzp8](https://www.youtube.com/watch?v=yOo6GnbKzp8)
* The top 5 debugging techniques — Number 5 will surprise you! Sebastian Theophil - [https://www.youtube.com/watch?v=Mj8Pwo9F9tw](https://www.youtube.com/watch?v=Mj8Pwo9F9tw)
* How to Run Deep Learning Without Melting Your Phone -Iago Suarez - [https://www.youtube.com/watch?v=i9nN9qA4IxQ](https://www.youtube.com/watch?v=i9nN9qA4IxQ)
* Introduction to Sender Receiver framework and std execution - Goran Arandelovic - [https://www.youtube.com/watch?v=8V2bfeUZ31c](https://www.youtube.com/watch?v=8V2bfeUZ31c)

05/27/2024 - 06/02/2024

* Using Moody Camel s Implementation to parallelize code execution - Javier Abud [https://www.youtube.com/watch?v=KI9upSqZK4k](https://www.youtube.com/watch?v=KI9upSqZK4k)

**C++OnSea**

C++OnSea have also released some interview videos with some of their 2024 speakers to promote their upcoming conference which you can find in this playlist

[https://www.youtube.com/playlist?list=PL5XXu3X6L7jsQpt18\_TNitUW5KquxMSan](https://www.youtube.com/playlist?list=PL5XXu3X6L7jsQpt18_TNitUW5KquxMSan)

https://redd.it/1dsvw74
@r_cpp

Читать полностью…

C++ - Reddit

New C++ Conference Videos Released This Month - June 2024 (Updated To Include Videos Released 06/24/2024 - 06/30/2024)

This month the following C++ videos have been published to YouTube. A new post will be made each week as more videos are released

**ACCU Conference**

06/24/2024 - 06/30/2024

* The Benefits of Learning a Different Programming Language - Francis Glassborow - [https://youtu.be/S51Q6j\_vhGc](https://youtu.be/S51Q6j_vhGc)
* Narrow Contracts and \`noexcept\` are Inherently Incompatible in C++ - John Lakos - [https://youtu.be/VCwC1cvP8i0](https://youtu.be/VCwC1cvP8i0)
* C# Performance - Demons, Wizards, Warriors, Auditors - Steve Love - [https://youtu.be/J2fmQxyg7PM](https://youtu.be/J2fmQxyg7PM)

06/17/2024 - 06/23/2024

* Green Software Architecture - Dos Don'ts and Some Surprises - Giovanni Asproni - [https://youtu.be/Ir5Ka81I-ZE](https://youtu.be/Ir5Ka81I-ZE)
* How DLang Improves my Modern C++ and Vice Versa - Mike Shah - [https://youtu.be/CnKsOak0DHU](https://youtu.be/CnKsOak0DHU)
* CTAD: Complete Guide to Class Template Argument Deduction - Nina Ranns - [https://youtu.be/c3R7aNf39o0](https://youtu.be/c3R7aNf39o0)

06/10/2024 - 06/16/2024

* Keynote: Safety, Security, Safety\[sic\] and C/C++\[sic\] - C++ Evolution - Herb Sutter - [https://youtu.be/EB7yR-1317k](https://youtu.be/EB7yR-1317k)

**C++Online**

06/24/2024 - 06/30/2024

* Templates Made Easy With C++20 Using Constexpr/Consteval, Fold Expressions, and Concepts - [https://youtu.be/59lFn3dfdOQ](https://youtu.be/59lFn3dfdOQ)
* Lightning Talk: What Does It Take to Implement the C++ Standard Library? Follow-up: Mandates vs Constraints? - Christopher Di Bella - [https://youtu.be/2OZvnr79q3c](https://youtu.be/2OZvnr79q3c)
* Lightning Talk: Rust Without ‘Unsafe’ Is as Unsafe as C++ - Pavel Novikov - [https://youtu.be/vh\_TO93neEs](https://youtu.be/vh_TO93neEs)

06/17/2024 - 06/23/2024

* Uninitialized Uses in Systems C++ Programming: The Bytes Before the C++ Types - JF Bastien - [https://youtu.be/n7Tl1qJxTew](https://youtu.be/n7Tl1qJxTew)
* Hijacking Singletons to Enable Unit Testing of C++ Legacy Code - David Benson - [https://youtu.be/vZGfj32vPmE](https://youtu.be/vZGfj32vPmE)
* The Strategy Design Pattern in Cpp - Mike Shah - [https://youtu.be/PHJ0jizBhpE](https://youtu.be/PHJ0jizBhpE)

06/10/2024 - 06/16/2024

* Coroutines and gRPC - Jonathan Storey - [https://youtu.be/kFgA-47fbjM](https://youtu.be/kFgA-47fbjM)
* flat\_map - WHO NEEDS THEM? THEY’RE JUST LIKE std::map. WE ALL HAVE THEM - Pavel Novikov - [https://youtu.be/qIjA4JpFA7w](https://youtu.be/qIjA4JpFA7w)
* C++ Tooling Intuition - Kevin Carpenter - [https://youtu.be/lWOx5cuj1hc](https://youtu.be/lWOx5cuj1hc)

06/03/2024 - 06/09/2024

* Vulnerable C++ - Peter Sommerlad - [https://youtu.be/CALka5ZldL0](https://youtu.be/CALka5ZldL0)
* Debugging Your Hardest C++ Bugs With Time Travel Debugging from Undo - Greg Law - [https://youtu.be/R6QQT8sSmcA](https://youtu.be/R6QQT8sSmcA)
* Best C++ Debugger for Large Scale Linux Codebases 2024 - [https://youtu.be/H9WiyFzaB4o](https://youtu.be/H9WiyFzaB4o)

05/27/2024 - 06/02/2024

* Designing for C++ Concurrency Using Message Passing - Anthony Williams - [https://youtu.be/D1oBq4PIEW8](https://youtu.be/D1oBq4PIEW8)
* Beginners' Guide to C++20 Coroutines - Andreas Fertig - [https://youtu.be/4xdef0fRsQ0](https://youtu.be/4xdef0fRsQ0)
* Keynote: Can AI Replace Programmers? - Frances Buontempo - [https://youtu.be/jX\_NoK-xdrk](https://youtu.be/jX_NoK-xdrk)

**Audio Developer Conference**

06/24/2024 - 06/30/2024

* Fast Audio Thread Synchronization for GPU Data - Evan Mezeske - [https://youtu.be/lb8b1SYy73Q](https://youtu.be/lb8b1SYy73Q)
* The Sound of Audio Programming - Developing Perfect Glitch - Balazs Kiss - [https://youtu.be/rlMvfFGEj3Q](https://youtu.be/rlMvfFGEj3Q)
* Properties of Chaotic Systems for Audio - George Gkountouras and Christopher Johann Clarke - [https://youtu.be/NG6lzDZXHeE](https://youtu.be/NG6lzDZXHeE)

06/17/2024 - 06/23/2024

* Unlock Your Audio Processing Superpowers With Rest API - Baptiste Vericel & Alexandre Louiset -

Читать полностью…

C++ - Reddit

AlgoPlus: A C++17 educational library for complex algorithms!

***AlgoPlus*** is an educational repository that contains complex data structures and algorithms, with test cases, documentation, examples and tutorials. AlgoPlus also has visualization tools for the basic data structures to help students with their assignments. Lately, we've added machine learning and image processing classes and algorithms and we want your help to add more content! I hope you like the project and i'll be glad to see you contribute to the repo. Thank you!

https://redd.it/1dssied
@r_cpp

Читать полностью…

C++ - Reddit

How does one get better at visualising concurrent programs with different std::memory_order?

Hello, I am curious if anyone was in the situation as I am in currently in. I am trying to study up on how Folly implements its synchronisation constructs, but there are quite a lot of dependencies involved with different std::memory_order.

To be fair, I only have limited experience with memory order that aren't seq_cst and I am eager to know how some people went from less experienced to implementing synchronisation constructs. Is there some method to help visualise what is required when different memory_order are involved?

Thanks for any recommendation or insights!

https://redd.it/1dsrx6g
@r_cpp

Читать полностью…

C++ - Reddit

string to long long conversion overflow detection

I'm using the functions strtoull and strtoll which `If the value read is out of the range of representable values by a long long int, the function returns LLONG_MAX or LLONG_MIN`
According to cpluplus.com reference the functions strtoull and strtoll has `No-throw guarantee: this function never throws exceptions.`. In many discussions they claim that those function do throw an error, but that might be compiler benevolence.

The question is how do you really detect out of range/overflow? I mean what if the user inputs ULLONG_MAX+1 in the string - then the function will return simply ULLONG_MAX and I will have no idea.
My wrappaer function is expected to return false to signify that the input string cannot be converted (as is and accurately). Converting to float will present an inaccuracy which is not acceptable.
Is there a good solution, or do I just re-invent the wheel a rewrite the standard function to check the value after each character to implement the exception handling? I'm happy to use any other standard function if there is such.

EDIT: The project is on C++11; std::from_chars is C++17

https://redd.it/1dsnxba
@r_cpp

Читать полностью…

C++ - Reddit

Joint study funded by ESA for use of C++20 in space environments
https://essr.esa.int/project/c-20-for-the-flight-software-language-study-and-coding-guidelines

https://redd.it/1dsmyns
@r_cpp

Читать полностью…

C++ - Reddit

is there any news about the CPP meeting in St. Louis?



https://redd.it/1dsc0oe
@r_cpp

Читать полностью…

C++ - Reddit

non temporal stores

Hi y'all.

Is there way to make std::copy to use streaming stores? otherwise, is there non-intrinsics way to move cache lines from one buffer to another without polluting cache?

https://redd.it/1ds7i72
@r_cpp

Читать полностью…

C++ - Reddit

3392,405.603,405.601,ns,,,,,

"BM_person_read_reflect_cpp_flexbuf_without_field_names",2167793,321.101,321.093,ns,,,,,

"BM_person_read_reflect_cpp_json",1225628,571.902,571.897,ns,,,,,

"BM_person_read_reflect_cpp_json_without_field_names",1757822,398.118,398.115,ns,,,,,

"BM_person_read_reflect_cpp_msgpack",1425793,491.913,491.909,ns,,,,,

"BM_person_read_reflect_cpp_msgpack_without_field_names",1803249,386.098,386.092,ns,,,,,

"BM_person_read_reflect_cpp_toml",122858,5694.06,5694,ns,,,,,

"BM_person_read_reflect_cpp_xml",591230,1189.07,1189.06,ns,,,,,

"BM_person_read_reflect_cpp_yaml",14617,47839.4,47838.9,ns,,,,,

"BM_person_write_reflect_cpp_bson",684273,1023.76,1023.73,ns,,,,,

"BM_person_write_reflect_cpp_cbor",1388509,478.303,478.3,ns,,,,,

"BM_person_write_reflect_cpp_cbor_without_field_names",2038970,345.263,345.258,ns,,,,,

"BM_person_write_reflect_cpp_flexbuf",569154,1229.35,1229.35,ns,,,,,

"BM_person_write_reflect_cpp_flexbuf_without_field_names",1426989,490.664,490.661,ns,,,,,

"BM_person_write_reflect_cpp_json",1996308,350.625,350.623,ns,,,,,

"BM_person_write_reflect_cpp_json_without_field_names",3188792,219.995,219.993,ns,,,,,

"BM_person_write_reflect_cpp_msgpack",2212824,315.955,315.947,ns,,,,,

"BM_person_write_reflect_cpp_msgpack_without_field_names",4180564,168.111,168.109,ns,,,,,

"BM_person_write_reflect_cpp_toml",257225,2716.64,2716.61,ns,,,,,

"BM_person_write_reflect_cpp_xml",480644,1455.44,1455.43,ns,,,,,

"BM_person_write_reflect_cpp_yaml",24770,28709.7,28709.6,ns,,,,,

https://redd.it/1drz3eg
@r_cpp

Читать полностью…

C++ - Reddit

SQLite Editor - C++ project
https://youtu.be/V9hBwAUSgh0?si=rhsapFEWz7oh-nPA

https://redd.it/1dtoett
@r_cpp

Читать полностью…

C++ - Reddit

Using learncpp.com effectively

Hi, I'm a beginner and planning to use learncpp.com, i prefer learning from books but I can't find a general consensus on the best book for people in my position.

What is the most effective way to use the website? I've tried to use it before and just copied into a notebook.

https://redd.it/1dtjntc
@r_cpp

Читать полностью…

C++ - Reddit

Cpp vs Go for backend

I'm making a web service. The frontend is writing in HTMX and for the backend I'm using Cpp at least for now. I'm very skilled on Cpp so I didn't face any development problem but since I started working with a team they recommend moving to Go. I just want to find some arguments for that Cpp is faster and more efficient than go for such a system that needs to process heavy load.

https://redd.it/1dt9bu5
@r_cpp

Читать полностью…

C++ - Reddit

Is there a reason for the lack of [nodiscard] on std::chrono::duration arithmetic operators?

I just found a stupid bug in my code, similar to this:

#include <chrono>

int main() {
const auto a = std::chrono::milliseconds{10};
const auto b = std::chrono::milliseconds{20};

a + b;

return 0;
}


The a + b is an obvious error, and I would expect the compiler to warn about it. However, even trunk GCC with `-Wall -Werror` does not warn about it.

Is there any reason as to why the arithmetic operators for `std::chrono::duration` are not marked [[nodiscard]]? Or is it simply a defect?

https://redd.it/1dt54z9
@r_cpp

Читать полностью…

C++ - Reddit

Faker C++ v2.0 is released!

Faker is a C++ 20 library for generating random data that look realistic.

https://github.com/cieslarmichal/faker-cxx

New release version is now available, changes include:



improved build time 2-3 times
support for Conan package manager (available in conan as faker-cxx/2.0.0)
support for Bazel build
support for older version of gcc
new modules
refactored whole library from classes to functions with namespaces

I encourage you to check it out!

https://redd.it/1dt1w2s
@r_cpp

Читать полностью…

C++ - Reddit

where to go now?

hello i don't know if this appropriate for this sub but i need help, i am a beginner and just finished learning from a long tutorial the basics (https://youtu.be/-TkoO8Z07hI?si=tWwQ8S_H_eP_UuTl) like pointers, class , linked list..
now i don't know how to improve further since my knowledge isn't enough to write a application (i don t know how to read or write a file or gui s or any advanced stuff) and i heard that being stuck to watching tutorial will get me nowhere so i was wondering what would be the next step?

https://redd.it/1dszndz
@r_cpp

Читать полностью…

C++ - Reddit

[https://youtu.be/Ry0Mu4l0NMo](https://youtu.be/Ry0Mu4l0NMo)
* The Current State of Spatial Audio Tools and Formats - Guillaume Le Nost & Olivier Petit - [https://youtu.be/pL7EScobC-0](https://youtu.be/pL7EScobC-0)
* The Architecture of Digital Audio Workstations (& Other Time-Based Media Software) - Ilias Bergström - [https://youtu.be/q5Q-vXzC0Ig](https://youtu.be/q5Q-vXzC0Ig)

06/10/2024 - 06/16/2024

* Singing Synthesis Beyond Human-Level Naturalness: Not What You Think - Kanru Hua - [https://youtu.be/qgzOBR\_6ID4](https://youtu.be/qgzOBR_6ID4)
* Music Hack Day India Winner Presentations - ADCx India 2024 - [https://youtu.be/efMyWdz2U8U](https://youtu.be/efMyWdz2U8U)
* Building a Music Assessment Engine: Requirements, Challenges, and Solutions - Martin Gasser - [https://youtu.be/vQpl9M3LmvQ](https://youtu.be/vQpl9M3LmvQ)

06/03/2024 - 06/09/2024

* Diversity in Music Technology: Diversity Initiatives and Insights From Music Information Retrieval - [https://youtu.be/MiDQpWrYur4](https://youtu.be/MiDQpWrYur4)
* ORCA Livecoding Soundscape for Theatre - Padmanabhan J - ADCx India 2024 - [https://youtu.be/IK1N5bNFc0I](https://youtu.be/IK1N5bNFc0I)
* Collaborative Songwriting & Production With Symbolic Generative AI - Sadie Allen & Anirudh Mani ADC - [https://youtu.be/9prniy6NutY](https://youtu.be/9prniy6NutY)

05/27/2024 - 06/02/2024

* How to Write Bug-Free, Real-Time Audio C++ Code? - Jan Wilczek - [https://youtu.be/Tvf7VVH53-4](https://youtu.be/Tvf7VVH53-4)
* Using Convolution for Archeo-Acoustic Conservation - Akash Sharma - [https://youtu.be/XP4N1BWE5Jo](https://youtu.be/XP4N1BWE5Jo)
* Vars, Values and ValueTrees: State Management in JUCE - Jelle Bakker - [https://youtu.be/pXmXLB7Kbds](https://youtu.be/pXmXLB7Kbds)

**Using std::cpp**

06/24/2024 - 06/30/2024

* SYCL Integrated compiler runtime for accelerated Deep Learning Abhilash Majumder - [https://www.youtube.com/watch?v=Lf3zgyJifA8](https://www.youtube.com/watch?v=Lf3zgyJifA8)
* Everything you need to know about code coverage in C++ Xavier Bonaventura and Jorge Pinto Sousa - [https://www.youtube.com/watch?v=LDtZpE0aKyQ](https://www.youtube.com/watch?v=LDtZpE0aKyQ)
* The New Library On The Block A strong library foundation for your next project Jonathan Müller - [https://www.youtube.com/watch?v=XvfVdxNrEpA](https://www.youtube.com/watch?v=XvfVdxNrEpA)
* Using C++ in Airbus DS ISR Products, an overview - Carlos Gómez - [https://www.youtube.com/watch?v=NemOOLA-bNI](https://www.youtube.com/watch?v=NemOOLA-bNI)
* Zero overhead pass by value through invocable abstractions - Filipp Gelman - [https://www.youtube.com/watch?v=cECDEZfJXV0](https://www.youtube.com/watch?v=cECDEZfJXV0)
* The new MISRA C++ 2023 Safety Guidelines - Peter Sommerlad - [https://www.youtube.com/watch?v=v8JmiIdi1wg](https://www.youtube.com/watch?v=v8JmiIdi1wg)
* Modern C++ Asynchrony Using Qt Ville Voutilainen - [https://www.youtube.com/watch?v=FX0rbx3wnVo](https://www.youtube.com/watch?v=FX0rbx3wnVo)
* From Mid Size to Major The IT Pitfalls of Rapid Growth - Juan Alday - [https://www.youtube.com/watch?v=CQvCMSUsfx4](https://www.youtube.com/watch?v=CQvCMSUsfx4)

06/17/2024 - 06/23/2024

* Compile time reflections Kris Jusiak - [https://www.youtube.com/watch?v=duKCN0Fy\_iQ](https://www.youtube.com/watch?v=duKCN0Fy_iQ)
* Machine Learning Applications for Embedded Devices Using TinyML and C++ - [https://www.youtube.com/watch?v=Pp9jjOdMU9k](https://www.youtube.com/watch?v=Pp9jjOdMU9k)
* C++ Type Erasure - Michael Hava - [https://www.youtube.com/watch?v=CVjqmM8cbLc](https://www.youtube.com/watch?v=CVjqmM8cbLc)

06/03/2024 - 06/09/2024

* Reducing Compilation Times Through Good Design - Andrew Pearcy and Jeffrey So - [https://www.youtube.com/watch?v=Afc6Cjk0gJk](https://www.youtube.com/watch?v=Afc6Cjk0gJk)
* Open Is Good Fast, Orthogonal Open Multi Methods with YOMM2 - Jean Louis Leroy - [https://www.youtube.com/watch?v=cOYE6OiuuMo](https://www.youtube.com/watch?v=cOYE6OiuuMo)
* Interpreted C++ is that a thing Javier López -

Читать полностью…

C++ - Reddit

New C++ Conference Videos Released This Month - June 2024 (Updated To Include Videos Released 06/24/2024 - 06/30/2024)

This month the following C++ videos have been published to YouTube. A new post will be made each week as more videos are released

ACCU Conference

06/24/2024 - 06/30/2024

The Benefits of Learning a Different Programming Language - Francis Glassborow - [https://youtu.be/S51Q6j\_vhGc](https://youtu.be/S51Q6j_vhGc)
Narrow Contracts and `noexcept` are Inherently Incompatible in C++ - John Lakos - https://youtu.be/VCwC1cvP8i0
C# Performance - Demons, Wizards, Warriors, Auditors - Steve Love - [https://youtu.be/J2fmQxyg7PM](https://youtu.be/J2fmQxyg7PM)

06/17/2024 - 06/23/2024

Green Software Architecture - Dos Don'ts and Some Surprises - Giovanni Asproni - https://youtu.be/Ir5Ka81I-ZE
How DLang Improves my Modern C++ and Vice Versa - Mike Shah - [https://youtu.be/CnKsOak0DHU](https://youtu.be/CnKsOak0DHU)
CTAD: Complete Guide to Class Template Argument Deduction - Nina Ranns - https://youtu.be/c3R7aNf39o0

06/10/2024 - 06/16/2024

Keynote: Safety, Security, Safety\[sic\] and C/C++\[sic\] - C++ Evolution - Herb Sutter - [https://youtu.be/EB7yR-1317k](https://youtu.be/EB7yR-1317k)

C++Online

06/24/2024 - 06/30/2024

Templates Made Easy With C++20 Using Constexpr/Consteval, Fold Expressions, and Concepts - https://youtu.be/59lFn3dfdOQ
Lightning Talk: What Does It Take to Implement the C++ Standard Library? Follow-up: Mandates vs Constraints? - Christopher Di Bella - [https://youtu.be/2OZvnr79q3c](https://youtu.be/2OZvnr79q3c)
Lightning Talk: Rust Without ‘Unsafe’ Is as Unsafe as C++ - Pavel Novikov - https://youtu.be/vh\_TO93neEs

06/17/2024 - 06/23/2024

Uninitialized Uses in Systems C++ Programming: The Bytes Before the C++ Types - JF Bastien - [https://youtu.be/n7Tl1qJxTew](https://youtu.be/n7Tl1qJxTew)
Hijacking Singletons to Enable Unit Testing of C++ Legacy Code - David Benson - https://youtu.be/vZGfj32vPmE
The Strategy Design Pattern in Cpp - Mike Shah - [https://youtu.be/PHJ0jizBhpE](https://youtu.be/PHJ0jizBhpE)

06/10/2024 - 06/16/2024

Coroutines and gRPC - Jonathan Storey - https://youtu.be/kFgA-47fbjM
flat\_map - WHO NEEDS THEM? THEY’RE JUST LIKE std::map. WE ALL HAVE THEM - Pavel Novikov - [https://youtu.be/qIjA4JpFA7w](https://youtu.be/qIjA4JpFA7w)
C++ Tooling Intuition - Kevin Carpenter - https://youtu.be/lWOx5cuj1hc

06/03/2024 - 06/09/2024

Vulnerable C++ - Peter Sommerlad - [https://youtu.be/CALka5ZldL0](https://youtu.be/CALka5ZldL0)
Debugging Your Hardest C++ Bugs With Time Travel Debugging from Undo - Greg Law - https://youtu.be/R6QQT8sSmcA
Best C++ Debugger for Large Scale Linux Codebases 2024 - [https://youtu.be/H9WiyFzaB4o](https://youtu.be/H9WiyFzaB4o)

05/27/2024 - 06/02/2024

Designing for C++ Concurrency Using Message Passing - Anthony Williams - https://youtu.be/D1oBq4PIEW8
Beginners' Guide to C++20 Coroutines - Andreas Fertig - [https://youtu.be/4xdef0fRsQ0](https://youtu.be/4xdef0fRsQ0)
Keynote: Can AI Replace Programmers? - Frances Buontempo - https://youtu.be/jX\_NoK-xdrk

Audio Developer Conference

06/24/2024 - 06/30/2024

Fast Audio Thread Synchronization for GPU Data - Evan Mezeske - [https://youtu.be/lb8b1SYy73Q](https://youtu.be/lb8b1SYy73Q)
The Sound of Audio Programming - Developing Perfect Glitch - Balazs Kiss - https://youtu.be/rlMvfFGEj3Q
Properties of Chaotic Systems for Audio - George Gkountouras and Christopher Johann Clarke - [https://youtu.be/NG6lzDZXHeE](https://youtu.be/NG6lzDZXHeE)

06/17/2024 - 06/23/2024

Unlock Your Audio Processing Superpowers With Rest API - Baptiste Vericel & Alexandre Louiset -

Читать полностью…

C++ - Reddit

{fmt} 11.0 released with improved build speed, C++20 module support, faster print and more
https://github.com/fmtlib/fmt/releases/tag/11.0.0

https://redd.it/1dssm2s
@r_cpp

Читать полностью…

C++ - Reddit

Cognitive Load and C++, thoughts from an engineer with 20+ years of C++ experience

I took it from this article.

I was looking at my RSS reader the other day and noticed that I have somewhat three hundred unread articles under the "C++" tag. I haven't read a single article about the language since last summer, and I feel great!

I've been using C++ for 20 years for now, that's almost two-thirds of my life. Most of my experience lies in dealing with the darkest corners of the language (such as undefined behaviours of all sorts). It's not a reusable experience, and it's kind of creepy to throw it all away now.

Like, can you imagine, requires C1<T::type> || C2<T::type> is not the same thing as requires (C1<T::type> || C2<T::type>).

You can't allocate space for a trivial type and just memcpy a set of bytes there without extra effort - that won't start the lifetime of an object. This was the case before C++20. It was fixed in C++20, but the cognitive load of the language has only increased.

Cognitive load is constantly growing, even though things got fixed. I should know what was fixed, when it was fixed, and what it was like before. I am a professional after all. Sure, C++ is good at legacy support, which also means that you will face that legacy. For example, last month a colleague of mine asked me about some behaviour in C++03.

There were 20 ways of initialization. Uniform initialization syntax has been added. Now we have 21 ways of initialization. By the way, does anyone remember the rules for selecting constructors from the initializer list? Something about implicit conversion with the least loss of information, but if the value is known statically, then...

This increased cognitive load is not caused by a business task at hand. It is not an intrinsic complexity of the domain. It is just there due to historical reasons (extraneous cognitive load).

I had to come up with some rules. Like, if that line of code is not as obvious and I have to remember the standard, I better not write it that way. The standard is somewhat 1500 pages long, by the way.

By no means I am trying to blame C++. I love the language. It's just that I am tired now.

https://redd.it/1dsqzdz
@r_cpp

Читать полностью…

C++ - Reddit

Perfect hashing benchmark (lookup time, compilation time, binary size)
https://boost-ext.github.io/mph/perfect_hashing

https://redd.it/1dsnuwb
@r_cpp

Читать полностью…

C++ - Reddit

P1061 "Structured Bindings can introduce a Pack" Failed to gain consensus :(

https://github.com/cplusplus/papers/issues/294

"Failed to gain consensus; back to EWG to consider implementation experience"

It is a sad day, P1061 didn't pass plenary vote

Is there still chance for it to be included in C++26?

https://redd.it/1dsjbpr
@r_cpp

Читать полностью…

C++ - Reddit

How is your team serializing data?

I’m curious how you are defining serializable data, and thought I’d poll the room.

We have BSON-based communication and have been using nlohmann::json’s macros for most things. This means we list out all the fields of a struct we care about and it gets turned into a list of map assignments.

Discussion questions:

Are you using macros? Code generators (does everyone just use protobuf)? Do you have a schema that’s separate from your code?

Do you need to serialize to multiple formats or just one? Are you reusing your serialization code for debug prints?

Do you have enums and deeply nested data?

Do you handle multiple versions of schemas?

I’m particularly interested in lightweight and low compile time solutions people have come up with.

https://redd.it/1ds9hnh
@r_cpp

Читать полностью…

C++ - Reddit

What can I do next?

I learned C++ about 5-6 months ago. Many people suggested I do a project, so I made some games with the SFML library. I will be starting my engineering classes soon. Although I have no interest in game development, should I continue with SFML?

Additionally, I don't have enough money to buy Arduino boards or Raspberry Pi but I have done some projects using online simulators.

https://redd.it/1drzqkr
@r_cpp

Читать полностью…

C++ - Reddit

go:

name,iterations,real_time,cpu_time,time_unit,bytes_per_second,items_per_second,label,error_occurred,error_message

"BM_canada_read_reflect_cpp_bson",352,2.0081e+06,2.00804e+06,ns,,,,,

"BM_canada_read_reflect_cpp_cbor",70,1.00675e+07,1.00671e+07,ns,,,,,

"BM_canada_read_reflect_cpp_cbor_without_field_names",70,9.96375e+06,9.96354e+06,ns,,,,,

"BM_canada_read_reflect_cpp_flexbuf",954,732249,732240,ns,,,,,

"BM_canada_read_reflect_cpp_flexbuf_without_field_names",957,732516,732500,ns,,,,,

"BM_canada_read_reflect_cpp_json",274,2.56273e+06,2.56262e+06,ns,,,,,

"BM_canada_read_reflect_cpp_json_without_field_names",337,2.07672e+06,2.07668e+06,ns,,,,,

"BM_canada_read_reflect_cpp_msgpack",636,1.09839e+06,1.09837e+06,ns,,,,,

"BM_canada_read_reflect_cpp_msgpack_without_field_names",641,1.09341e+06,1.09337e+06,ns,,,,,

"BM_canada_read_reflect_cpp_toml",9,7.50963e+07,7.50952e+07,ns,,,,,

"BM_canada_read_reflect_cpp_yaml",2,3.65875e+08,3.65868e+08,ns,,,,,

"BM_canada_write_reflect_cpp_bson",123,5.69915e+06,5.69904e+06,ns,,,,,

"BM_canada_write_reflect_cpp_cbor",199,3.51017e+06,3.5102e+06,ns,,,,,

"BM_canada_write_reflect_cpp_cbor_without_field_names",199,3.51255e+06,3.51248e+06,ns,,,,,

"BM_canada_write_reflect_cpp_flexbuf_without_field_names",412,1.69535e+06,1.69534e+06,ns,,,,,

"BM_canada_write_reflect_cpp_json",264,2.65321e+06,2.65317e+06,ns,,,,,

"BM_canada_write_reflect_cpp_json_without_field_names",272,2.57628e+06,2.57629e+06,ns,,,,,

"BM_canada_write_reflect_cpp_msgpack",1317,530616,530612,ns,,,,,

"BM_canada_write_reflect_cpp_msgpack_without_field_names",1312,533940,533927,ns,,,,,

"BM_canada_write_reflect_cpp_toml",10,7.21248e+07,7.21234e+07,ns,,,,,

"BM_canada_write_reflect_cpp_yaml",9,7.96778e+07,7.96762e+07,ns,,,,,

"BM_licenses_read_reflect_cpp_bson",8802,79459.7,79459.3,ns,,,,,

"BM_licenses_read_reflect_cpp_cbor",2298,304086,304082,ns,,,,,

"BM_licenses_read_reflect_cpp_cbor_without_field_names",3649,189976,189975,ns,,,,,

"BM_licenses_read_reflect_cpp_flexbuf",10320,67828.6,67828,ns,,,,,

"BM_licenses_read_reflect_cpp_flexbuf_without_field_names",11136,62961.7,62960.9,ns,,,,,

"BM_licenses_read_reflect_cpp_json",9224,75684,75683.2,ns,,,,,

"BM_licenses_read_reflect_cpp_json_without_field_names",10228,68342,68341.3,ns,,,,,

"BM_licenses_read_reflect_cpp_msgpack",9848,70889.1,70888.2,ns,,,,,

"BM_licenses_read_reflect_cpp_msgpack_without_field_names",11220,62465.8,62464.1,ns,,,,,

"BM_licenses_read_reflect_cpp_xml",5013,138527,138527,ns,,,,,

"BM_licenses_read_reflect_cpp_toml",997,713820,713805,ns,,,,,

"BM_licenses_read_reflect_cpp_yaml",157,4.44804e+06,4.44794e+06,ns,,,,,

"BM_licenses_write_reflect_cpp_bson",7294,96542.6,96541.7,ns,,,,,

"BM_licenses_write_reflect_cpp_cbor",8766,79465.1,79464.1,ns,,,,,

"BM_licenses_write_reflect_cpp_cbor_without_field_names",10653,65804.6,65804.6,ns,,,,,

"BM_licenses_write_reflect_cpp_flexbuf",6996,99965.3,99964.1,ns,,,,,

"BM_licenses_write_reflect_cpp_flexbuf_without_field_names",17163,40876.7,40876.1,ns,,,,,

"BM_licenses_write_reflect_cpp_json",21882,32323.9,32323.4,ns,,,,,

"BM_licenses_write_reflect_cpp_json_without_field_names",35117,19879,19878.9,ns,,,,,

"BM_licenses_write_reflect_cpp_msgpack",28165,25364.1,25363.8,ns,,,,,

"BM_licenses_write_reflect_cpp_msgpack_without_field_names",51559,13480.8,13480.5,ns,,,,,

"BM_licenses_write_reflect_cpp_toml",2055,340914,340909,ns,,,,,

"BM_licenses_write_reflect_cpp_xml",6370,109948,109947,ns,,,,,

"BM_licenses_write_reflect_cpp_yaml",213,3.28107e+06,3.281e+06,ns,,,,,

"BM_person_read_reflect_cpp_bson",1149254,610.475,610.452,ns,,,,,

"BM_person_read_reflect_cpp_cbor",324341,2152.12,2152.08,ns,,,,,

"BM_person_read_reflect_cpp_cbor_without_field_names",599500,1166.68,1166.67,ns,,,,,

"BM_person_read_reflect_cpp_flexbuf",172

Читать полностью…
Subscribe to a channel