All Questions
20,903,088
questions
0
votes
0answers
2 views
GLsizeiptr and GLintptr - function list
I would like to check which core OpenGLfunctions use GLsizeiptr and GLintptr types. Where can I find the full OpenGL function list ? I have check glspec46.core.pdf but there is no such list. When ...
0
votes
0answers
3 views
Typescript did not show error even I did not implement all the compulsory properties of an interface
interface Test {
foo: string;
bar: string;
}
const obj = {
foo: 'ok'
} as Test;
Typescript compiler did not prompt me error even I did not implement bar in obj. I expect error will be ...
0
votes
0answers
2 views
The best loss function and optimizer to use in Keras for malware machine learning?
I am trying to find the best loss function to use in my Keras model. The model will detect malware. I am first trying to understand some practice code before I implement my own model.
I was ...
0
votes
0answers
3 views
Detect external anchor tag click event in vue js
I am getting html content from the service and render it in vue frontend. That html content having anchor tags which are having links to pages. There I need to detect the click event of the anchor tag....
0
votes
0answers
3 views
I want to create a custom folder in the Application and services log area in windows event logs
I am trying to create a custom folder in the Application and services log area in windows event logs.
Inside the folder I want to create two custom area’s ex: Area1, Area2. In Area1, I want to write ...
0
votes
0answers
2 views
JavaScript how to add to an array with each request object received
I have declared an empty array :
//var RequestList = new Array();
Now i want to parse the xml file for each request and add the value from the xml parsed element to the empty array:
// var ...
0
votes
0answers
3 views
Divide a set of items xPath
I am new to xPath so do not know much. I have been googling for a bit and cannot find anything, maybe I am just searching the wrong thing but I thought I would ask on here.
I am currently trying to ...
0
votes
0answers
4 views
create new column by matching ID
I have the following example data.
data_1 <- data.frame("ID" = c('a','b','c','d','e'),
"value" = c(2,4,9,5,3))
data_2 <- data.frame("ID" = c('a','...
0
votes
0answers
2 views
JWT generate token with algorithm ES256
I am trying to generate an accessToken with algorithm ES256 and I use the following code:
var privatekey = fs.readFileSync('./cert/private.pem', { encoding: 'utf8' })
const accessToken = jwt.sign(
...
0
votes
0answers
3 views
Fetching All User Stories Under a set of Projects
I have a set of Projects created in Rally which have Features & Team features & finally User stories under them. My Requirement is to Fetch all User stories under these Projects using the ...
0
votes
0answers
6 views
Split dataframe string based on words and store them in a dataframe column
In my dataframe I have some Name and I want to split it based on some words.
Dataframe (dff):
id name
1 Midian Almeida(Last)
2 Robert(ASA)(first)
3 Nikole John (middle)
...
0
votes
0answers
2 views
APIM requets query issue filtering
Hello i was working on getting requests through the Azure API Management , however i am getting all the api exsiting. i wanted to filter just the apis i needed
here is what i did :
requests
|summarize ...
0
votes
0answers
6 views
Is json.dumps and json.loads safe to run on a list of any string?
Is there any danger in losing information when JSON serialising/deserialising lists of text in Python?
Given a list of strings lst:
lst = ['str1', 'str2', 'str3', ...]
If I run
lst2 = json.loads(json....
0
votes
0answers
7 views
Mapping array<number> into Promise array issue
My goal is to generate an array of Promises dynamically (by using Array.map()), and execute them at a posterior time.
export const ExecuteReader = async () => {
let strAll = [1, 2].map((num) =&...
0
votes
0answers
3 views
Add type def to data object - Vue
Below is a simple Vue single file component that I Have created and I want to add type definition to its data object,
How can I add type info without using typescript ?
<template>
<h2> {...

