Anonymous
Daniele°
Daniele°
Only x86, run in dosbox
Anonymous
I doubt if my school's pc was x86
Anonymous
But nvm
Daniele°
Anonymous
Daniele°
😂
Daniele°
If like terminal editor you can try vim or emacs
Anonymous
Daniele°
Anonymous
Never tried it so won't comment
Daniele°
....
Anonymous
Someone already showed you how to do it
Anonymous
Try yourself man
....
Please work it
....
I can 't understand it
Anonymous
Fixed @OxFFFFFFFF
Anonymous
Ибраги́м
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
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?
Igor🇺🇦
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?
Riccardo
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
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
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