Mangesh
I will follow the group rules
Anonymous
Anonymous
klimi
Anonymous
Thanks
Any suggestions for data science project ??
Anonymous
Not in medical field
Anonymous
where is the hired channel or group for c/c++
wanna see jobs requirments
klimi
? what
Artöm
? what
Chat for job offers
Ilya
klimi
Anonymous
klimi
i mean we dont have this chat
Anonymous
every job have a requirments even kfc
Anonymous
Artöm
SO...
So you need a chat for specific country and/or domain
Anonymous
Artöm
Anonymous
Anonymous
@thehire
sorry,all companies are stubid and you are right
any programmer is hired fpr any job
i did not know, sorry😂
Anonymous
araragi
#ot
Artöm
@thehire
Do you see how technology required varies? You woudn't apply for even tenth of offers because you have skills and preferences
Artöm
Want a job in C? Search for job in C or filter somehow
Artöm
Then you see the actual range of requirements
Anonymous
Then you see the actual range of requirements
, (i did not say that i want to be hired)
so now there is requirments
good
these was my question
if u have an answer i will be thankfull
where is the hired channel or group for c/c++
wanna see jobs requirments
araragi
We don't have any job opportunities in here, you're in the wrong place mate!
Anonymous
Artöm
araragi
And use #ot cuz this isn't the right place
Ilya
did your teacher told you that?
A programming language is an instrument which can be used for many different tasks.
C++ does not mean you will be doing only some specific job, like, writing OSes or drivers for hardware.
Artöm
Well, I'm done
Anonymous
Anonymous
Anonymous
Why I have 5 errors on line 105 and 118? https://pastebin.com/MvUB0LtJ
Sachin
https://www.geeksforgeeks.org/edit-distance-dp-using-memoization/.
Can someone explain this code to me
Sachin
https://www.geeksforgeeks.org/edit-distance-dp-using-memoization/.
Can someone explain this code to me
return 1 + min(editDist(str1, str2, m, n - 1), // Insert
editDist(str1, str2, m - 1, n), // Remove
editDist(str1, str2, m - 1, n - 1) // Replace
);
What is happening exaxy here?
Anonymous
Anonymous
Anonymous
Anonymous
https://pastebin.com/LiZZp3ka
Anonymous
hello i have an issue with a c program i am writing
Anonymous
is there anyone that can help ?
Anonymous
Anonymous
i have a two small tools i am building in C, the first tool takes in some input, and filters out the inputs , that data is suppose to passed to the next tool , which will re format the data and save it in a json file
Anonymous
the inputs come from a csv file
Anonymous
https://pastebin.com/LiZZp3ka
Anonymous
this is the filter tool
Anonymous
and this is the json formatter tool
Anonymous
first i compile both programs
Anonymous
then i run this : (./bermuda | ./geo2json) < spooky.csv > output.json
Anonymous
what is suppose to do is , take data from the spooky.csv file , run it through the bermuda exe , which filters the data down to a few that fit the conditions, then take that filtered data and run it through the geo2json exe, which is there to reformat the data do a json format
Anonymous
the issue is the filter part is not working but the formatter works, so it just formats all the data, instead of only the data the fits the conditions
Anonymous
https://pastebin.com/xQZYXrkF
Anonymous
this is reformatter
Anonymous
> (./bermuda | ./geo2json) < spooky.csv > output.json : when i do it like this there is an compiler error
Anonymous
if i do it without the () around the exe files, it formats the data without filtering it
Foxner
What happens if you only run the filter program? Also, what are you running this in?
Anonymous
Anonymous
Anonymous
so filter is the issue
Foxner
nada thing
It outputs the same thing it get as the input?
Anonymous
Foxner
Does the program ever enter the while loop? Try outputing the latitude and longitude in the loop. What are the values like?
Anonymous
Anonymous
https://pastebin.com/S6yuGbPY this is the csv file btw
Anonymous
with the data that is suppose be filtered with the bermuda file, and then reformated in the geo2json file
Anonymous
i fixed the filter i think
Anonymous
i outputted it to a txt file and it seems to have worked
Anonymous
lets try to add a the pipe to the other tool see if it works now
Anonymous
Anonymous
all fixed now, thanks
Anonymous
i think i forgot to recompile, in node you dont have to recompile