<< < 16 17 18 19 20 21 22 23 24 25 26 > >>   ∑:1482  Sort:Date

Minimum Requirement of EPUB 2.0.1 File
What Is the minimum requirement of an EPUB 2.0.1 file? If you want to build an EPUB file that meets the minimum requirements of EPUB 2.0.1 specification, you need to prepare the following: 1. A text file called "mimetype" with one line listed below. It specifies the mimetype of an EPUB 2.0.1 book fi...
2023-05-09, ∼2325🔥, 0💬

3Pigs6-3.0.epub - XHTML pre Element
Does EPUB support XHTML "pre" elements? Yes. EPUB 3.1 does support XHTML "pre" elements. EPUB readers will display "pre" elements with a monospace font. Text lines within "pre" elements will be displayed without wrapping. So if you have long lines in "pre" elements, text will be truncated on the rig...
2018-08-14, ∼2325🔥, 0💬

Order of Array Values in PHP
How the Values Are Ordered in an Array in PHP? PHP says that an array is an ordered map. But how the values are ordered in an array? The answer is simple. Values are stored in the same order as they are inserted like a queue. If you want to reorder them differently, you need to use a sort function. ...
2017-01-29, ∼2323🔥, 0💬

XHTML 'meta' Elements Not Closed
What Happens If an XHTML "meta" Element Is Not Closed? Meta tags, link tags and base tags must be closed in XHTML documents. If you forget to close them like the HTML format, you will get validation errors. Try the following tutorial sample XHTML document on http://validator.w3.org/ to see what type...
2017-06-28, ∼2322🔥, 0💬

View RSS Feeds with Mozilla Firefox
How to View RSS Feeds with Mozilla Firefox? If you want to view RSS Feeds with Mozilla Firefox, you can follow this tutorial: 1. Launch Mozilla Firefox 55. 2. Enter the following in the URL input box: http://dev.fyicenter.com/rss_x ml.php3. Press "Enter" key. You see the RSS feed items displayed in ...
2017-11-02, ∼2319🔥, 0💬

Build Authorization Code Flow with Azure AD v2
How to implement the OpenID Authorization Code Flow with Azure AD v2.0 service? If you want to implement the OpenID Authorization Code Flow in your Web application to use Azure AD service, you should follow these steps: 1. Building the Azure AD v2.0 Sign-on authentication request: Register your Web ...
2019-03-27, ∼2318🔥, 0💬

Start Python in Interactive Mode
How to Start Python in Interactive Mode on my Windows computer? You can start Python in interactive mode on your Windows computer in several ways: 1. "python" in command window - In a command window, enter the "python" command. If the python installation folder is in the PATH environment variable, t...
2023-01-06, ∼2316🔥, 0💬

Introduction of JSON
Where to find tutorials in understanding what is JSON? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team in understanding what is JSON. What Is JSON? JSON Text String Example JSON Format Syntax Examples of Invalid JSON Values   ⇒ What Is JSON? ⇐ JS...
2023-04-25, ∼2314🔥, 0💬

What Is Windows SDK 8.1
What Is Windows SDK (Software Development Kit) 8.1 ? When Windows SDK 8.1, also called Windows Kits 8.1, is a development resource package that includes: 1. Resources for developing Windows Store apps with support of the following: Web (HTML5, CSS3, and JavaScript) Managed XAML, with code-behind in ...
2023-10-27, ∼2313🔥, 0💬

What Is OpenID Connect
What Is OpenID Connect? OpenID Connect is a newer version of OpenID. OpenID Connect 1.0 was released in February 2014. OpenID and OpenID Connect releases: Version Release date OpenID Connect 1.0 February 4, 2014 OpenID 2.0 December 5, 2007 OpenID 1.1 May 2006 OpenID 1.0 Here is a picture of OpenID C...
2019-01-20, ∼2313🔥, 0💬

JSON.parse() Function in JavaScript
Where to get the detailed description of the JSON.parse() Function in JavaScript? Here is the detailed description of the JSON.parse() Function in JavaScript. Description - The JSON.parse() function parses a JSON string, constructing the JavaScript value or object described by the string. An optiona...
2023-04-13, ∼2312🔥, 0💬

Test Azure AD B2C User Flow
How to test a user flow defined as a policy in my Azure AD B2C directory? After you have defined a user flow in a policy in your Azure AD B2C directory, you can test it before you connect it to your application. 1. Sign in to the Azure portal as the global administrator of your Azure AD B2C tenant. ...
2019-02-18, ∼2312🔥, 0💬

