Skip to main content

Questions tagged [variables]

THIS IS AMBIGUOUS; USE SPECIFIC-LANGUAGE TAGS WHENEVER APPLICABLE. A variable is a named data storage location in memory. Using variables, a computer program can store numbers, text, binary data, or a combination of any of these data types. They can be passed around in the program.

-1 votes
0 answers
6 views

Dynamically populating drop-down variable

I am creating new Octopus Job. Created few required variables (prompt user for some input or selection of static values). But I also need a variable of drop-down type that cannot be populated prior ...
pegabgd63's user avatar
0 votes
0 answers
15 views

Issue with Airflow Variables Adding Extra Backslashes to Private Key

I'm encountering a peculiar issue with Airflow. I've stored a private key as a variable in Airflow, but it seems to be adding an extra backslash (\) to newline characters (\n). Here's an example of ...
daniel guo's user avatar
0 votes
0 answers
17 views

Are Jsonnet variables the same as functions with no parameters?

Are Jsonnet variables, the ones that end with a semicolon (as opposed to the ones that end with a comma), the same as functions with no parameters? In the following Jsonnet program { c: local a = ...
Evan Aad's user avatar
  • 5,911
1 vote
1 answer
41 views

How to show specific number of lines in Ansible debug task

How to show only the first five lines of the hostvars variable in Ansible? - name: "Show Ansible hostvars var" debug: msg: "{{ hostvars }}" # How to stop after 5 showed lines?...
CH06's user avatar
  • 157
0 votes
1 answer
32 views

Why can't I access variables from within own class in flutter

first of all sorry if my terminology is a bit wrong but I'm fairly new to flutter. So I can't access the color variable originalColor which is defined at the top of the class from within the class ...
Darren Ware's user avatar
1 vote
1 answer
27 views

in gnucobol, sub programs of one parent can't invoke each other

I'm currently trying to achieve a pattern to write modest these days' programs in cobol. By these days' programs I mean a source file with a few variables and procedures visible to each other. The ...
alex's user avatar
  • 861
1 vote
1 answer
58 views

powershell variable substitution doesn't work

Sorry if it's a stupid question, but I'm quite new in ps.. Running the curl this way works correctly (mailgun sends an email with attachment): curl -s --user 'api:***' ` https://api.eu.mailgun.net/...
Eduard Dubilyer's user avatar
0 votes
1 answer
23 views

Klaviyo/GTM Tracking variables

I have the below tag which triggers on a page view which works fine. I'm trying to add an extra line of text (variable) to appear next to the 'checkout viewed' metric which is the '{{dlv - category}}' ...
user25882303's user avatar
0 votes
0 answers
16 views

sass mixin - variable hint

lets say I have a mixin with a couple of variables: @mixin heading($fow: 900, $mb: 1.6rem) { font-size: clamp(2rem, 1.3077rem + 3.4615vw, 3.125rem); font-weight: $fow; margin-bottom: $mb; font-...
Timmy's user avatar
  • 63
0 votes
2 answers
89 views

How to get the string representation of a variable's name?

I'm working with PowerShell and I have a variable defined like this: $name = "John" I'm trying to find a way to get the string representation of the variable's name, which in this case ...
Just a learner's user avatar
0 votes
2 answers
28 views

How do I uncondense a table in SAS

I’m trying to figure out how to take one table and break it out to two separate tables. In the below example I would want Jim and Steve to be in one table and Joy and Nancy to be in another one. I ...
Mike's user avatar
  • 13
0 votes
1 answer
14 views

i want to create a modal, when i click on button having id a modal should be opened having card

i have created a courses page and create a fullscreen which should be opened when button is clicked modal is also opened but i am having an error in JS. let value = colc[details.target.id] if(details....
faryal sz's user avatar
0 votes
2 answers
44 views

Optimizations in branching if statements

I'm writing custom execution time formatter function for Nushell, and came across the need to display values when they are needed. First, take a look at the code: def tooktime_fmt [exect: string] { ...
Futman's user avatar
  • 13
0 votes
0 answers
40 views

Issue with updating `card1` and `card2` values in a "memory" game

let count_open_cards = 0; let card1 = null; let card2 = null; function card_game(i) { // Получаем front и back по ID: let front = document.getElementById(`card-${i}`).querySelector('.front'); ...
ron's user avatar
  • 1
0 votes
0 answers
20 views

kmeansvar in R gives "Error: Some categorical variables have same names of categories" [closed]

I am trying to run the kmeansvar in R and it keeps giving an error. I try running this: > kmeansvar_clustering<-kmeansvar(X.quanti = X.quanti0,X.quali = X.quali0, init=4) I keep getting this ...
Kimberley Fung-Loy's user avatar

15 30 50 per page
1
2 3 4 5
3598