Dima
then don’t learn it and forget about programming
Dima
there’s no easy way
Olanrewaju O.
I prefer react native because it's made by fb
Dima
facebook is evil
Max
NXiss7
Fuck, is that really a reason?!
Olanrewaju O.
Which is the best to use
NXiss7
Use Flutter
NXiss7
You'll thank me later.
Olanrewaju O.
I have no one to teach me. I just learnt the basics online which made it too complex for me
Max
Which is the best to use
It's a famous/old and long topics in most forums!
It's depends on purpose and needs!
NXiss7
Anonymous
Anonymous
Hahaha
Anonymous
Hello great minds, please I need c++ program that can solve a system of simultaneous linear equations in 3 unknowns. Help me please it's an exam project work 🤲
Artöm
Figure it out yourself
klimi
shopify
What is oop
Artöm
Programming model
Mar!o
Hey AFAIK if I have a constexpr variable and it's address will not be taken, it will get optimized away ( not consuming any memory like a macro).
Mar!o
Now I have a constexpr string view and if I call .data() and convert it to a normal string will this still allow the optimization? Or will it consume memory?
Artöm
Artöm
Macro string also occupies space
Artöm
You have to call .data(), so there wont be any difference in binary size
Artöm
Dont use macros unless you have to
Artöm
It doesnt depend on whether it is a macro or a constexpr variable
Artöm
You do realise that bare string literals also require space right?
Nameful
I am terribly disturbed by your profile picture
Mar!o
Mar!o
And then popped when gone
Mar!o
NXiss7
Igor🇺🇦
Dima
eh
Dima
it’s actually good
Dima
maybe
Dima
I don’t know
Dima
¯\_(ツ)_/¯
klimi
he broke the rules
Dima
not indian at least
klimi
/warns @HlebR
klimi
well
Patrick
Hello. Does anybody know of Arduino Telegram groups? Though I'm interested in this one too :)
Alex
Hi. I'm looking for native android Java developers groups. Can anyone please send me any group links that you may know? I'm not able to find any by just searching.
I'm ultimately looking to hire some developers for android.
Thank you for your help.
Patrick
Mr Centimetre
can you send jquery-1.9.0.min.js file?
Anonymous
Any one can tell me a little about minimal algorithm? How do you make a recursion? I’m working on a draught(checkers) homework
Artöm
You call a function from itself
Artöm
You didnt describe algo
Anonymous
Sorry..but I think I’ll look into it again. Many thanks!
Patrick
How would you name the two different kinds of recursion, where one calls itself appending to the stack and the other actually discards the stack so it's being called like new?
Artöm
Second sounds like tailcall
Anonymous
Anonymous
Ludovic 'Archivist'
@unterumarmung swinging that banhammer left and right eh
Anonymous
Mr Centimetre
/warn offtop
Sorry😭i am on the over data usge and i am only use telegram that situation.extremely sorry admin😭😭
Anonymous
Patrick
Second sounds like tailcall
That's what I thought. Except some languages, like Java, don't have the optimisation built in, so it's not truly resetting the stack
Anonymous
Patrick
but I think Kotlin did implement it
but ultimately because I've read it on the Clojure website
Anonymous
Anonymous
Dima
#ot
Patrick
good to know
so I suppose with or without optimisation you'd call it "recursion" and "tail-calling"
Anonymous
Well, that's reasonable
Patric, come with me
Patrick
Is tail-calling done in C++ only with set/longjmp?
Anonymous
Ludovic 'Archivist'
Well actually it is likely just a jmp
Ludovic 'Archivist'
No need to setjmp/longjmp if you can just jump up
Patrick
I only knew of set/long jmp
and I suppose you can just use a while loop inside your function body to mimic it