< 1 2 3 4 5 6 7 > >>   Sort: Date

"docker pull nvidia/cuda" - Download Docker Image
How to pull NVIDIA CUDA Docker Image with the "docker image pull nvidia/cuda" command? If you are running a Docker container on you NVIDIA GPU server, you can get a CUDA environment as a Docker container from the NVIDIA CUDA Docker images by following these steps. 1. Download NVIDIA CUDA Docker imag...
2023-03-07, 6198👍, 0💬

Can Two HTML Forms Be Nested
Can Two Forms Be Nested? Can two forms be nested? The answer is no and yes: No. You can not nest two forms directly. XHTML schema does not allow that. Yes. You can nest two forms indirectly. See the tutorial example below. No. Two nested form do not work as two forms. Browsers will treat them as one...
2023-01-24, 6031👍, 2💬

'forward-request' Policy Statement
How to use the "forward-request" Policy Statement to call the backend service for an Azure API service operation? The "forward-request" Policy Statement allows you to call the backend service, using information provided in the "context.Request" object. The "forward-request" Statement has the followi...
2018-01-16, 5839👍, 0💬

'rewrite-uri' Policy Statement
How to use the "rewrite-uri" Policy Statement for an Azure API service operation? The "rewrite-uri" Policy Statement is actually doing the same work as the operation setting "Rewrite URL template". For example, if you create an API operation with the following settings: HTTP verb: POST URL template:...
2018-01-16, 5661👍, 0💬

Multiple Paragraphs in an HTML List Item
Can Multiple Paragraphs Be Included in a List Item? Yes. You can include multiple paragraphs in a single list item, because "li" is a flow type element, which can have block elements and inline elements. The tutorial example below shows you how a list item can have two paragraphs: &lt;?xml versi...
2017-05-29, 5576👍, 0💬

'xml-to-json' Policy Statement
How to use "xml-to-json" Azure API Policy Statement? The "xml-to-json" Policy Statement allows you to convert the body of the inbound request or outbound response from XML format to JSON format. For example, the following "xml-to-json" policy statement converts the outbound response from XML format ...
2021-10-02, 5379👍, 2💬

💬 2021-10-02 FYIcenter.com: @Joe, just follow "Edit API Operation Policy" tutorial, and enter the above code into the policy file.

💬 2021-09-28 Joe D: Do you have any examples of how you would use this? I am really lost on how to implement this.

Differences of evaluateTransaction() and submitTransaction()
What are the differences of Differences of evaluateTransaction() and submitTransaction() of the fabric-network.Contract class? Here are the Differences of evaluateTransaction() and submitTransaction() of the fabric-network.Contract class: evaluateTransaction() method - Calls the given transaction fu...
2019-04-22, 5357👍, 0💬

Visual Studio Tutorials
Where to find tutorials on Visual Studio? I want to know How to learn Visual Studio. Here is a large collection of tutorials to answer many frequently asked questions compiled by FYIcenter.com team about Visual Studio: Getting Started with Visual Studio What Is Visual Studio Download and Run Visual ...
2022-01-22, 5352👍, 1💬

💬 2022-01-22 perlancar: # This file was a use strict; use warnings; use ExtUtils::Mak my %WriteMakefileA "ABSTRACT" => " "AUTHOR" => "pe "CONFIGURE_REQU...

Start Visual Studio Command Prompt
How to start Visual Studio Command Prompt? I have Visual Studio 2017 Community version with Visual C++ environment installed. If you have Visual Studio 2017 Community version with Visual C++ environment installed, you can follow this tutorial to start Visual Studio Command Prompt: 1. Run "All Progra...
2017-08-21, 5183👍, 0💬

Instantiate Chaincode on BYFN Channel
How to Instantiate Chaincode on BYFN Channel? You can follow this tutorial to Instantiate Chaincode on BYFN Channel manually. 1. Verify the installed chaincode: $ docker exec -it cli bash bash-4.4# echo $CORE_PEER_ADDRESS peer0.org2.example.com:7051 bash-4.4# peer chaincode list --installed Get inst...
2019-04-14, 5163👍, 0💬

'set-backend-service' Policy Statement
How to use the "set-backend-service" Policy Statement for an Azure API service operation? The "set-backend-service" Policy Statement is actually overriding the API setting "Web service URL" to specify the backend service base URL. For example, if you create an API with the following settings: FYIcen...
2017-12-04, 5031👍, 0💬

JSON Tutorials
Where to find tutorials on JSON (JavaScript Object Notation) text string format? I want to know how to use JSON. Here is a large collection of tutorials to answer many frequently asked questions compiled by FYIcenter.com team about JSON text string format: Introduction of JSON What Is JSON? JSON Tex...
2021-08-04, 4988👍, 1💬

