I am trying to get all the installed YUM packages on an RHEL machine. I can easily get it through using shell commands which is not idempotent and would like to
Let's say I have two variables: a="AAA" b="BBB" I read a string from a file. This string is the following: str='$a $b' How to create a new string from the
I am using Aspose library for Word merge. In the previous version of the Aspose, if we add white spaces for a field then while merging , it doesn't considers it
I am wondering how we can use ITEXT7 to extract image info associated to digital signatures. I know there have been similar questions asked in the past, but the
I am developing a react-native application. but it gives a error as given bellow image in the console. here I have attached both js file and test file. Error di
I have this object set for Marker icon in React: const icon = { path: "M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-
I have a weird problem I'm trying to understand. I have a project I'm working on that I'm trying to use multiprocessing for to increase run speed for tasks that
Say in a composable I have two states: var stateA by remember { mutableStateOf(varA) } var stateB by remember { mutableStateOf(varB) } varA and varB are class
I am trying to get user email,save to shared preferences and use as collection name in another file. my code to save Future<void> saveEmail() async { var
I have classes called bird and dog: class Bird extends Animal with FlyAbility, JumpAbility { // ... } class Dog extends Animal with RunAbility, JumpAbility {