Anonymous
And I can't share the any part of code because I don't understand how to do it, sorry.
Anonymous
hello guys, can u help me to make this programs? thanks a lot for ur helping🙏🏻
find an algorithm to triangulate and then multiply the diagonal
Roxifλsz 🇱🇹
>people who distribute ransomware I like to call them people raising awareness of the importance of backups
Dima
>people who distribute ransomware I like to call them people raising awareness of the importance of backups
yeah, even people who are getting ransomware on their computers are boomers or just skids
Naman
Btw, FYI, forbes say "Ransomware is a hugely profitable business; the Ryuk threat operators are said to have made $34 million (£25.8 million) from just one successful attack, for example. Perhaps the highest-profile operator, the REvil cybercriminal group, allegedly makes more than $100 million (£76 million) a year from extorting ransom payments. Ransomware is, in my never humble opinion, the most prominent cybersecurity threat organizations face today."
Dima
> forbes
Dima
Listen more to these swamp talkers
Nameful
Listen more to these swamp talkers
what's your point here, really?
Naman
In my opinion, there are hardly any ransomware in Linux, and rarely any on Arch Linux, because it is near impossible to gain profit from Linux users
Naman
I have literally never seen an average Linux user being robbed by such things.
Dima
what's your point here, really?
listening to what forbes say about cybersecurity and ransomware is just funny stuff
Dima
are you silly or what?
Dima
I said it twice
Dima
Nameful
I said it twice
you said that you don't like Forbes twice
Nameful
not what's wrong with this quote
Nameful
but yeah, cool bait
Dima
lol. Shrek would tell more useful info than forbes
Dima
Anonymous
need help with my code
Anonymous
its actually python but it's an algorithm question im trying to sum all the elements in an array , the array is sorted and its all 0s and 1s so imma do binary search on in but the while loop just keeps running
Anonymous
Anonymous
it has to be O(log(N))
Apk
You are not really doing a search here
Alex
please stop offtop
Apk
Also you are calculating mid the wrong way
Abhinav
/notes
Dima
lol
Anonymous
Anyone here who knows about offsets radar
M.Khorram
Anyone here who knows about offsets radar
What do you mean "offsets radar"?
Anonymous
game modding
M.Khorram
aha
Anonymous
aha
???? i want some offsets for ue4 based games
M.Khorram
???? i want some offsets for ue4 based games
I've never been involved in game development. Just thought your question is about a real "radar".
M.Khorram
May I PM you?
Anonymous
ברני
Hey again, it's seems my last function doesn't work right.. it suppose to put the even numbers from the first and second array in to the third.. can any one give me a hint why it doesn't work please? https://onlinegdb.com/B16X5DtYv
Dima
read the rules
Anonymous
I did
Anonymous
It said first go search for yourself, but if didnt find an answer
Alex
Dima
no task assignmentsssss
Anonymous
Fine I'm sorry
Dima
try to write a code and if you can’t then you may ask
Dima
¯\_(ツ)_/¯
Anonymous
Why did I ask then
Alex
cause you are smart in alternative way
The Shadow Monarch
What was that command for getting references to books...
Anonymous
/get n1057.pdf
Anonymous
Anyone knows a library for face detection with rest api support in c/cpp
Anonymous
anyone can do reverse eng. in lib (.so) files i need a help i will pay
Ayush
/get
Jasur Fozilov 🐳
/get book
Jasur Fozilov 🐳
/get dsa
MᏫᎻᎯᎷᎷᎬᎠ
Is there any partially supported C++20 online compiler?
MᏫᎻᎯᎷᎷᎬᎠ
Just a quick editor to see a simple use cases when I'm not having the pc around
MᏫᎻᎯᎷᎷᎬᎠ
Google.com
If you know one just say it or stop playing around
Igor🇺🇦
Is there any partially supported C++20 online compiler?
https://godbolt.org/ supports all major compilers even trunk
Anonymous
M__
/get findprojects
olli
Is msvc actually up to date there?
mostly, the latest version released yesterday (VS 16.8) is not yet on compiler explorer
Mandelbröt
There are N different vertical lines on the plane, i-th of which is defined by the equation x=ai (0≤ai≤W) and M different horizontal lines, i-th of which is defined by the equation y=bi (0≤bi≤H). You must add one line of the form y=k (0≤k≤H, k≠bi for every 1≤i≤M) to the plane. What is the maximum possible number of squares with different areas you can obtain on the plane? (Squares can have other lines passing through them)
Mandelbröt
Any approach to this ...?
Anonymous
/report company ad
Vitalii
#include <stdio.h> #include <string.h> #define SIZE 1000 int main () { char string[SIZE]; char *ptr, *min; printf("Enter the string: "); gets(string); ptr = strtok(string," ."); min = ptr; while(ptr!=NULL) { if(strlen(min)>=strlen(ptr)) { min = ptr; } ptr = strtok(NULL," ."); } printf("\nThe smallest word in the string: %s", min); return 0; } Why my program doesn't work, when I put ptr = strtok(NULL," .") before if? Only when I put it after if, that's correct
Alex
use strcpy(min, ptr) instead of min = ptr
Vitalii
use strcpy(min, ptr) instead of min = ptr
maybe you mean strcpy(min, ptr)? Because in your interpretation my code won't have any sense.
The Shadow Monarch
/get cpp guide
Vitalii
yes, sorry
Okay, but in this case I need to change my pointer "min" into massif "min"
Alex
good point
Vitalii
But why I can't just leave my pointer and write "min = ptr"? You mean it looks not cool?))