I am creating form using JavaScript. Like below var form = document.createElement('form'); form.action = 'abc.com'; form.noValidate = true; form.id = 'myForm';
I have gone through this SO link Ionic - How to remove sidemenu on login page only? and tried the solutions provided here. Based on the solutions provided in t
I have the following Azure setup for a Docker app: Azure Devops Pipeline pulls from GH Pipelines YAML is pointing to my Azure Container Registry and a specific
The code below works fine without using Promise. But I am also learning Promise. I would like to request if continue using Existing Codes is feasible for the lo
I have two suspend methods that I launch parallely inside a ViewModel: init { viewModelScope.launch(Dispatchers.Default) { launch { loadTotalCircula
I have an APK file and decompile it using APKtool and get all the source code as smali files, I want to modify the bytecode to show the user a message when he t
I need a list of all repository tags for a remote Docker registry, along with their date = the date the image tag was pushed. Or at least the tags sorted accord
I have some simple javascript code in three files. There is my server.js, which has const userRouter = require('./routes/users') app.use("/",userRouter) Then
I have to get the name of the course that the person teaches who consumed the most beer. Following tables are given: The UV relationship contains information ab
consider the following example: use std::fs; use std::path::Path; fn get_battery() -> String { let power = if Path::new("/sys/class/power_supply/BAT0/po