<< < 11 12 13 14 15 16 17 18 19 20 21 > >>   ∑:1482  Sort:Date

Hyperledger Tutorials
Where to find tutorials on Hyperledger? I want to know how to create Hyperledger applications. Here is a large collection of tutorials to answer many frequently asked questions compiled by FYIcenter.com team about Hyperledger: Introduction to Hyperledger What Is Hyperledger What Is Blockchain What I...
2019-04-19, ∼2583🔥, 0💬

Validate EPUB 3.1 Book with EpubCheck 4.0.2
Why I am getting error when validating EPUB 3.1 book with EpubCheck 4.0.2? EpubCheck 4.0.2 does not support EPUB 3.1 books. If you try to validate an EPUB 3.1 book file, you will get the "Version not supported" error. For example, you can download this EPUB 3.1 book file, Hello-3.1.epub . Then try t...
2018-06-06, ∼2580🔥, 0💬

EPUB 3.0 Metadata - dc:date Element
What is EPUB 3.0 Metadata "dc:date" Element? EPUB 3.0 Metadata "dc:date" is an optional metadata element to specify the publishing date of the EPUB 3.0 book. When using "dc:date" metadata element, you should follow the ISO 8601 standard specify a date, a date and time, or a full timestamp. For examp...
2018-04-28, ∼2579🔥, 0💬

Windows Forms App with VC# in Visual Studio 2017
How to build a Windows Forms application with VC# code in Visual Studio 2017? If you want to build a Windows Forms application with VC# code in Visual Studio 2017, you can follow this tutorial: 1. Click "File &gt; New &gt; Project" menu. You see the new project box showing up. 2. Select "Win...
2017-08-08, ∼2577🔥, 0💬

HTML Tags in Atom "feed/entry/summary"
How to enter HTML Tags in Atom "feed/entry/summary"? In most cases, the "feed/entry/summary" XML element should contain a text string describing the Atom feed entry without HTML tags. But sometimes, you would like to include HTML tags in the "feed/entry/summary" XML element, to provide images and hy...
2018-01-06, ∼2575🔥, 0💬

Specifying Domain and Path for a Cookie in PHP
How To Specify Domain and Path for a Cookie in PHP? If you want to specify domain and path for cookie, you can use the setcookie() function with two extra parameters. The sample PHP script below shows you how to set the domain and path attributes for temporary and persistent cookies: &lt;?php se...
2016-11-03, ∼2573🔥, 0💬

3Pigs2-3.1.epub - Multiple XHTML Files
Can I divide the book content into multiple XHTML files? Yes, you can divide the book content into multiple XHTML files. If your has multiple chapters, you should consider to create one XHTML file per chapter. For example, you can download this EPUB book, 3Pigs2-3.1.epub , which has "The Three Littl...
2019-01-12, ∼2568🔥, 0💬

3Pigs4-3.0.epub - Cover Image and Page
How to add a cover image to my EPUB books If you want to add a cover image to your EPUB 3.1 book, you should consider to two related components: Cover Image - An image file that is specified as the Cover Image of the book. Cover Page - An XHTML content file that is displayed as part of the book cont...
2018-08-14, ∼2557🔥, 0💬

Introduction of XHTML 1.0
Where to find tutorials in understanding what is XHTML 1.0? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team in understanding what is XHTML 1.0. Clear answers are provided for frequently asked questions on what is XHTML 1.0; who developed XHTML 1.0...
2024-03-17, ∼2555🔥, 0💬

3Pigs4-3.1.epub - Cover Image and Page
How to add a cover image to my EPUB books If you want to add a cover image to your EPUB 3.1 book, you should consider to two related components: Cover Image - An image file that is specified as the Cover Image of the book. Cover Page - An XHTML content file that is displayed as part of the book cont...
2018-12-26, ∼2555🔥, 0💬

Generating and Processing Form with the Same Script in PHP
How To Generate and Process a Form with the Same Script in PHP? In previous exercises, a Web form is generated by one script, and processed by another script. But you could write a single script to do both. You just need to remember to: Use same script name as the form generation script in the "acti...
2016-11-08, ∼2552🔥, 0💬

re.findall() - Find All Matches
How to find all matches of a regular expression using re.findall()? The re.findall() function allows you to find all matches of a given regular expression in a target string. import re l = re.findall(pattern, string, flags=0) Where: pattern is the regular expression string is the target string l is ...
2018-10-19, ∼2542🔥, 0💬

