Anonymous
The ide is not user friendly
Should I also download the compiler?
Daniele°
Anonymous
turboc++ not work on x64
Not with dosbox? My school used it iirc
Daniele°
Only x86, run in dosbox
Anonymous
I doubt if my school's pc was x86
Anonymous
But nvm
Daniele°
I doubt if my school's pc was x86
You need to change school's
Anonymous
Daniele°
😂
Daniele°
If like terminal editor you can try vim or emacs
Daniele°
Me? I use VS Code
I prefer vim
Anonymous
Never tried it so won't comment
Daniele°
Stanislav
I prefer vim
using vim only for git :)
....
Anonymous
Someone already showed you how to do it
Anonymous
Try yourself man
....
Please work it
Anonymous
Please work it
Try yourself first
Anonymous
/save cpp Ибраги́м M: ISO C++ Official Homepage: - https://isocpp.org ISO C++ committee - https://isocpp.org/std/the-committee FAQs - http://www.stroustrup.com/bs_faq.html (I actually read this all) - http://www.stroustrup.com/bs_faq2.html - https://isocpp.org/faq - http://www.stroustrup.com/C++11FAQ.html Reddit (reddit.com) - http://reddit.com/r/cpp - http://reddit.com/r/cpp_questions (U can also ask questions here) Slack: - https://cpplang.now.sh/ Cpp Reference - http://en.cppreference.com/w/ Books (Books are the best way to learn in cpp): - https://stackoverflow.com/questions/388242/the-definitive-c-book-guide-and-list Online Tutorial: - http://learncpp.com - https://fbb-git.github.io/cppannotations/cppannotations/html/index.html Modern Cpp Features (C++11+): - https://github.com/AnthonyCalandra/modern-cpp-features C++17 - http://www.bfilipek.com/2017/01/cpp17features.html - https://jfbastien.github.io Youtube: - https://www.youtube.com/user/lefticus1/videos - https://www.youtube.com/channel/UCQ-W1KE9EYfdxhL6S4twUNw - https://www.youtube.com/channel/UCEOGtxYTB6vo6MQ-WQ9W_nQ Conferences: - CppCon: https://cppcon.org/ - BoostCon: https://www.youtube.com/user/BoostCon - Meeting Cpp: http://meetingcpp.com/ Blogs: - https://akrzemi1.wordpress.com/ - http://ericniebler.com - http://foonathan.net/ - https://herbsutter.com/category/c/ Selected Topics (No particular order) Concurrency & Parallelism: - http://www.bogotobogo.com/cplusplus/multithreaded.php - http://thispointer.com/c-11-multithreading-part-1-three-different-ways-to-create-threads/ Networking: Pointers: https://web.archive.org/web/20170930150208/http://www.cs.umd.edu/class/sum2003/cmsc311/Notes/BitOp/pointer.html
....
I can 't understand it
Anonymous
Fixed @OxFFFFFFFF
Anonymous
I can 't understand it
Any specific part?
Ибраги́м
https://stackoverflow.com/questions/15913202/add-application-to-startup-registry
Igor🇺🇦
How exactly did you write keylogger? you need to have kernel level access for it. How do you intercept interrupts?
Igor🇺🇦
It's weird (to say the least) for newbie to write keylogger for modern OS.
Riccardo
Hello to all
Riccardo
Can I ask you a questioni?
Riccardo
question*
Sri
Thank you
Riccardo
I want a class that has some methods accesible outside of the class via the . operator but that are not accessible inside of its inherited(the opposite of protected)
Riccardo
Sorry for my bad English
Riccardo
/get@BanhammerMarie_bot
Riccardo
@vbextreme ma stai dappertutto :)
Riccardo
Wait what?
Riccardo
Ah ok you deleted the message
Riccardo
I don't really Need it, i Just wanted to know if Theresa was the possibility
Riccardo
Because i wanted to redifine a method by changing only its name
Igor🇺🇦
Ah ok you deleted the message
I fixed spelling there. Not deleted it. Any way, you want public method not to be accessible from children classes, is this correct?
Igor🇺🇦
What's the problem you're trying to solve?
Riccardo
Wait a write an example
Riccardo
class A { void method(){} }; class B: public A { public: void methodNew(){this->method();} }; A a; B b; a.method() //no error b.method() //error b.methodNew() //no error
Igor🇺🇦
If by error you mean compilation error it's impossible, if you want to return error /throw exception it's possible but bad design for the reason already mentioned
Riccardo
Ah ok ty
Riccardo
Its still okay i didnt rally Need it
Igor🇺🇦
Riccardo
I try
Igor🇺🇦
Consider user of object obj , that is of class B, but is assigned to obj2 of class A.
Igor🇺🇦
What should be done when method "someMethod" is called?
Riccardo
Let's say that the parent is a template abd contains a Vector of the template type
Riccardo
Then the method has to return the Number of items that the Vector contains
Riccardo
But the child has a specified type, Let's say int, and i what that method ti have int in the name
Riccardo
Like: parent method is getNumberOfObjs() and the child method name is getNumberOfInts()
Riccardo
I dont want the method getNumberOfObjs() ti ne accesible from the child
Igor🇺🇦
That's why you call method "size ()" 😉
Igor🇺🇦
It returns the size of whatever is in the class
Riccardo
Yes i know but i did't use that class
Riccardo
I usa a Simple array
Riccardo
Sorry i had to say array
Igor🇺🇦
So what's the problem if getNumberOfObject will return number of ints?
Riccardo
I don't like that you cane have the same result with two different named methods (it becames confusing)
Igor🇺🇦
Why do you need the second one?
Igor🇺🇦
If you never use objects interchangeable you don't need inheritance, If you do - it's much more confusing when you call same method and sometimes get error
Igor🇺🇦
How can you check that the object is indeed only class A and not class B?
Riccardo
Its becoming to confusing and i think Its useless to continue this conversation, so Let's end it now. Is that okay for you?
Igor🇺🇦
I don't care. You asked it.
Riccardo
Ok i just wanted to be polite
°_°
Hi
Zorrito
Hi
Hello :)
Anonymous
Hi
Zorrito
Would anyone here happen to know how to use QPUlib or know where I can find a manual or tutorials for it?
°_°
What's it?
Zorrito
What's it?
It's a library that's supposed to help you program a Raspberry Pi's GPU using C++. https://github.com/mn416/QPULib
°_°
Ah, I used something like it for Arduino Uno