BinaryByter
oh wait
BinaryByter
maybe I should stop overusing templates
BinaryByter
NAHH
klimi
hi
Mihail
Looks like something out of a hacking scene in a movie
Anonymous
Any project on STL
Anonymous
no
Pros can be noobs too
BinaryByter
Anonymous
Pros can be noobs too
Linux lover lol!
Ariana
wtf
Anonymous
Ariana
~_~;
Fabi
What is the best way for making cool GUI that is free of any license fees as profit/nonprofit? I would like to build something that graphically can look good, maybe not like Parsec Gaming/Discord but at least decent and working on low end computers. I know I can use Qt under LGPL by avoiding statically linking even in commercial apps, but I would like to know if there are viable alternatives nowadays. I am not looking for fancy animations. Just good looking.
BinaryByter
if you want to do webdev, you can use webcpp
BinaryByter
else, you can use wxWidgets
Fabi
if you want to do webdev, you can use webcpp
it is a desktop application; or can I use webcpp like embedding some sort of web page in the desktop app?
Fabi
else, you can use wxWidgets
I also heard about it,hope it will be good enough
MᏫᎻᎯᎷᎷᎬᎠ
if you want to do webdev, you can use webcpp
Just can't stop advertising XD
BinaryByter
/ban ad
BinaryByter
it is a desktop application; or can I use webcpp like embedding some sort of web page in the desktop app?
you can use webcpp to serve a server and then display it inside of the browser
MᏫᎻᎯᎷᎷᎬᎠ
BinaryByter
xD
MᏫᎻᎯᎷᎷᎬᎠ
😂
BinaryByter
¯\_(ツ)_/¯
Pratham
I wanna concatenate 2 strings using string concat function...but I'm getting segmentation fault...core dumped error...y is it so?
Fabi
you can use webcpp to serve a server and then display it inside of the browser
Oh interesting. Are performance good enough for low end computers? And does this method require users computers to open ports so that I have to tell them how to do it?
Pratham
Fabi
And thank you for answers
Pratham
This is my logic
Pratham
Please somebody help me
Pratham
This is the error
Anonymous
You still count i++ in the for loop. You already did that before
Anonymous
So i will be strlen of str1 + strlen of str2 and overrun the array
BinaryByter
So yea, shoudl be efficient
BinaryByter
also, you don't NESSECARILY have to open ports
BinaryByter
if you just want to run them as localhost, you can just put them in an apache server
BinaryByter
and open localhost in the browser
BinaryByter
BinaryByter
for example, I made this todo-list with webcpp
klimi
you lack blue buttons
BinaryByter
you lack blue buttons
they would look ugly
klimi
nu
klimi
blue is nice
Fabi
Thanks for info :D
klimi
i switched from emacs
klimi
to spacemacs
klimi
tired of my shit config
Anonymous
blue is nice
black is nice
Anonymous
You mean I have to remove i++?
No^^ There are also other flaws. Go through the code again and think about every step
Anonymous
tired of my shit config
ahhaha what is ur config
BinaryByter
Anonymous
/report
Anonymous
/ban spam
Dima
fastest /ban in the West
Anonymous
Anonymous
MᏫᎻᎯᎷᎷᎬᎠ
char p[] = "lunatic"; cout << p; //output: lunatic But int p[] = {1, 2, 3}; cout << p; //output: an address Why?!!
Luis José
Hi guys ! i'm having the problem with std::string stream = ""; stream = "IF(C" + std::to_string(row + 1) + ">0;ABS(C" + std::to_string(row + 1) +"*D" + std::to_string(row + 1) + ");\"\")"; in the head i'd included: sstream, wich is the problem? my compiler is mingw but i don't know how to check the version on windows
klimi
and the error?
Anonymous
guys who use wxwidgets ?
Anonymous
when I try to compile it gives error (
Anonymous
BinaryByter
read the error
BinaryByter
think about it
BinaryByter
if (const) char* wasn't overloaded like that, cout « "hello" would print out an adress too
BinaryByter
nope
MᏫᎻᎯᎷᎷᎬᎠ
yeah But char* is is different from char[]
If you don't believe me try char* p = "lunatic"; //error p[2] = 'U'; And char p[] = "lunatic": char p[1] = 'U';