python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
jq variable substituion works in shell but not in script
The following command works in the shell just fine, but when executed via an script it doesn't. What am I missing.
jsonSelectWords='select(.words!=6) | select(.words!=1173) | select(.words!=1) | selec...
Stefan Kraxberger
Votes: 0
Answers: 1
UML Activity diagrams: how to select between two objects in an expansion region
I'm trying to express that an action inside an expansion region should take its first parameter from outside the expansion region on the first iteration and from a partial result on successive iterati...

royconejo
Votes: 0
Answers: 1
Angular 12 Expansion Panel and keep total height fix at 100 vh
I have a question regarding a website layout. I want to keep total height fixed at 100vh no matter whether section B, which is made of Angular Expansion Panel (I am using angular 12), is expanded or c...
Marvin Chang
Votes: 0
Answers: 1
Expansion with conditional ternary operator
Simple question: Is there a way to use an expansion inside a conditional statement using the ternary operator?
const a = 1, b = 2;
// Works
console.log(...[ a, b ]);
// Works
console.log(...(a ?...
Esteban Ortega
Votes: 0
Answers: 2