- Sep 2024
-
www.youtube.com www.youtube.com
-
it has to be taken as a postulate
for - answer - It has to be taken as a postulate - Federico Faggin - to question - how can we test that consciousness is the foundation of reality?
-
you've mentioned the word theory a lot of times. How can we test this?
for - question - how do you test the theory that consciousness is the foundation of reality? ( to Federico Faggin)
-
- Feb 2021
-
twitter.com twitter.com
-
ReconfigBehSci. (2020, November 21). RT @DrEricDing: Good question for immunologists like @michaelmina_lab @VirusesImmunity and @PeterHotez. Https://t.co/Rs1zaUPznm [Tweet]. @SciBeh. https://twitter.com/SciBeh/status/1334804615842439170
-
- May 2020
-
nwalsh.com nwalsh.com
-
Regular Expression Functions There are three regular-expression functions that operate on strings: matches() tests if a regular expression matches a string. replace() uses regular expressions to replace portions of a string. tokenize() returns a sequence of strings formed by breaking a supplied input string at any separator that matches a given regular expression. Example:
Test question: how many are there regular-expression functions in XSLT?
-
What’s the difference between xsl:value-of, xsl:copy-of, and xsl:sequence? xsl:value-of always creates a text node. xsl:copy-of always creates a copy. xsl:sequence returns the nodes selected, subject possibly to atomization. Sequences can be extended with xsl:sequence.
What’s the difference between xsl:value-of, xsl:copy-of, and xsl:sequence?
-
<xsl:variable name="date" select="xs:date('2003-11-20')"/>
How to declare the date in the variable in XSLT 2?
-
Types XSLT 2.0 allows you to declare: The type of variables. The return type of templates. The type of sequences (constructed with xsl:sequence) The return type of (user-declared) functions. Both the type and required type of parameters.
What are the types that one can declare in XSLT 2?
-
-
www.ibm.com www.ibm.com
-
<xsl:sequence select="1 to 16"/>
How to create a sequence with range.
-
<xsl:for-each select="1 to 32"> <!-- Do something useful here --></xsl:for-each>
How to create a loop in XSLT?
-
The new as attribute defines the data type of the variable, and the asterisk (xs:integer*) means that the sequence contains zero or more integers
How is the @as attribute? Which values can it have?
-
One of the major new concepts in XPath 2.0 and XSLT 2.0 is that everything is a sequence.
What is one of the major concepts in XPath 2.0 and XSLT 2.0?
-
- Apr 2020
-
medium.com medium.com
-
What is a Function Expression?A JavaScript function can also be defined using an expression.A function expression can be stored in a variable:var x = function (a, b) {return a * b};After a function expression has been stored in a variable, the variable can be used as a function. Functions stored in variables do not need function names. They are always invoked (called) using the variable name.
Test question: What is function expression?
-
-
codeburst.io codeburst.io
-
Writing an async function is quite simple. You just need to add the async keyword prior to function:
Test question: What is the syntax of async function?
-
-
codeburst.io codeburst.io
-
Our Promise can have one of three states:
Testing question: what are the states of a promise?
-
-
javascript.info javascript.info
-
Using objects as keys is one of most notable and important Map features.
Test question: What is one of the most notable and important Map features?
-
Map is a collection of keyed data items, just like an Object. But the main difference is that Map allows keys of any type.
Test question: What is the difference between Map and Object in JavaScript?
Tags
Annotators
URL
-
-
javascript.info javascript.infoFetch1
-
he basic syntax is: let promise = fetch(url, [options])
Test question: What s the basic syntax of fetch(); ?
Tags
Annotators
URL
-
-
-
Webpack is a most have to compile a complete JavaScript project.
Test question: how do you pack the web extension?
-
linter
Test question: What is a linter?
Answer (Wikipedia): lint, or a linter, is a tool that analyzes source code to flag programming errors, bugs, stylistic errors, and suspicious constructs.[1] The term originates from a Unix utility that examined C language source code.[2]
-
This tool accepts both a configuration file and line parameters.
Test question: How can you configure web-ext?
-
-
levelup.gitconnected.com levelup.gitconnected.com
-
Here are the possible ways to make an API call:XMLHttpRequestfetchAxiosjQuery
Test question: What are 4 ways to make an api call?
-
-
www.w3schools.com www.w3schools.com
-
document.addEventListener(event, function, useCapture)
Test question: What is the syntax of element.addEventListener() ?
-
-
developer.mozilla.org developer.mozilla.org
-
It should be 48x48 pixels.
Test question: What is the recommendes size of the icon for the firefox extension?
-
-
www.tutorialspoint.com www.tutorialspoint.com
-
It is an unordered set of name/value pairs.
Test question: What is an object in JSON?
-
-
www.tutorialspoint.com www.tutorialspoint.com
-
Square brackets hold arrays and values are separated by ,(comma).
Test question: What are square brackets used for?
-
JSON syntax is basically considered as a subset of JavaScript syntax;
Test question: What is JSON syntax part of?
-
name/value pairs.
Test question: How is the data in json represented?
-
-
developer.mozilla.org developer.mozilla.org
-
Extensions for Firefox are built using the WebExtensions APIs, a cross-browser system for developing extensions.
Testing question: How compatible are extensions among Web Browsers?
-
-
developer.mozilla.org developer.mozilla.org
-
The most interesting key here is content_scripts, which tells Firefox to load a script into
Testing question: What part of "manifest.json" tells firefox where is the script to load?
-
description is optional, but recommended: it's displayed in the Add-ons Manager. icons is optional, but recommended: it allows you to specify an icon for the extension, that will be shown in the Add-ons Manager.
Testing question: What are the optional parts of manifest.json?
-
-
developer.mozilla.org developer.mozilla.orgeval()1
-
Never use eval()! eval() is a dangerous function, which executes the code it's passed with the privileges of the caller.
Testing question: Should you ever use eval()?
-
-
developer.mozilla.org developer.mozilla.orgPopups2
-
The popup is specified as an HTML file, which can include CSS and JavaScript files, as a normal web page does.
Testing question: Of which files the popup consists of?
-
Popups resize automatically to fit their content.
Testing question: How is the popup resized?
-