"MyLibApp.cpp" - Call C++ Class from Static Library
How to call a function from a C++ class provided in a static library? If you want to call a function from a C++ class provided in a static library, you can follow this tutorial: 1. Specify the namespace of the C++ class: using namespace fyi; 2. Reference the function with the class name prefix: MyLi...
2023-06-19, ∼2309🔥, 0💬

Using MySQL Command Line Interface in PHP
How To Use MySQL Command Line Interface in PHP? MySQL server comes with a command line interface, which will allow you to operate with the server with SQL statements and other commands. To start the command line interface, you can run the \mysql\bin\mysql program. The tutorial exercise below shows y...
2016-10-22, ∼2308🔥, 0💬

register-user.js - Register New User
How to write a Node.js script to Register New Users to ca.example.com? If you are an administrator on ca.example.com, you can register other new users to ca.example.com. Here is sample Node.js script, register-user.js, that uses your "admin" identity from the local wallet to register a new user to o...
2019-04-22, ∼2307🔥, 0💬

Entering Comments into HTML Documents
How To Enter Comments into HTML Documents? If you want to enter comments into an HTML document, you can use the comment tag: "&lt;!-- ... --&gt;". Here are some good examples of HTML comments: &lt;!-- Start north banner --&gt;... &lt;script type="text/javascript"&gt; &lt;...
2024-03-23, ∼2306🔥, 0💬

Fabric CA User’s Guide
Where is the Fabric CA User’s Guide? The Fabric CA User’s Guide is provided at: hyperledger-fabric-ca.readthed ocs.io/en/release-1.4/users-gu ide.html. The Fabric CA User’s Guide provides information on the following topics: Overview Getting Started Prerequisites Install Explore the Fabric CA CLI Co...
2019-10-18, ∼2304🔥, 0💬

Writing HTML Element Attributes
How To Write Element Attributes Properly? If an attribute is allowed for an XHTML element, you must write the attribute inside the opening tag of this element. Here are some rules on writing element attributes: An attribute must have a name and a value, separated by the equal sign "=". An attribute ...
2024-04-07, ∼2303🔥, 0💬

Start Hyperledger Composer Playground
How to Start the Hyperledger Composer Playground? You can follow this tutorial to start the Hyperledger Composer Playground. 1. Run Web browser and go to: composer-playground.mybluemix. net. You see the welcome page. 2. Click on "Let's Blockchain!". You see the playground home page. 3. Now you can s...
2021-12-28, ∼2303🔥, 0💬

Setup Visual Studio 2017 for Visual C++
How to setup Visual Studio 2017 for Visual C++? I have install it with Visual Studio Installer. If you have the Visual Studio 2017 installed, you can follow these steps to setup Visual Studio 2017 for Visual C++. 1. Run "All Programs &gt; Visual Studio 2017". You see the Visual Studio developer ...
2023-12-10, ∼2301🔥, 0💬

Hello-3.1.epub - Package File: package.opf
How to create a package file like package.opf for an EPUB 3.1 book? At least one package file, like package.opf, is required for an EPUB 3.1 book in the book ZIP container. It defines required meta data and specifies 2 required content files. Here is the requirement on a package file: 1. A package f...
2022-05-31, ∼2295🔥, 0💬

Test API Operation Request Body Examples
How to test request body examples on my Azure API operation? If you have added some request body examples to your Azure API operation, you can follow this tutorial to test them. 1. Go to the developer portal as a publisher administrator. 2. Open the "First API" and open the operation "Add new user"....
2018-03-28, ∼2295🔥, 0💬

Hello-3.1.epub - Navigation File: navigation.xhtml
How to create a navigation file like navigation.xhtml for an EPUB 3.1 book? At least one navigation file, like navigation.xhtml, is required for an EPUB 3.1 book in the book ZIP container. It provides navigation information like a table of contents of the book. Here is the requirement on a navigatio...
2021-08-11, ∼2293🔥, 0💬

View Atom Feeds with Mozilla Firefox
How to View Atom Feeds with Mozilla Firefox? If you want to view Atom Feeds with Mozilla Firefox, you can follow this tutorial: 1. Launch Mozilla Firefox 55. 2. Enter the following in the URL input box: http://dev.fyicenter.com/atom_ xml.php3. Press "Enter" key. You see the Atom feed items displayed...
2017-12-26, ∼2293🔥, 0💬

<< < 16 17 18 19 20 21 22 23 24 25 26 > >>   ∑:1482  Sort:Date