<< < 9 10 11 12 13 14 15 16 17 18 19 > >>   Sort: Rank

Changes on EPUB Packages 3.2
What are changed made on EPUB Packages 3.2 specification? EPUB Packages 3.2 specification has the following changes. 1. Changes on "package.metadata": The portrait value of the rendition:spread attribute is deprecated. The rendition:viewport property is deprecated. The meta-auth property is deprecat...
2022-04-21, 516🔥, 0💬

EPUB 2.0 Metadata - dc:identifier Element
What is EPUB 2.0 Metadata "dc:identifier" Element? EPUB 2.0 Metadata "dc:identifier" is a required metadata element to specify a code that uniquely identifies the EPUB 2.0 book. To use "dc:identifier" properly, you need to meet the following two requirements: 1. &lt;package unique-identifier="bo...
2022-04-13, 2882🔥, 0💬

EPUB 2.0 Metadata - dc:language Element
What is EPUB 2.0 Metadata "dc:language" Element? EPUB 2.0 Metadata "dc:language" is a required metadata element to specify the primary language of the EPUB 2.0 book. When using "dc:language" metadata element, you should the an ISO 639 language code to specify the language. For example, the following...
2022-04-13, 2434🔥, 0💬

What Is EPUB 2.0 Package Metadata
What Is EPUB 2.0 Package Metadata EPUB 2.0 Package Metadata encapsulates meta information of the EPUB 2.0 book. Package Metadata, represented by the "metadata" element, is specified as the first required sub-element of the root "package" element in an EPUB 2.0 package file like package.opf: &lt;...
2022-04-13, 1972🔥, 0💬

EPUB 2.0 Metadata - dc:title Element
What is EPUB 2.0 Metadata "dc:title" Element? EPUB 2.0 Metadata "dc:title" specify a title for the EPUB 2.0 book. For each EPUB 2.0 book, you must specify at least one "dc:title" metadata element as shown below: &lt;dc:title&gt;Row, Row, Row Your Boat&lt;/dc:title&gt; If you want to ...
2022-04-13, 1807🔥, 0💬

Google OpenID Authentication Request Test
How to build a Google OpenID Authentication Request Test page? The Authentication Request is the first call to the Google OpenID Connect service. You can build a simple Web form page to test different behavior of the Authentication Request. Here is an example, Google-OpenID-Authentication-R equest-Te...
2022-04-13, 1312🔥, 0💬

Azure AD App Registration Manifest
What Azure AD App Registration Manifest? Azure AD App Registration Manifest is JSON file that contains a definition of all the attributes of an application object in the Microsoft identity platform. It also serves as a mechanism for updating the application object. Here is an example Azure AD App Re...
2022-03-29, 4886🔥, 0💬

Capture Google OpenID Connect Authentication Response
How to capture the Google OpenID Connect Authentication Response? If you are use the Google-OpenID-Connect-Test-Pag e.htmltest Web form using "response_type=id_token" to test the implicit flow, you can capture the id_token value with the browser. 1. Run Google-OpenID-Connect-Test-Pag e.htmlin a Web ...
2022-03-29, 1092🔥, 0💬

Add App Secret Keys on Azure AD
How to add a secret key in an app registration on Azure AD? Secret keys in an app registration on Azure AD are used to authenticate the access token request in the authentication code flow. You can add a new secret key in your app registration on Azure AD by following these steps: 1. Sign in to the ...
2022-03-29, 1089🔥, 0💬

Azure AD App Registrations (Preview)
What Azure AD App Registrations (Preview)? Azure AD App Registrations (Preview) is the new application registration management tool replacing the old App Registrations. App Registrations (Preview) offers the following new functionalities: Quickstart - Tutorials and guides for developers. Branding - ...
2022-03-29, 1047🔥, 0💬

What Is Blockchain
What Is Blockchain? A blockchain is a growing list of data blocks that are cryptographically chained together. A blockchain has the following main features: A data block has a header and a list of data transactions. Merkle hash tree is used to store a fingerprint of all transactions in the block hea...
2022-03-29, 917🔥, 0💬

