Mangesh
I will follow the group rules
Anonymous
Anonymous
Me too
Thanks
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
klimi
Artöm
where is it?
That's his question
klimi
i mean we dont have this chat
Anonymous
every job have a requirments even kfc
Artöm
SO...
So you need a chat for specific country and/or domain
Artöm
every job have a requirments even kfc
All kfcs have same requirements for same posiotion. Programming doesnt
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!
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
Why tg? e.g. https://stackoverflow.com/jobs/developer-jobs-using-c++ will be much more useful
thanks alot, just wanted a channel like the hire but gor c/c++ so i keep scrolling and read 😊
Anonymous
We don't have any job opportunities in here, you're in the wrong place mate!
i did not ask 4 opportunitirs guys plz don't use ur imagination
Anonymous
And use #ot cuz this isn't the right place
it is not ot it is related to c/c++ and it is about job requirments plz read the pinned message, i'm the new guy here
Anonymous
Anonymous
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.
i tried to search for C RoadMap but i didn't find so it will be little helpfull to find such requirments to know what i'm missing during the road we don't get everything from teachers because they r outdated everytime thats all
Anonymous
Why I have 5 errors on line 105 and 118? https://pastebin.com/MvUB0LtJ
Anonymous
Why I have 5 errors on line 105 and 118? https://pastebin.com/MvUB0LtJ
You have written the syntax of for loop in if condition so that might be the reason for error
Anonymous
Any suggestions for data science project ??
Twitter sentimental analysis.. Recommendation engine
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
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
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
so filter is the issue
Foxner
nada thing
It outputs the same thing it get as the input?
Foxner
Does the program ever enter the while loop? Try outputing the latitude and longitude in the loop. What are the values like?
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
all fixed now, thanks
Anonymous
i think i forgot to recompile, in node you dont have to recompile