<< < 42 43 44 45 46 47 48 49 50 51 52 > >>   Sort: Date

Tools for Viewing XHTML 1.0 Documents
What Tools can I Use to View XHTML Documents? The basic tool you need to view XHTML documents is any Web browser, like Google Chrome, Internet Explorer (IE) or Mozilla FireFox. The following tutorial shows you how to view a XHTML document with : Write an XHTML document and save it as hello.html. Run...
2023-11-02, 1167🔥, 0💬

Azure AD v1 Sign-On Authentication Request
What is the Azure AD v1.0 Sign-On Authentication Request? Before deciding which Azure AD v1.0 authentication flow you want to implement in your Web application, you need to have a good understanding of the Azure AD sign-on authentication request, which is the first call you have to make in any authe...
2022-05-05, 1167🔥, 0💬

Process Azure AD v2 Access Token Request
How to the Azure AD v2.0 access token Request is process by Azure AD service? When Azure AD service receives an access token Request from a Web server, it will: Verify if the "client_id" value in the request is valid. If not, display an error message page to the end user. Take the "code" value from ...
2019-03-27, 1167🔥, 0💬

Fabric CA (Certificate Authority)
Where to find tutorials on Fabric CA (Certificate Authority)? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Fabric CA (Certificate Authority). What Is Fabric CA (Certificate Authority) Fabric CA Integration with Fabric Peers Fabric Network wi...
2019-10-27, 1165🔥, 0💬

Generate Genesis Block for Orderer
How to generate the Generate Genesis Block for the Orderer peer? When running a Hyperledger Fabric network, orderer peers also maintains a special blockchain called the orderer system channel (or ordering system channel). If you are starting a new orderer peer, you need to generate the genesis block...
2019-08-23, 1164🔥, 0💬

Application Registration for Google OpenID
How to register applications for Google OpenID Connect? Here are steps to register your application in your Google account. 1. Go to https://console.developers.goo gle.com. 2. Click "Credentials" from the left menu. You see a list of client application projects and their client credentials registere...
2021-03-21, 1163🔥, 0💬

"no matching manifest for windows/amd64" Error
Why am I getting the "no matching manifest for windows/amd64" Error while running "docker pull mcr.microsoft.com/windows:1809 "?You are getting the "no matching manifest for windows/amd64" Error, because Microsoft did not provide any images to match the CPU architecture of "windows/amd64" of your ho...
2022-12-15, 1161🔥, 0💬

commercial-paper Sample Network
Where to find tutorials on Hyperledger Fabric commercial-paper Sample Network? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Hyperledger Fabric commercial-paper Sample Network. Objectives of commercial-paper Tutorials Start basic-network for ...
2019-12-19, 1160🔥, 0💬

FYIcenter JSON to XML Converter
FYIcenter JSON to XML Converter is an online tool that converts a JSON text string to an XML document. JSOM object property names are limited to ASCII characters only.
2017-12-05, 1160🔥, 1💬

💬 2017-12-05 Chad: Love it!

What Are Authentication Flows
What are authentication flows specified in OpenID Connect? OpenID Connect supports 3 authentication data flows: 1. Authorization Code Flow - The Authorization Code Flow is more complex to implement. But it is more secure. In the Authorization Code Flow, only a short authorization code is returned to...
2021-08-11, 1159🔥, 0💬

Introduction of HTML5
Where to find tutorials in understanding what is HTML5? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team in understanding what is HTML5. Clear answers are provided for frequently asked questions on what is HTML5; writing and viewing HTML5 documents...
2024-03-07, 1158🔥, 0💬

HTML 'h1' - Heading Tags/Elements
What Are Heading Tags/Elements? Heading elements are block level elements that can be used directly as a sub-element in the body element. You can use heading elements to specify heading in different sizes. Here are basic rules about heading elements: There are 6 heading elements, named as "h1", "h2"...
2023-08-03, 1157🔥, 0💬

Process Google OpenID Connect Authentication Request
How to the Google OpenID Connect Authentication Request is process by Google OpenID Connect service? When Google OpenID Connect service receives a Authentication Request from an end user's Web browser, it will: Verify if the "client_id" value in the request is valid. If not, display an error message...
2021-03-07, 1156🔥, 0💬

