klimi
Everyone can do it
MᏫᎻᎯᎷᎷᎬᎠ
Hacking is easy
If u wanna hack Wi-Fi Just push the button Hack Wi-Fi
Satan
Everyone of u is so intelligent here wtf 😐
Kelvin
Open terminal & write ping google.com to hack Google
klimi
I'm only admin
Ludovic 'Archivist'
If u wanna hack Wi-Fi Just push the button Hack Wi-Fi
I was talking on another group of how easy it was cracking some naive handrolled ciphers
MᏫᎻᎯᎷᎷᎬᎠ
klimi
U?
Ludovic 'Archivist'
Jasmin
I'm talking about this
started just two days ago so at rank:165514 in python section
Ludovic 'Archivist'
U have to get the key first
Just either try to get your hand on a way to generate some ciphertexts of known plaintext, or bruteforce
Satan
started just two days ago so at rank:165514 in python section
Cool, try problem solving side by side as u go through ur python mastery
Mat
Good, it's helpful
Mat
I usually try to do them directly in cpp but i end forgetting what i was doing
klimi
idk what im doing wrong....
MᏫᎻᎯᎷᎷᎬᎠ
Where is that bot
Mat
Dead
Mat
I killed it in a rampage
MᏫᎻᎯᎷᎷᎬᎠ
Dead
I hope that always happens
Mat
Why?
Mat
No, seriously
Mat
#googleit
Marie
#googleit
http://www.fuckinggoogleit.com/
Mat
Oh...
Mat
Oh, wait
MᏫᎻᎯᎷᎷᎬᎠ
No, seriously
Not useful
Mat
She deleted the message because a bot entered
MᏫᎻᎯᎷᎷᎬᎠ
Mat
She answered the bot, i banned the bot and deleted all the messages
MᏫᎻᎯᎷᎷᎬᎠ
Bot reactions
Mat
When you enter
MᏫᎻᎯᎷᎷᎬᎠ
Aha
Mat
One of the long name spam shit appeared
MᏫᎻᎯᎷᎷᎬᎠ
I got it
Ariana
Does anyone know why does GCC compile a nested function successfully in linux but fails in apple with the error message: functional definition not allowed here? An alternative i could use is a function to return a function pointer but that requires defining a nested function too
Manish
Hello
Manish
Someone tell me what is interval
klimi
Someone tell me what is interval
It's a range of number
klimi
For example. 2-6
klimi
Welcome
olli
a nested function? like void a (void) { void b (void) { } } ?
Exactly, a nested function is somehow "like" lambdas for C Nested functions are a compiler extension in GNU C but not supported in GNU C++
BinaryByter
this is one of the worst ideas i've seen lol
olli
Why?
BinaryByter
Why would that be a good idea?
BinaryByter
like
BinaryByter
where does the context go?
BinaryByter
what doesnt get executed and what does get executed?
olli
Reduce stack size where memory resources are critical
BinaryByter
Mhhh
BinaryByter
makes sense
Manish
Anyone help me understand stock buy and sell program
Ludovic 'Archivist'
Like, real lambdas
Ludovic 'Archivist'
Lambda that don't behave weirdly
Ludovic 'Archivist'
Lambda made like auto b=[] (void)->void {}
MᏫᎻᎯᎷᎷᎬᎠ
Ludovic 'Archivist'
Lambda made like auto b=[] (void)->void {}
Which can be written auto b=[] () {}
Ludovic 'Archivist'
Wht we put in []
The syntax is made that way, you specify how you want to capture other variables within the []
MᏫᎻᎯᎷᎷᎬᎠ
Wht do u mean by capturing variables
Ludovic 'Archivist'
Sorry if i asked
Np, in short, it allows to write closures
MᏫᎻᎯᎷᎷᎬᎠ
And wht is closures😂
Ludovic 'Archivist'
Example: std::function<int(void)> counter() { int a =0; return [a&](){return ++a;}; } . . . auto c = counter() ; std::cout<<c() ;// prints 1 std::cout<<c() ;// prints 2 auto d = counter() ; std::cout<<d() ;// prints 1 std::cout<<c() ;// prints 3
Ludovic 'Archivist'
And wht is closures😂
^ this is an example of closure
olli
I'm C++ you have lambdas
I know that's why I said like lamdas for C
BinaryByter
What normalization function best describes a range from -1 to 1?
BinaryByter
sign?
BinaryByter
or sin?