I'm trying to connect MongoDB with node.js, but the terminal is showing MongoAPIError: URI must include hostname, domain name, and tld Backend Code I have writt
I have downloaded prebuilt binaries for Pixar's USD SDK, and set up a rudimentary CMake project to use it: # my-project/CMakeLists.txt cmake_minimum_required(VE
I'm just working on writing some random puzzles on codewars.com and am curious if anyone can think of a way to eval code after the following code has been run:
I am in the Language Studio > Custom question answering portal (https://language.cognitive.azure.com/questionAnswering/projects), trying to add a source to m
I have a project folder with this structure: . ├── myapp.py └── mypackage ├── __init__.py └&
Currently I'm using this: f = open(filename, 'r+') text = f.read() text = re.sub('foobar', 'bar', text) f.seek(0) f.write(text) f.close() But the problem is
I wanna write a program that checks the existence of a string in another string using recursive function (not allowed to use any method such as in , find etc. I