Max
Hello, anybody know how to make library TWS API for IB on windows?
Ludovic 'Archivist'
heavily depends on scale...
Hard to see a scale where a simple solution stops working
Ludovic 'Archivist'
Feels like a devops cope out
Dima
NaNi
Vlad
NaNi
0.0 / 0.0 ?
Vlad
Or you're more of a sqrt(-1) ?
Rose
Reported M GK [417946194] to admins.​​​​​​​​​
A D D I N A L D 💎
Where can I set multiple choice of questions on c++ as a course for students
A D D I N A L D 💎
Any site?
Aman
How to improve typing speed
Vlad
How to improve typing speed
Finish mario teaches typing
Ludovic 'Archivist'
How to improve typing speed
Practice. It is never the bottleneck in programming though
Ludovic 'Archivist'
Thinking faster is much more effective, otherwise court stenographers would make the best programmers
Vlad
Coming up with an easier solution but slower still outweighs massive shitcoding
Rose
User TeamLeroy has 1/2 warnings; be careful! Reason: non-english spam, ad
وليد
Hello, I've finished the basics of C++ I mastered it I want to get into game hacking, but I don't know where to start. Can you help?
Vlad
Hi.Wdym by game hacking tho
Selling 'best cs cheat evah' with 999 trojans in it to middle-schoolers scamming them of their lunch money
Vlad
What else could it be
Vlad
I do not support children malnutrition
Dead
How to improve typing speed
You can also try using Mavis Beacon OR Try Using Typing Master
harmony5 🇺🇳 ⌤
Can modern OSes run typing master?
harmony5 🇺🇳 ⌤
Is it still maintained?
Dead
yes
harmony5 🇺🇳 ⌤
Used it over 20yrs ago already…
Dead
lolz so you have been used to it right
Dead
Can modern OSes run typing master?
yes they are new one already for modern OS
Dead
you know about it right I think that one is much more better than the old ones
CodeBy
How to improve typing speed
You can use typing club
Dead
sure
rust
does anyone have info on the new tdesktop rce conti bought?
Charly
Alguien habla español por aquí, necesito información. Soy nuevo y me gustaría q me brindaran apoyo en orientación para aprender a programar rengos las herramientas solo me falta el material
Ludovic 'Archivist'
Alguien habla español por aquí, necesito información. Soy nuevo y me gustaría q me brindaran apoyo en orientación para aprender a programar rengos las herramientas solo me falta el material
Hey, this group is English only. All I can recommend is that you attempt to code by yourself. Try roadmap.sh to orient yourself in your education
Ludovic 'Archivist'
I chose "Backend", just for testing, and it didn't even add C++ to the programming list!
Because while C++ is used for backend dev, generally people do not learn backend development with C++
Vlad
What are 'all backend areas'?
Dead
I don't understand what backend areas is
Dead
lol that ridiculous
Oxymore
why i cant talk
klimi
why i cant talk
you are spamming this group. you can talk, but do not break the rules, thanks
no
What do you mean by no?I didn't ask a yes/no question tbh
Rose
Reported Dead Socket [706247880] to admins.​​​​​​​​​
Ludovic 'Archivist'
Yea, cause almost nobody uses it for web backend
Nah it is used plenty, at least by governments
onz
msvc embeds unused functions(not called anywhere but persists on the project files). How do we avoid that? I disabled optimization, and it must be..
onz
i think /OPT:REF solves even /Od selected, Is it?
pic6r
Hello, I'm a newer coder who's getting into C# for game development. I wanted to ask for help regarding some code in my game around inventory management. It'd appear that the data from my item is not being transfered to my inventory script, this no displaying it's quantity, item sprite or amount. Could anyone please help in troubleshooting the code with me?
Rose
User has 1/2 warnings; be careful! Reason: non-english, spam
Fenjamin Branklin
hello lads!
klimi
hello lads!
#howtoask
Rose
hello lads!
These are ways you can improve the odds of someone wanting to help you. Be considerate when posting questions. • Use a search engine to check if anyone else had the same question as yours before asking. Stackoverflow is your friend. • Be straight to the point (do not ask to ask.) • Be specific, include as many details as you can. • Show what you've tried to solve the problem • We don't care if anything is "urgent" or "important" - wait patiently for someone to reply. • In addition, please check this site to learn how to ask questions in a public forum. It's good style to limit the amount of messages you send to a public forum; put effort into 1 message, rather than sending many of them, and edit messages to fix errors or to include more information.
أبو رمان
What should a function in a header look like?
Пётр
bruh...
Vlad
Rule of thumb is to have as little in headers as possible
أبو رمان
extern void foo(/*params*/);
But what about a function which is defined in its header?
Vlad
Rule of thumb is to have as little in headers as possible
If user of the header only uses 3 functions you shall export only them
أبو رمان
inline ?
Should large functions be specified with inline, though?
أبو رمان
Probably not
So what should be done?
Vlad
Anything that is even slightly susceptible to changes should be moved to .c file
Vlad
Because changes in header files force recompilation of all the .c files that are using such header
Vlad
So what should be done?
Move it to .c /.cpp file?
Vlad
Duh
Vlad
inline is not about actual inlining and avoiding the function call by the way
Vlad
It's just the way to hack around ODR
Vlad
ODR — one definition rule
أبو رمان
Move it to .c /.cpp file?
Now, I am writing tests for a library of mine; so making implementation files would be overkilling.
أبو رمان
Vlad
And how the fuck is one .c file an "overkill"