EPUB 3.0 Metadata - dc:language Element
What is EPUB 3.0 Metadata "dc:language" Element? EPUB 3.0 Metadata "dc:language" is a required metadata element to specify the primary language of the EPUB 3.0 book. When using "dc:language" metadata element, you should the an ISO 639 language code to specify the language. For example, the following...
2018-05-19, ∼2541🔥, 0💬

What Is Visual Studio Command Prompt
What is Visual Studio Command Prompt? Visual Studio Command Prompt is command line window with all required environment variables defined to run Visual Studio command line tools. Visual Studio command line tools includes: cl (the compiler) - To compile and link source code files into apps, libraries...
2017-08-21, ∼2541🔥, 0💬

Retrieving All Values from an Array in PHP
How To Get All the Values Out of an Array in PHP? Function array_values() returns a new array that contains all the values of a given array. Here is a PHP script on how to use array_values(): &lt;?php $mixed = array(); $mixed["Zero"] = "PHP"; $mixed[1] = "Perl"; $mixed["Two"] = "Java"; $mixed["3...
2017-01-21, ∼2541🔥, 0💬

Cookies Encoded during Transportation in PHP
How Are Cookies Encoded During Transportation in PHP? When cookies are transported from servers to browsers and from browsers back to servers, Cookies values are always encoded using the URL encoding standard to ensure that they are transported accurately. But you don't need to worry about the encod...
2016-10-29, ∼2541🔥, 0💬

EpubCheck 4.0.2 --usage Option
What is EpubCheck 4.0.2 "--usage" Option? EpubCheck 4.0.2 "--usage" option provides you suggested usages of additional EPUB features. You can try it on Hello-3.0.epub: C:\fyicenter&gt; java -jar epubcheck-4.0.2\epubcheck.jar --usage Hello-3.0.epub Validating using EPUB version 3.0.1 rules. USAGE...
2018-06-01, ∼2540🔥, 0💬

Single Cookie Size Limit in PHP
How Large Can a Single Cookie Be in PHP? How large can a single cookie be? The answer is depending what is the Web browser your visitor is using. Each browser has its own limit: Internet Explorer (IE): about 3904 bytes Mozilla Firefox: about 3136 bytes If you want to test this limit, copy this sampl...
2016-10-30, ∼2538🔥, 0💬

EPUB 3.0 Metadata in Calibre Book Library
How to view EPUB 3.0 metadata in Calibre book Library? You can follow this tutorial to view EPUB 3.0 metadata in Calibre book library. 1. Click Row-Your-Boat-3.0.epub to download this sample EPUB 3.0 book. 2. Unzip and open package.opf. You see the following metadata elements: &lt;package xmlns=...
2018-04-28, ∼2536🔥, 0💬

HTML Element Attributes
What Is an HTML Element Attribute? An element attribute is a predefined property about this element. Element attributes allows you to provide additional information to the element. Most HTML elements have some common attributes. But many HTML elements have their own specific attributes. Here are som...
2024-04-07, ∼2535🔥, 0💬

What Is Python
What Is Python? Python is a widely used high-level programming language for general-purpose programming, created by Guido van Rossum and first released in 1991. Main features of Python: Python is a multi-paradigm programming language: object-oriented programming and structured programming are fully ...
2018-02-01, ∼2535🔥, 0💬

BYFN (Build Your First Network)
Where to find tutorials on Hyperledger Fabric BYFN (Build Your First Network)? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Hyperledger Fabric BYFN (Build Your First Network). "first-network" - Building Your First Network "byfn.sh generate" ...
2020-05-15, ∼2534🔥, 0💬

JSON Validation at jsonlint.com
How to use the JSON Validation Tool at jsonlint.com? If you want to try the JSON Validation Tool at jsonlint.com, you can follow this tutorial: 1. Go to the The JSON Validator page at jsonlint.com. 2. Enter the following JSON text string in the text area: { "firstName": "John", "lastName": "Smith", ...
2023-09-05, ∼2529🔥, 0💬

'xml-to-json' on Invalid XML
What will happen if "xml-to-json" policy statement is applied on an invalid XML document? If you apply the "xml-to-json" policy statement on the request or response body that has an invalid XML document, you will not receive any errors. What you will get is a string that looks like a corrupted XML d...
2017-11-12, ∼2528🔥, 0💬

<< < 11 12 13 14 15 16 17 18 19 20 21 > >>   ∑:1482  Sort:Date