Dima
a WHAT?
Await
Dima
Read the rules.
Jan
Can someone help me out
BinaryByter
klimi
Hello unique snowflakes
B
Hlw
klimi
Whee
Dima
Anonymous
Thank you. I'm here to learn more about c.
Bader
c with classes
Bader
is better
Jøhn
is better
And rust is better yet
Bader
Anonymous
Hey guys Can anyone please tell how good is SAP ABAP module for fresher 2018 passout and job openings in it
우빈(KR)
san ttuck...
Anonymous
Hi, In my code: #include <sstream> #include <iostream> #include <string> int main () { int major = 0x10FF20DD30EE; std::stringstream stream; stream << std::hex << major; std::string result(stream.str()); std::cout << result << std::endl; } It is showing into string "20dd30ee" instead of "10FF20dd30ee". Can anyone help me?
Anonymous
Anonymous
solved :) need change from int to long
Martin
Hi all, I have a question. Is this possible in C++? (external library or STL) magic_function f = [](int a)->int{return a;}; f(123); //OK! f("123"); //Runtime exception
Martin
That would work if I code it manully. Is there a way to apply the same thing automatically for all kinds of functions?
Mo-mo
Hi all, can anyone suggest an advanced c++ online course something like Jerry Cain' Programming Paradigms at Stanford? Look for refreshing and improving my c++. Haven't used it for decade or so. Many thanks!
Mo-mo
url?
Martin
https://www.youtube.com/user/CppCon
Mo-mo
ok. will check! something particular out from there?
Martin
ok. will check! something particular out from there?
The latest and the greatest! Tons of C++17 features, optimizations tips and even C++20 draft!
Mo-mo
👍
BinaryByter
Hey guys Can anyone please tell how good is SAP ABAP module for fresher 2018 passout and job openings in it
as an employee of the sap i can only recommend it, but i will not lay out my opinion about it
BinaryByter
the type system is compile time
BinaryByter
making it runtime would require a wrapper struct which encodes the type
Martin
I know, so I'm loonking for a way to make it working at runtume. Thinking someone must have done it before.
BinaryByter
.!
and then you check in your function wrapper class which type is fed
BinaryByter
you should template the in and out types
klimi
@linuxer4fun is clinl reinventing the wheel but better?
BinaryByter
pretty much
klimi
Mhm
klimi
Just in that small team?
klimi
pretty much
Will clinl have tons of system calls?
Parra
anyone with experience in NginX? I'm trying to get a core dump
Parra
Parra
ye, before this i got the core dump, but after some updates it only shows this ^
Parra
without stack trace
Parra
I want to see what happened
Parra
Parra
this was the previous one, but after some changes it didn't show anything more
Parra
just this informative message
Martin
Ugh.. you know that ATMs are highly secure machines right. No one (unless you work for the bank or is an extreamlly good hacker) can execute custom code on it.
Parra
i thought it was related to openssl but now it seems it's not
Martin
Maybe asan can help?
Parra
Maybe asan can help?
impossible, the lib I'm loading is incompatible with asan
Parra
I have a debug environment on top of docker, i will remote debug it when I arrive home
Parra
nginx is so obfuscated
Parra
but I was asking for some tips or if someone had a similar problem
Manan
If I try to creat file in D:/ using fopen("D://data. Txt", "w") Than the file is not stored in d directory
Manan
How to solve it
klimi
Are you escaping those characters?
klimi
No
klimi
Buttshit
klimi
It should be data.txt
Manan
I check that
Manan
But not working
klimi
Doesn't windows use D:\\data.txt
klimi
And not //
Manan
OK i will try
klimi
Buuut
Manan
No this is not working
klimi
Be sure to escape those characters
klimi
So you have to do \\\\
klimi
Because \\ in "" turns into \
Manan
OK
Alif
Sorry .
Manan
Fp=fopen("D:\\myfile.txt","w"); Is not stored file in d drive