Azure AD v2 Authentication Request Test Page
How to build an Azure AD 2.0 Authentication Request Test page? The Authentication Request is the first call to the Azure AD service. You can build a simple Web form page to test different behavior of the Authentication Request. Here is an example, Azure-AD-2-Authentication-Requ est-Test.html:&lt...
2019-05-03, 1156🔥, 0💬

JSON-stringify-Transformed.html - JSON.stringify() Value Transformed
How to write a replacer function to transform values while the JSON.stringify() function is generating the JSON text string? Below is a good example on using a replacer function with the JSON.stringify() call to transform output values: &lt;!-- JSON-stringify-Transformed.htm lCopyright (c) FYIce...
2023-09-07, 1155🔥, 0💬

"fabric-ca-client register" - Register Second Admin
How to register a second admin with the "fabric-ca-client register" command? You can follow this tutorial to register a second admin with the "fabric-ca-client register" command. 1. Make sure the Fabric CA Server is running. 2. Go to the Fabric CA Client system where you have the "admin" wallet crea...
2019-09-16, 1155🔥, 0💬

Relation between HTML and the Web
What Is the relation between HTML and the Web? The Web is a publisher technology based on the Internet to allow publishers to publish hyper linked documents to be viewed by Internet users. HTML is the language used to construct those hyper linked documents. So HTML is the primary language that suppo...
2024-01-31, 1154🔥, 0💬

"byfn.sh up" Error - Container Name in Use
Why am I getting the "Cannot create container for service peer0.org1.example.com: b'Conflict." error when running "byfn.sh up" to start up the BYFN Network? You are getting "Cannot create container for service peer0.org1.example.com: b'Conflict." error when running the "byfn.sh up" command, because ...
2020-05-05, 1154🔥, 0💬

Smallest Valid HTML5 Document
What is a Smallest Valid HTML5 Document? If you are interested to see the smallest, but valid, HTML5 document, look at this one: &lt;!DOCTYPE html&gt; &lt;html&gt;&lt;he ad&gt;&lt;title&gt ;Hello&lt;/title&gt;&a mp;lt;/head&gt;&lt;bod y&gt;&lt;foot...
2024-03-07, 1153🔥, 0💬

Basic Structure of Python Code
What is Basic Structure of Python Code? The basic structure of Python code can be described below: A Python code is a sequence of statements and statement blocks. Each statement or statement block in a Python code is executed sequentially one by one. For example, look at the following Python code wi...
2023-06-12, 1153🔥, 0💬

Modules Are Objects Too
Are modules objects in Python? Yes, all modules are objects of "module" type in Python? You can verify this with the following Python code: &gt;&gt;&gt; import firstModule &gt;&gt;&gt; type(firstModule) &lt;class 'module'&gt; In other words, the "import firstModule" s...
2022-08-26, 1153🔥, 0💬

Relation between HTML and URI?
What is the relation between HTML and URI? URI (Uniform Resource Identifier) is a superset of URL. URI provides a simple and extensible means for identifying a resource in a more generic way. For example, the following strings are all valid URIs: ftp://ftp.is.co.za/rfc/rfc1808 .txthttp://www.ietf.or...
2024-02-09, 1152🔥, 0💬

Download and Install Kindle for PC
How to Download and Install Kindle for PC? You can follow this tutorial to download and install Kindle for PC on your Windows computer. 1. Go to Kindle download site . 2. Click "Download for PC" button. You see download started. 3. Save the download file to \fyicenter\KindleForPC-install er-1.21.4801...
2022-07-01, 1148🔥, 0💬

Tab Characters in HTML 'pre' Element
Are Tab Characters Preserved in a "pre" Element? Yes. Tab characters are preserved in pre elements like other white space characters. Below is a good tutorial example of using "pre" elements: &lt;?xml version="1.0" ?&gt; &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http:/...
2023-08-03, 1147🔥, 0💬

<< < 42 43 44 45 46 47 48 49 50 51 52 > >>   Sort: Date