"docker container exec --tty --interactive" - Attach to Container
How to attach console to a Running Container using the "docker container exec" command? I want to get a shell TTY terminal on the container. To attach a TTY terminal console to a Running Container, you can execute the /bin/sh command on the container with "--tty and "--interactive" options. 1. Check...
2018-12-28, 4932👍, 0💬

Adding Claims in Azure AD v2 id_token
How to include additional claims in Azure AD v2.0 id_tokens? If you want to include additional claims in Azure AD v2.0 id_tokens, you need to modify your application registration in Azure AD. 1. Log in the Azure portal. 2. Select the Azure Active Directory service, and then select App registrations ...
2019-03-27, 4890👍, 0💬

'json-to-xml' Azure API Policy Statement
How to use "json-to-xml" Azure API Policy Statement? The "json-to-xml" Policy Statement allows you to convert the body of the inbound request or outbound response from JSON format to XML format. For example, the following "json-to-xml" policy statement converts the output response from JSON format t...
2023-04-25, 4817👍, 2💬

💬 2023-04-23 FYIcenter.com: @lynette, maybe you can add an 'xsl-transform' statement to convert the &lt;document> element something else.

💬 2023-04-19 lynette temple: what do i do if i dont need the &lt;document> element?

Looping through an Array without "foreach" in PHP
How To Loop through an Array without Using "foreach" in PHP? PHP offers the following functions to allow you loop through an array without using the "foreach" statement: reset($array) - Moves the array internal pointer to the first value of the array and returns that value. end($array) - Moves the a...
2017-01-05, 4737👍, 0💬

XML to JSON Conversion at freeformatter.com
How to use the XML to JSON Conversion Tool at freeformatter.com? If you want to try the XML to JSON Conversion Tool at freeformatter.com, you can follow this tutorial: 1. Go to the JSON and XML Conversion Tool page at freeformatter.com. 2. Enter the following XML document in the XML text area: &...
2022-07-01, 4730👍, 18💬

💬 2022-07-01 gg: "@id": "01164917579869568", "name": { "#text": [ "Grzegorz", "Jaśko" ], "mid": "M" }, "age": "40", "address": { "Gałczyńskiego"...

💬 2022-05-28 Jcastillo: We'll update our Wordle answer list daily with today's Wordle word so you'll never have to feel like a lesser being when talking...

💬 2022-01-22 meta.json: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46...

(More comments ...)

Getting Minimum/Maximum Value of an Array in PHP
How To Get the Minimum or Maximum Value of an Array in PHP? If you want to get the minimum or maximum value of an array, you can use the min() or max() function. Here is a PHP script on how to use min() and max(): &lt;?php $array = array(5, 7, 6, 2, 1, 3, 4, 2); print("Minimum number: ".min($arr...
2016-12-28, 4586👍, 0💬

Real Atom XML Examples
Where to get a real Atom XML example? You can follow this tutorial to get a real Atom XML example: 1. Go to FYIcenter.com Developer Website . 2. Scroll to the bottom and click the "Atom" link. You see an Atom XML document displayed as an XML tree or as new feeds depending on the Web browser you are ...
2017-12-26, 4530👍, 0💬

Using urllib.parse.urlencode()
How to use urllib.parse.urlencode() function to encode HTTP POST data? My form data has special characters. If your form data has spaces, equal signs, and other special characters, you need to call urllib.parse.urlencode() to encode it before passing it to the urlopen() function. The urlencode() fun...
2018-09-13, 4399👍, 0💬

json_decode() - JSON Object to PHP Associative Array
How to convert JSON Objects to PHP Associative Arrays using the json_decode() function? Actually, JSON Objects match better with PHP Associative Arrays than PHP Objects. You can force json_decode() function to turn return PHP Associative Arrays for any JSON Objects by giving the second argument as "...
2018-03-04, 4130👍, 0💬

'{{...}}' Liquid Codes in 'set-body' Policy Statement
How to use "{{...}}" Liquid Codes in "set-body" Policy Statement? The "{{...}}" Liquid Codes in "set-body" Policy Statement allows you to insert object properties of the original request in JSON format and object properties of the built-in "context" object. For example, the following "set-body" buil...
2017-12-04, 4125👍, 0💬

What Is Azure API Management Service
What Is Azure API Management Service? Azure API Management as a turnkey solution for publishing APIs to external and internal customers. Quickly create consistent and modern API gateways for existing back-end services hosted anywhere, secure and protect them from abuse and overuse, and get insights ...
2018-10-30, 4046👍, 0💬

Atom Online Validator at w3.org
How to use the Atom Online Validator at w3.org? w3.org feed validation service is provided at http://validator.w3.org/feed/. It offers you two methods to validate your Atom feed document: Validate by URL - Validating a feed file by entering the URL where the feed file is located. Validate by Direct ...
2017-12-31, 4003👍, 0💬

< 1 2 3 4 5 6 7 > >>   Sort: Date