Ludovic 'Archivist'
I am afraid Sean Baxter may run out of steam and entirely give up on the commitee at some point. That would be regrettable but we live in a sausage
CEO
Hello, why can’t I post
CEO
Please lemme know rules I broke
CEO
I am new here, I am trying to hire someone to help with task
Ludovic 'Archivist'
CEO
That may be what you broke
Ohh I’m sorry how do I hire someone then
Ludovic 'Archivist'
Ohh I’m sorry how do I hire someone then
Not through here, go on a freelancing website or whatever else
CEO
Okay
Ludovic 'Archivist'
Rule #6 is no advertising or any kind, including job postings
Never Spam Bot
CEO sent multiple messages that looks like a spam. To stop the bot from deleting your messages, write something non-suspicious. Or find out why here. Spam deleted in this group: 2560
Rohit
Am cooked
GPU Governor
I am afraid Sean Baxter may run out of steam and entirely give up on the commitee at some point. That would be regrettable but we live in a sausage
i have read the proposal countless times, but don't seem to understand if it will a separate language with a separate compiler or it will be a feature added to c++
Ludovic 'Archivist'
i have read the proposal countless times, but don't seem to understand if it will a separate language with a separate compiler or it will be a feature added to c++
It is similar to const correctness checks, but applied to safety. You can only call safe functions in a safe context, and safe mode adds some bounds checks and extra iterator checks to prevent wrongful use of containers
Rose
Welcome Adarsh! Please read the pinned message 🙂 Click the button below to unmute yourself.
Tinna🍅 marry
Good morning bosses
Tinna🍅 marry
I am new here I want to start my journey on programming who can be my mentor and what did j need
Tinna🍅 marry
Seriously sir
Tinna🍅 marry
Where you from sir
Zeno
i guess i did something wrong here. can someone please explain why my last message was deleted
klimi
i guess i did something wrong here. can someone please explain why my last message was deleted
it got marked as spam unfortunately: ``` hello. i think i'm the one at fault here but i couldn't get the bot to show me the rules (ie when i push the botton at the bottom of the message The rules for C/C++ Programming are: Hi Zeno. Click the button to read the rules for this group. the only thing the bot did was sending another identical message . i wonder if it is related to my specific version of telegram on my specific device or if it is general ```
ASCII BOY
I’m working on a custom memory allocator in C using mmap and brk, but I’m running into issues with fragmentation on blocks smaller than a page (like 4KB). On top of that, TLB performance seems off, and memory locality isn’t great. Has anyone dealt with this kind of thing before? I’m thinking of building something like a slab allocator, but I’m not sure if I should focus more on alignment tricks or maybe use volatile to prevent compiler reordering at this level. Any ideas?
Chiche
Hello Someone know any guide or tutorial to configure c++ in VSCode please?
Sevendyne
Any Qt programmers here. Which version is the latest. Is it open source?
Lizzy Pamela
Hello. Could you help me with a question? I have a data warehouse for a library that connects SQL Server and Oracle databases. How do I make the metrics in the facts table visible and calculated?
Miracle
Hello any tutorial for c++ programming
Dmitry
I am new here I want to start my journey on programming who can be my mentor and what did j need
Have you turned to Google yet? It can provide you with thousands of free, easy-to-understand tutorials, programing games, etc.
colly
hello i am new i want to start a new journey in c programming
👑shabeer
What is the best choice 1 Software engineer 2 cyber security 3 AI
👑shabeer
for what?
For future
klimi
For future
with this much information from you, just pick whatever you like
Miracle
Hello I am new here I want to start my first tutorial for c++ program
Mosa
Just like you
Mosa
?
Yes exo
Mosa
But guess what
Never Spam Bot
Mosa Ramollo sent multiple messages that looks like a spam. To stop the bot from deleting your messages, write something non-suspicious. Or find out why here. Spam deleted in this group: 2574
Chat Boss
ㅤMosa Ramollo sent a code, it has been re-uploaded as a file
Mosa
Y'all can check out my code
exo
Y'all can check out my code
what are you trying to say? where is the subject? what is ur question?
exo
but guess what
exo
the sky is blue
Mosa
Well I think what I'm tryna say here is ...I want to better my skills I'm already average and I think you guys in here can help me become better
Mosa
Well that's only if you guys want
Never Spam Bot
Даша sent multiple messages that looks like a spam. To stop the bot from deleting your messages, write something non-suspicious. Or find out why here. Spam deleted in this group: 2576
Simple Sorcerer
How to make poll/epoll/select unlock on other events?
Simple Sorcerer
In this case I am interested in the timer event. The timer calls its callback, but does not wake up the poll/epoll/select
Simple Sorcerer
*linux
consteval
Rose
User Priyanshi has 1/2 warnings; be careful! Reason: non english
Rose
That's 2/2 warnings; Priyanshi is banned! Reasons: 1: non english 2: offtopic/spam, asking for photoshop
Likon
hey guys am new to programming and i hope you huys will help me out on some tasks
Ajith
Hloi
Ajith
What should I install
Samuel M
2579
Never Spam Bot
Paras Tiwari sent multiple messages that looks like a spam. To stop the bot from deleting your messages, write something non-suspicious. Or find out why here. Spam deleted in this group: 2583
GUVOX
2583
exo
Samuel M
Ludovic 'Archivist'
/ban english only
Rose
/ban english only
I don't know who you're talking about, you're going to need to specify a user...!
Rose
You need to be an admin to do this.
Michel
I have a structure with const members: struct A { const int a; int b: }; And i have a vector of that type: vector<A> v; v.push_back(A{0, 0}); I can't assign v[0] to another instance of A because the operator= is deleted. Is there any way I can modify that position of the vector?
Michel
I see that the operator= is deleted for the struct because one can't assign one of the members because it's const. But is there any good reason not to allow us to modify the entire thing?
Never Spam Bot
Santiago sent multiple messages that looks like a spam. To stop the bot from deleting your messages, write something non-suspicious. Or find out why here. Spam deleted in this group: 2593
Rose
User us telugu wala has 1/2 warnings; be careful! Reason: nohello.com
Rose
User Jay has 1/2 warnings; be careful! Reason: nohello.com
Rose
User Oxygen has 1/2 warnings; be careful! Reason: nohello.com
Abbasi
ㅤSuka Isnaini sent a code, it has been re-uploaded as a file
What's the question/problem? I think you could use emplace_back in some of your insertions.
Chat Boss
Channel sent a code, it has been re-uploaded as a quote but this is fine in my os. #include <print> #include <vector> struct test { const int a; int b; }; int main(int argc, char** argv) { std::vector<test> a; a.push_back(test{0, 0}); a.push_back({1, 2}); a.push_back({3, 4}); a.push_back(test{5, 6}); for (const auto& e : a) { std::print("a.a: {}, a.b: {} \n", e.a, e.b); } return 0; } g++ -std=c++23 -o main main.cpp gcc version 14.2.1 20240910 (GCC)
Never Spam Bot
GUVOX is now approved by the group admin and can send messages without any restrictions Hi, I'm trying to figure out how to configure CoC-Nvim and Coc-Clangd... But I'm finding something kind of confusing in the coc-clangd readme. I need help, I've been trying to figure out for 2 days now. AND This is what the clangd doc says. Note: If you've configured clangd as a languageServer in coc-settings.json, you should remove it to avoid running clangd twice! See spam? Quote the spam message in the group and reply with /spam