What Is Smart Contract
What Is Smart Contract? Smart Contract was originally introduced by Nick Szabo to digitally facilitate, verify, or enforce the negotiation or performance of a contract between parties. Today, smart contract is used to represent any executable code deployed in a distributed ledger application. The di...
2022-02-19, 1336🔥, 0💬

"docker container ..." Commands
Where to find tutorials on how to use "docker container ..." commands? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on how to use "docker container ..." commands. "docker container ..." - Manage Containers "docker container list" - List Contain...
2022-02-19, 1278🔥, 0💬

Business Network Development Concepts
Where to find tutorials on Business Network Development Concepts. Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Business Network Development Concepts. Business Network Source Code Architecture Hyperledger Composer Model File Hyperledger Compo...
2022-02-19, 885🔥, 0💬

Business Network CTO Modeling Language
Where to find tutorials on Business Network CTO Modeling Language. Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Business Network CTO Modeling Language. What Is CTO Modeling Language CTO Language Statements "participant" CTO Statement Syntax ...
2022-02-19, 841🔥, 0💬

Business Network Source Code Architecture
What Is Business Network Source Code Architecture? Business Network Source Code Architecture can be summarized in the following diagram: Hyperledger Composer offers tools to help you developing hyperledger application, called business network, with following source code files: Model Files (*.cto) - ...
2022-02-19, 828🔥, 0💬

Common Errors in Reported by EpubCheck
Where to find tutorials on Common Errors Reported by EpubCheck? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Common Errors Reported by EpubCheck. ERROR(PKG-006) - Mimetype Not the First ERROR(PKG-005) - Mimetype Has Extra Field ERROR(OPF-030...
2022-02-09, 1143🔥, 0💬

Hello-3.2.epub - EPUB 3.2 Simple Demonstration
How to build a simple EPUB file to demonstrate some EPUB 3.2 features? You can follow this tutorial to build a simple EPUB file to demonstrate some EPUB 3.2 features Create 5 required files and place them according to the following structure: ├── mimetype ├── META-INF │   └── container.xml ├─...
2022-02-09, 706🔥, 0💬

Decode Google OpenID Connect id_token
How to decode the id_token value received from Google OpenID Connect authentication response? According to the "RFC 7519 - JWT (JSON Web Token)" standard, the "id_token" value received from Google OpenID Connect authentication response should be decoded as below: Splitting the encoded string into 3 ...
2022-02-04, 3001🔥, 0💬

Build Authorization Code Flow with Google OpenID Connect
How to implement the OpenID Authorization Code Flow with Google OpenID Connect service? If you want to implement the OpenID Authorization Code Flow (also called the Server Flow) in your Web application to use Google OpenID Connect service, you should follow these steps: 1. Building the Google OpenID...
2022-02-04, 1236🔥, 0💬

Validate Google OpenID Connect id_token
How to validate the id_token value received from Google OpenID Connect authentication response? As you can see from the previous tutorials, you can easily decode the "id_token" value received from Google OpenID Connect authentication response using a simple PHP script. After decoding, you can get al...
2022-02-04, 1205🔥, 0💬

Google OpenID Connect Access Token Request Test Page
How to build an Google OpenID Connect Access Token Request Test page? The Access Token Request is the second call to the Google OpenID Connect service in the authentication code flow to retrieve the id_token with the authentication code received from the first call. You can build a simple Web form p...
2022-02-04, 1173🔥, 0💬

Build Implicit Flow with Google OpenID Connect
How to implement the OpenID Implicit Flow with Google OpenID Connect service? If you want to implement the OpenID Implicit Flow in your Web application to use Google OpenID Connect service, you should follow these steps: 1. Building the Google OpenID Connect Sign-on authentication request: Register ...
2022-02-04, 1115🔥, 0💬

PATH Directories of Windows Container
How to see the PATH directories of Windows image? I want to know what programs I can run on the container. One way to see the PATH directories of a Windows image is to run the CMD shell interactively. Then run the SET sub-command in the shell. C:\fyicenter&gt; docker run --name windows --entrypo...
2022-02-02, 874🔥, 0💬

<< < 9 10 11 12 13 14 15 16 17 18 19 > >>   Sort: Rank