klimi
olli
You could basically print the static HTML instead
Thespartann
klimi
Nuuuuu
klimi
U
BinaryByter
You could basically print the static HTML instead
Sure, BUT. I plan to use cgi features on the page
klimi
Done rokas
Roxifλsz 🇱🇹
Excuse me what the fuck
klimi
I purgot shit
BinaryByter
Excuse me what the fuck
*inserts fallout man*
Thespartann
klimi
Klimi does purrrrr get puuuuurrrrrrr geet
Dima
fallout man….. what happened to the younger generation
Dima
he is called Vault Boy
Dima
this is obligitory
Roxifλsz 🇱🇹
:D
Thespartann
Let me find it
I can't:(
Roxifλsz 🇱🇹
Roxifλsz 🇱🇹
Wasn't that hard, how did you not find the maymay
Thespartann
Thanks lol. But i need to find the sticker.
Thespartann
I know i have it..
Mihail
got this version of it too
Mihail
even if i don't understand 100% of it
Mihail
ik
Dima
Baguette*
Mihail
French
s/F.*/Baguette land
Roxifλsz 🇱🇹
Le faguette
Roxifλsz 🇱🇹
Hon hon hon
⠠⠍⠥⠓⠁⠍⠍⠁⠙⠽⠥⠎⠥⠋
what is " terminating character?
Box of
Character that terminates
Riccardo
Why It gives stack overflow with this piece of code: #define ITERATIONS 13 #define LINES ((1 << (ITERATIONS + 1)) - 2) I tried to make It a const long variable, and type cast the result but It doesnt work too. It returns this error only with values of ITERATIONS grater than 12
⠠⠍⠥⠓⠁⠍⠍⠁⠙⠽⠥⠎⠥⠋
```#include <array> #include <iostream> #include <string> bool namenotfound = true; int main () { std::string name; std::array <std::string, 5> database {"name1", "name2", "name3", "name4", "name5" }; std::cout << "Please enter a name to check against our database\n"; std::cin >> name; for (auto i: database) { if (name == i) { std::cout << "the name was found!\n"; namenotfound=false; break; } } if (namenotfound) std::cout << "the name wasn't found\n"; return 0; }```
⠠⠍⠥⠓⠁⠍⠍⠁⠙⠽⠥⠎⠥⠋
olli
```#include <array> #include <iostream> #include <string> bool namenotfound = true; int main () { std::string name; std::array <std::string, 5> database {"name1", "name2", "name3", "name4", "name5" }; std::cout << "Please enter a name to check against our database\n"; std::cin >> name; for (auto i: database) { if (name == i) { std::cout << "the name was found!\n"; namenotfound=false; break; } } if (namenotfound) std::cout << "the name wasn't found\n"; return 0; }```
don't use globals and make use of algorithm where suitable and dont copy strings for comparisons only #include <array> #include <iostream> #include <string> #include <algorithm> int main () { std::string name; std::array <std::string, 5> database {"name1", "name2", "name3", "name4", "name5" }; std::cout << "Please enter a name to check against our database\n"; std::cin >> name; const auto it = std::find(database.cbegin(), database.cend(), name); if (it != database.cend()) { std::cout << "the name was found!\n"; } else { std::cout << "the name wasn't found\n"; } return 0; }
Sher
Hi everyone, I just joined this awesome group 😁
Thespartann
Captain
How many of you guys use Qt?
Box of
/report
olli
/report
Thank you :)
Anonymous
hi sry my twitter got blocked and it is ny top priority now to regain access to ny account: please post #SaveRurudicroTwitter on any social media platform, even my own insta, same handle, thanks you! I’ll contact you personally once I’ve restored access to Twitter, I also post about language learning there, so please help me by also telling your friends.
海產
Hi
Anonymous
Hii
klimi
Hi
Hi
海產
Hello i am novice for c++ and i have some question about WinFrom my code is like this: DataTable dt = new DataTable("my_dt"); my_DataGridView.DataSource = dt; when my [dt] update, i will use [ dt.clear(); ] after that my_DataGridView.DataSource selection and srcollbar will reset to top how can i fix it... i already find the answer about 4hour
海產
😭😭
disrupt_the_flow
https://www.technologyreview.com/s/612336/a-bot-disguised-as-a-human-software-developer-fixes-bugs/
海產
no...
Ανδρέας 🇮🇹
https://www.technologyreview.com/s/612336/a-bot-disguised-as-a-human-software-developer-fixes-bugs/
That is great, but programmer could start to write even worse code because "the bot will fix it xdd"
disrupt_the_flow
Ανδρέας 🇮🇹
There are no programmers that write good code. Only working code.
well very true, only in academia people seem to write correct code
disrupt_the_flow
stop forgetting about me
I didnt. You are one of us now
BinaryByter
I didnt. You are one of us now
There are no programmers that write good code. Only working code. implies that i'm not a programmer :P
Joe
hi guys i have a question maybe some of you can help me :) I have a c++ program via eclipse which, when running, is being executed on a remote connection (ssh). Is there a way to make an executeable out of this with all its settings which i chose in Eclipse?
BinaryByter
you have a program, you compile it and send it over to an SSH server that then runs it?
BinaryByter
What is your question exactly?
Joe
you have a program, you compile it and send it over to an SSH server that then runs it?
exactly. I am trying to run this without eclipse but just as an executeable (later through labview)
Joe
windows 10 on the eclipse side and linux on the remote device
BinaryByter
in that case i'd advise you to compile the program on the linux side
BinaryByter
write yourself a script that downloads the program from the web and compiles it autonomously
BinaryByter
and upload the script to some obscure FTP server
BinaryByter
and make the script cron every 10 minutes or so in order to test
BinaryByter
(delete that cron once you are done)
Joe
write yourself a script that downloads the program from the web and compiles it autonomously
ok thanks a lot for your advice! isn`t it possible to just put a executeable on the linux machine and run it there? I already have a ssh connection from labview to my linux device so i can theoretically run stuff