I have installed ckeditor in django for the purpose of maintaining formatting. The interface looks like this after adding this: But when I'm loading on the reac
a=input('enter the name\n') b=input('enter the age\n') print('your name is {a} and your age is {b}'.format(a,b)) I am running above piece of code and
I have started working with Android Studio today and created a simple Hello World application. I have built it to APK file. Then I have moved this APK file onto
what is the meaning of the following sequence diagram and exactly the constructor(that is represented as a create object)?
I have this code: #include <iostream> namespace FooStuff { struct Foo { }; } decltype(std::cout)& operator << (decltype(std::cout)& le
I have a python decorator, it will round the return of function 2 decimals: def round_decimal(func): def inner(*args, **kwargs): r
I recently installed Hadoop 3.3.1 on Ubuntu (single node cluster) using this tutorial. The start-dfs.sh and start-yarn.sh shows all the processing running prope
Long story short, I needed to use pull_request_target because I needed to checkout a private repo and you can't transfer secrets to a fork. So now, in my .githu
I am trying to create a simple 2D game where a ball is falling to the ground, influenced by some obstacles that will change the final position of the ball. I am