Danya🔥
But if a person stuck on a specific problem, they should ask the specific problem
Danya🔥
Not theirs whole assignment
Danya🔥
This is literally what is written in the rules
Jer
I mean if they ask you to do the work FOR them, I'd just laugh at them too lol, laziness isn't encouraged
Jer
....
But context
Jer
I can probably guess that a majority of people asking for help, are doing so (in probably not their first language, because this is English only) so the meaning comes out wrong when thrown through a translator, but most (maybe 99% imo) want to learn, and not wanting you to do it for them
Jer
What you problem
If you're talking about coding, nothing rn, cya later
Jer
Harsh on people that are in school, ig I won't be affected either way though, bc I just stick to fun projects to learn
Jer
I don't go to college.. but I do believe in the freedom of information
Jer
So if someone has a question about a topic I know, I'll teach until they understand, though I prefer if this is in person
klimi
So if someone has a question about a topic I know, I'll teach until they understand, though I prefer if this is in person
they have a legit way how to get help with assignment, cheating your way is not the honest way
Danya🔥
If we didn't ban the people who ask "help me with homework please" repeatedly, the whole chat would be filled with these questions only. So it would be practically dead.
Jer
they have a legit way how to get help with assignment, cheating your way is not the honest way
It's not like it's an exam or test where they're not allowed to have their phone... it's just a "figure it out and do the assignment" I really don't wanna talk about it anymore
Jer
I spent 4 hours yesterday trying to figure out how to compile a hello world program on linux and running it on windows, kinda funny
klimi
It's not like it's an exam or test where they're not allowed to have their phone... it's just a "figure it out and do the assignment" I really don't wanna talk about it anymore
i would like to see which university allows cooperation with others for their assignments. If that is the case, I have nothing against that. I just haven't seen such thing
Jer
i would like to see which university allows cooperation with others for their assignments. If that is the case, I have nothing against that. I just haven't seen such thing
I work in IT and have a bad impression on going to college for it.. none of my friends or family are in college for IT, so I'll teach them to their hearts content, not C++ yet though.. I don't know it yet lol
H.
C++ is hard. I once it is easy, I was wrong. Just to correct myself.
Ehsan
Now I completely understand not wanting to do people's homework for them, (who would) but if they get stuck and need help on a problem.. why threaten them with a ban when they just need a little helping hand..
They don't need; most undergrads become office workers anyways, not real programmers (in most unis that is). About doing people's project, its okay for me for the right price ;)
CSI Linux
Hzllo
Mara
Hello
CSI Linux
Hello
Thanks Can i implement a récursive routine fonction using stack overflow in C++ ?
Mara
Technically possible, yeah
Siax
my site gives me an ssl error, I pay whoever can resolve the error
Jose
@Agentray you may use letsencrypt to generate your ssl certs and for free :)
Jose
pastebin your error
Siax
ERR_SSL_PROTOCOL_ERROR
Jer
Finally have my first question, I would google but I don't really know "exactly" where to start, so as a learning project I'm making a little rpg game I already coded in python, but on C++ on linux, but I want to make it windows compatible, I already have all the necessary libraries to go with it for it to run properly, so the issue is not to get it to run, but I noticed that when I loaded into my dual boot on windows, I couldn't double click on the file for it to open a command prompt to see the result, or maybe it closed too fast for me to see it? Which might be the case These programs I tested was a "hello world" and a random number generator, that only made 5 numbers, if command prompt is not being opened when the .exe file is being clicked, how do I make this happen? Is my question
Jer
Or if someone could point me in the right direction that would be cool too
Manav
https://learn.microsoft.com/en-us/windows/console/attachconsole
Manav
Just the standard ones to get it running on windows
i don't know what you mean by standard ones
Jer
Just the standard ones to get it running on windows
libgcc_s_seh-1.dll libstdc++-6.dll libwinpthread.dll Then I add the .exe file, and it executes on windows, if the file is in the same directory as these
Jer
Do you wanna see the code? For the .exe file, It's 14 lines
Manav
yes that'll help
Jer
yes that'll help
Can I just copy and paste it here..?
Manav
Can I just copy and paste it here..?
yes copy paste it here, 14 lines isn't much
Jer
yes copy paste it here, 14 lines isn't much
#include <iostream> #include <ctime> using namespace std; int main() { srand(time(NULL)); for(int i=1; i<=5; i++){ int random = rand() % 1337; cout<<random<<endl; } return 1; }
Jer
No
Jer
CLI, and I want it to open in command prompt
Jer
Ah, Ok imma test that with a while loop
Manav
CLI, and I want it to open in command prompt
yeah, i was under the impression that it was a gui app and you wanted to spawn a console
Manav
Ah, Ok imma test that with a while loop
just have a cin statement at the last line
Jer
Lol no, just opening the console when clicked
Jer
also returning 1 o.O
Idk I was following a tutorial at the time xD it worked...
Jer
But the rest of my tests have a 0 there
Manav
Idk I was following a tutorial at the time xD it worked...
it's fine, don't worry about it. the value you return in command line apps is used to share the error, etc
Manav
Jer
Okay
Manav
if you don't understand, it's fine :) you have better things (making your game) to worry about atm.
Jer
Well it's just a hobby project lol, although I got multiple ideas for games
Jer
Kinda wanted to learn C++ for godot tbh
Manav
Kinda wanted to learn C++ for godot tbh
Ah, are you thinking of using gdnative, afaik godot supports C++ with that or you're thinking of modifying the engine itself?
Jer
No i was trying to get my friends together to code a game with me, but so far they haven't even learned python yet lol
Manav
oh that's not what i wanted to say
Jer
Figured this would be more useful knowledge in the long run
Jer
oh that's not what i wanted to say
Ik what you're talking about lol
Jer
the scripting language that godot uses, I read about it a little bit, would be good to know for the specific task
Jer
I'd rather have full control over it.. but that's me, but is this commercially viable?
Manav
you can make a good game with those, i use gdevelop for small prototype
Manav
I'd rather have full control over it.. but that's me, but is this commercially viable?
well.. itdepends, if you want to make 2d games yes. for 3d nope