Ya deway
Unfortunately, these are very advanced topics that I don't even fully understand. If you are interested in the topic, take a read of this repo on github (SilentMoonwalk). It's an advanced way to hide the caller of a function
klimi
/warn spam, probably a spambot
exo
ik but he’s from italy too
Ya deway
potresti contattare il tipo che ha fatto il desync e chiedere spiegazioni, ovvero lui: https://namazso.eu
I don't this is him. He found return address spoofing placing a zero on the stack is a little different method
exo
DesyncSpoofer.asm is an original idea from namazso, but the author is klez https://github.com/klezVirus/SilentMoonwalk/blob/master/SilentMoonwalk/include/asm/DesyncSpoofer.asm
exo
klez is from italy too, you can find him on X or Telegram
Dukundimana
To build ptoject using ćpp are possible??
Lucas
does anyone need any help
exo
does anyone need any help
are you a doctor?
Ziky
does anyone need any help
Be patient, but IMO the toughest part here is usually to decipher the question
Lucas
are you a doctor?
tell me what you want
exo
tell me what you want
I want your mask
Never Spam Bot
Lucas 🐈‍⬛ sent multiple messages that looks like a spam. Why was my message deleted? Spam deleted in this group: 3021
Roxifλsz 🇱🇹
I want your mask
exo my dearest, do not incite ranjeets into dragging you to PMs
Itz
New here
klimi
New here
you should read the rules you already accepted then
Ми🐳а
Hey, everybody. Are there any students here, or those who have already graduated. Need help in choosing the topic of thesis robot on programming, you can give a couple of interesting options. About soba a little: know s/c++, Python, PHP, databases, algorithms at a pretty good level. I will be very grateful for a couple of good ideas🙌🙌
Simple Sorcerer
Hi guys. How should I implement a class that could get elements from it through a loop like this ? class MyClass { ... } MyClass myclass; main() { for ( value : myclass ) { ... } }
Abbasi
template<typename T> struct S { S(const std::initializer_list<T>& lst) { data = lst;} operator std::vector<T>() const { return data;} std::vector<T> data; }; int main() { S s{1,2,3}; for(auto i : static_cast<std::vector<int>>((s))) std::cout << i << ' '; } 1 2 3
Abbasi
It needs casting though. Probably there's a simpler way, I guess.
Pavel
Hi guys. How should I implement a class that could get elements from it through a loop like this ? class MyClass { ... } MyClass myclass; main() { for ( value : myclass ) { ... } }
To make objects of your class being iterated like that, it is enough to implement begin() and end() methods that would return iterators (forward iterators should be enough), to the first element and the elements after the last. https://en.cppreference.com/w/cpp/algorithm/for_each
Pavel
However when writing your own container from scratch, it sometimes can be more tricky to write properly working iterator.
Pavel
Updated code example from the above https://wandbox.org/permlink/uoe4dxEOaIa3qyiX
Abbasi
Yes, since the range-based for loop works based on the begin() and end() iterators it's possible to make another version of the code by explicitly providing them. You could also make that simpler by replacing typename std::vector<T>::iterator by auto.
FriedRice
You just declare a constructor with the vector as parameter, define it as iterating and copying elements.
FriedRice
There is no need to over complicate this
FriedRice
You can use copy or move semantics in this constructor.
X
Hey community, What are your thoughts about CLP or CLA? Are these certs worth it? from jobs perspective
X
Never heard of those in my life
https://cppinstitute.org/clp
harmony5 🇺🇳 ⌤
https://cppinstitute.org/clp
Looking into this site, I noticed they are the same people from the python institute, which offers a similar certification for python, which imo also isn't worth it. If you want a cert, go for a broader and more recognized one.
X
Can you recommend some valuable certifications for C/C++?
harmony5 🇺🇳 ⌤
Such as?
What do you want to do?what work field are you interested in?
Never Spam Bot
3ᴍʀ sent multiple messages that looks like a spam. Why was my message deleted? Spam deleted in this group: 3037
klimi
okay, fixed :)
Noob Trader
Thank you
Noob Trader
Anyone have good video for pointers 😞
Noob Trader
C language
klimi
Anyone have good video for pointers 😞
i can just offer cppreference article for that: https://en.cppreference.com/w/c/language/pointer
Noob Trader
Or anyone suggest proper zero to Hero like a PHD on C language guidance 😐😐
E
Or anyone suggest proper zero to Hero like a PHD on C language guidance 😐😐
Actually C is more of either a self taught language or done as a course language for IT and Comp Science students... So you'll most definitely find a hard time getting a proper one
The 🧩 🎲
I'm new here in programming who will help me out
Rose
I'm new here in programming who will help me out
These are ways you can improve the odds of someone wanting to help you. Be considerate when posting questions. • Use a search engine to check if anyone else had the same question as yours before asking. Stackoverflow is your friend. • Be straight to the point (do not ask to ask.) • Be specific, include as many details as you can. • Show what you've tried to solve the problem • We don't care if anything is "urgent" or "important" - wait patiently for someone to reply. • In addition, please check this site to learn how to ask questions in a public forum. It's good style to limit the amount of messages you send to a public forum; put effort into 1 message, rather than sending many of them, and edit messages to fix errors or to include more information.
FriedRice
Can you recommend some valuable certifications for C/C++?
Go to Github and contribute to any C project is the best cert.
Abbasi
Abbasi
Or anyone suggest proper zero to Hero like a PHD on C language guidance 😐😐
Reading such a huge reference may not be that helpful. Typically you read some basics and start coding.
A
Anyone have good video for pointers 😞
https://youtu.be/iChalAKXffs?si=ZOZ0PfPafrU9MBEq
Support Team
Hello everyone I'm Tennet a full stack web developer, web3 dev and a penetration tester
klimi
Hello everyone I'm Tennet a full stack web developer, web3 dev and a penetration tester
and since you are full stack web developer rules of this group don't apply to you?
X
I just want to have such a certification to keep in my pocket. Just asked if it's worthwhile
Tokin
Or anyone suggest proper zero to Hero like a PHD on C language guidance 😐😐
Task 1:- start writing programs . . . Task (n-1):- keep programming Task n:- write a C(11) compiler
Ashwath
Hey
Ashwath
Resources for c++ interview prep ?
Never Spam Bot
CS DIGITAL sent multiple messages that looks like a spam. Why was my message deleted? Spam deleted in this group: 3062
Pritiraj
Can I send links here
Yash
do anyone know way to bind sfml with cpp in vscode or vs
Ludovic 'Archivist'
do anyone know way to bind sfml with cpp in vscode or vs
It depends on what build system you use
Ludovic 'Archivist'
/warn off topic