Mat
😳
klimi
Anonymous
Yes All the programming books with me
klimi
Yes All the programming books with me
are you going to share more?
Anonymous
Book C++
klimi
Book C++
will you share more or what?
Anonymous
will you share more or what?
I can not send a link
Anonymous
really?
The owner of the collection does not follow the links of the book
klimi
what links?
Aman
Abhishek : Programming geeks a community with 700k likes on facebook is on telegram now. Kindly join- https://t.me/programminggeeks </>code
If we don't write the bio,then on mentioning the telegram link,it doesn't change to full size post ?
Anonymous
in that case, clinl
why not hurd , or freebsd's .. idk which languages are used in both but contributing to'em would be better than contributing to new project ig
Anonymous
what do you think of our rules?
So that everyone benefits
klimi
So that everyone benefits
Do you like our pinned msg and our welcome message?
Aman
I know one channel which is down nowadays but it has shared a lots of books in the past on it .and there are also books related with java and c and more
klimi
Yes
and will you behave?
klimi
okay
Anonymous
## Welcome We're very glad to welcome you to join the International C/C++ Group. You can invite others by https://t.me/programminginc ## Rules * C/C++ discussion preffered (assembly also allowed), keep other languages to a minimum. * Reverse enginnering, hacking (not facebook, instagram, etc.) * Legitimate requests for help on code and programming questions are ok (no homework requests, or "pls write entire program for me" requests). * Asking for book recommendations is ok, but "pls give pdf book" is not allowed, find books by yourself: google.com, http://gen.lib.rus.ec, https://t.me/programminginc/6504. * Only English language is allowed, if you speak very shitty English you will be banned. * A little bit of programming related memes, jokes, shitposting are allowed. * NSFW content (porn, nudity, etc.) is not allowed. * Spamming will grant you a warning or an immediate ban if you spam right after joining. * Religion, politics and ideological topics are forbidden. ## Resources About asking good questions: * [English](http://www.catb.org/esr/faqs/smart-questions.html) * [Translations](http://www.catb.org/esr/faqs/smart-questions.html#translations) For posting long code snippets: * [GitHub Gist](https://gist.github.com) * [Ubuntu Paste](https://paste.ubuntu.com/) ## Reports If you notice any forbidden content, please use the /report command while responding to the offending post to report it to the admins.
oh since when http://gen.lib.rus.ec has been added it was my lil dark rabbit hole where I get the carrots , its getting popular so fast
klimi
it was popular in the past too...
Anonymous
it was popular in the past too...
but nothing like articles or smth were mentioning it afaik
klimi
hmm
klimi
ye
Pete
Hey guys just a quick question. I’m about 2 classes away from getting an associates in math, do you think it’s worth it? Or would it be a waste of time and struggle in the long run when I could use the time to do something else more productive.
klimi
@roxifas do we show /rules too in pinned msg?
Roxifλsz 🇱🇹
@roxifas do we show /rules too in pinned msg?
Yeah, we have rules in the pinned msg
Marie
abdou has 1/3 warnings... watch out! Reason for last warn: don't even try it
Anonymous
Literally the best source I know, no reason not to include it :D
yup , actually its the best source I know too , but the thing is if it reaches to some sort of authorities .. idk but mostly it would get shutdown forever
klimi
ye
Pete
Depends on if you have use for it, we can't decide for you
Well ideally I’d like to just start working unrelated to math after school but just wondering if anyone has gone that route and if benefited anyone. Thanks though maybe I’ll try to ask the math department.
klimi
just create new mirrors
klimi
how much data does they have?
Anonymous
Tomorrow is my coding round, what cpp things should I take care of? It will be my first and I don't want to make "first time mistakes".
Anonymous
Any general tips from community is welcomed.
Anonymous
Is it illegal ?
totally , as the most of the link in the pined message lol ..
Anonymous
abdou has 1/3 warnings... watch out! Reason for last warn: don't even try it
Or, I mean, I would like to thank the book for the benefit of all
klimi
Or, I mean, I would like to thank the book for the benefit of all
thank to the owner and buy it or donate him something
klimi
we didnt write the book
Anonymous
just create new mirrors
not sure about it but should that be that easy in such a case ?
Aman
Any general tips from community is welcomed.
You are aware that your code should execute as fast as possible,use least memory and should be short and able to handle exceptions? And also see the compiler of the coding round. You might need to be ready for what compiler they are using because some changes come with compilers
klimi
they have nice torrent codebase
klimi
if we have the torrent codebase
klimi
they can not shut it down
klimi
http://gen.lib.rus.ec/repository_torrent/
Anonymous
ah , didn't know that
klimi
Yes
jeez ...
Anonymous
Hello
klimi
Hello
/warns
Marie
/warns
This user has 1/3 warnings, for the following reasons: - PROMOOO
klimi
just let u know Ro
Anonymous
/warns
Marie
/warns
This user has 1/3 warnings, for the following reasons: - PROMOOO
Anonymous
Ok im sorry
Anonymous
I dont know about that
klimi
its in rules...
Anonymous
running solaris 11 , exciting to see the DE XD
Ибраги́м
https://wiki.sei.cmu.edu/confluence/display/c/EXP19-C.+Use+braces+for+the+body+of+an+if%2C+for%2C+or+while+statement "CVE-2014-1266 was due, in large part, to failing to follow this recommendation."
Honestly? really? U think we're Mad? int privileges; if (invalid_login()) if (allow_guests()) privileges = GUEST; else privileges = ADMINISTRATOR; I've seen this some years back. BTW If u think that's what I meant then u're wrooong (in President Trump's tone)
klimi
xD
Ибраги́м
if (invalid_login()) if (allow_guests()) privileges = GUEST; I consider this deserving of {} (depending on the intent tho), IFF u gonna have another statement, but if NOT... U don't need one
Anonymous
I want to help.
Anonymous
I want the bot to modify the name of files on there who knows
Anonymous
I want the bot to modify the name of files on there who knows
can you use google translate , because nor me nor anyone else getting what you are trying to say ig
olli
if (invalid_login()) if (allow_guests()) privileges = GUEST; I consider this deserving of {} (depending on the intent tho), IFF u gonna have another statement, but if NOT... U don't need one
To improve readability use a single if statement Imo writing the {} won't hurt while reducing the probability of unsafe code, so I use them
Onur
what is the best way to get max int value using bitwise operators?
Onur
my solution is ~(~0u / 2) but I think there are better ways then that
olli
what is the best way to get max int value using bitwise operators?
INT_MAX or using c++ std::numeric_limits<int>::max() Using bitwise operations on signed values is actually not defined by the standard. In the current form the standard does not even define the layout of signed integers (a proposal has been made). Your method will probably work on many systems though
klimi
That's a bad name