python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
In JSDoc, how to apply param type as bunch of strings from a constant array of objects string property?
Let's say I have an object like this;
const typesOfIceCreams = [
{id: "CHOCOLATE", price: 0.49, rating: 4.5},
{id: "CHERRY", price: 0.54, rating: 4.3},
{id: "LEMON", p...

GreyGoat93
Votes: 0
Answers: 1
What are all the syntactic elements of a Python function tooltip?
Pointing at sorted in VS Code, the following popup appears:
This contains lots of syntax elements I don't know from Python, such as /, *, _T, @; and coming from C++, it looks as if SupportsRichCompar...
Felix Dombek
Votes: 0
Answers: 1
customising pdoc automatically generated documentation for python
I used pdoc3 to automatically generate documentation from the docstrings at the beginning of each python class/function by executing the following
pdoc3 --html ambit_stochastics
The resulting document...
Dan Leonte
Votes: 0
Answers: 1
Is it possible to make a git diff that results in no changes?
So this is probably a silly idea, and there are probably workarounds/other solutions to this. I am curious about these, but also curious about the specific answer to the following question.
Is it poss...
Jordan Davidson
Votes: 0
Answers: 2