<< < 6 7 8 9 10 11 12 13 14 15 16 > >>   ∑:1482  Sort:Date

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

Write Minimum Atom 1.0 Feed File
How to write a Minimum Atom 1.0 Feed File? If you want your Website to support a minimum Atom 1.0 feed, you can follow this tutorial. 1. First create a file called "atom.xml" with the following content: &lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;feed xmlns="http://www.w3.org/2005/ A...
2017-12-13, 2458🔥, 0💬

Visual Studio 2017 .NET Program Folders
In which folders Visual Studio 2017 .NET programs are located on my Windows computer? When Visual Studio 2017 .NET is installed on your Windows computer, its programs are located the following folders: .NET Framework location: C:\Program Files (x86)\Microsoft.NET .NET Framework support for Visual St...
2017-09-19, 2457🔥, 0💬

"docker container exec" - Execute Command on Container
How to Execute an extra Command on a Running Container using the "docker container exec" command? The "docker container exec" command allows you to run an extra command on a running container. Here is a list of options supported by "docker container exec": fyicenter$ docker container exec --help Usa...
2021-10-10, 2449🔥, 0💬

Connecting to a MySQL Server in PHP
How To Connect to MySQL from a PHP Script in PHP? If you want access the MySQL server, you must create a connection object first by calling the mysql_connect() function in the following format: $con = mysql_connect($server, $username, $password); If you are connecting to a local MySQL server, you do...
2016-10-20, 2449🔥, 0💬

Use &amp; Sign in '@(...)' Expressions
How to enter &amp; sign in '@(...)' expressions? &amp; signs can be entered in '@(...)' expressions directly. For example, the following "set-variable" policy statement uses a "@(...)" expression that contains a &amp; sign: &lt;set-variable name="name" value="@("John &amp; Sons")...
2017-11-12, 2447🔥, 0💬

"MyLibApp.cs" - Call VC# Class from Library
How to call a function from a VC# class provided in a library? If you want to call a function from a VC# class provided in a library, you can follow this tutorial: 1. Reference the shared function with the class name prefix: MyLib.PrintHello(); 2. See the following full source code example, MyLibApp...
2017-08-06, 2442🔥, 0💬

JSON-parse-Transformed.html - JSON.parse() Value Transformed
How to write a reviver function to transform values while the JSON.parse() function is parsing the JSON text string? Below is a good example on using a reviver function with the JSON.parse() call to transform parsed JSON element values: &lt;!-- JSON-parse-Transformed.html Copyright (c) FYIcenter...
2017-09-08, 2440🔥, 0💬

Working with MySQL Database in PHP
Where to find tutorials on how to work with MySQL Database in PHP? A collection of tutorials to answer many frequently asked questions on how to Work with MySQL Database in PHP. Clear explanations and tutorial exercises are provided on connecting and selecting MySQL database, creating and dropping t...
2016-10-22, 2432🔥, 0💬

JSON-stringify-Object.html - JSON.stringify() on Objects
How JSON.stringify() behaves on JavaScript objects? When processing an object, JSON.stringify() behave depending on the type of objects based on the following rules: Boolean, Number, and String objects are converted to the corresponding primitive JSON values during stringification. Date objects are ...
2017-09-08, 2418🔥, 0💬

id_token Online Decode Tool
Is there any online tool to decode an id_token string? There are several good online tools you can use to decode an id_token string. For example, go to jwt.io . Copy and paste your id_token string in the input box on left, for example: eyJhbGciOiJIUzI1NiIsInR5cCI6Ik pXVCJ9.eyJuYW1lIjoiSm9lIERvZSIsIm...
2021-06-20, 2414🔥, 0💬

What Is EPUB 3.0 Specification
What Is EPUB 3.0 Specification? EPUB 3.0 Specification is the 3rd major release of EPUB specification. EPUB 3.0 Specification was released on October 11, 2011. and consists of 5 documents: The EPUB 3 Overview - Provides an informative overview of EPUB and a roadmap to the rest of the EPUB 3 document...
2018-11-17, 2378🔥, 0💬

Add Request Body Examples - 2017 Version
How to add request body examples to my Azure API operation 2017 version to make it more user friendly? If you have created the "First API" API and "Add new user" operation as described in previous tutorials, you can follow this tutorial to add request body examples. 1. Go to the publisher portal of ...
2018-06-09, 2374🔥, 0💬

Create Visual Basic Project in Visual Studio 2017
How to Create a Visual Basic Program Project with Visual Studio 2017? If you are new to Visual Studio 2017, you can follow tutorial to create your first Visual Basic program project in Visual Studio 2017. 1. Start Visual Studio 2017 with .NET development environment. 2. Click "File &gt; New &...
2023-09-16, 2365🔥, 0💬

Use &lt; Sign in '@(...)' Expressions
How to enter &lt; sign in '@(...)' expressions? &lt; signs can be entered in '@(...)' expressions directly. For example, the following "set-variable" policy statement uses a "@(...)" expression that contains a &lt; sign as the Boolean operator: &lt;set-variable name="isTrue" value="@...
2017-11-12, 2365🔥, 0💬

EPUB Validator - epubcheck.jar
Where to find tutorials on EPUB Validator - epubcheck.jar? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on EPUB Validator - epubcheck.jar. What Is epubcheck.jar Validate EPUB 3.0 Book with EpubCheck Validate EPUB 3.1 Book with EpubCheck 4.0.2 E...
2018-06-06, 2362🔥, 0💬

View API Details on Publisher Portal - 2017 Version
How to view API details on the Publisher Portal of an Azure API Management Service 2017 version? You can follow this tutorial to view detailed information of API on the Publisher Portal of an Azure API Management Service. 1. Log in to the Publisher Portal as shown in the previous tutorial. 2. Click ...
2018-07-18, 2358🔥, 0💬

Sending an HTTP POST Request
How to send an HTTP POST request? I want to submit a form to a Website. To submit a form to a Website, you can use the requests.post() function: &gt;&gt;&gt; r = requests.post(url, data = {'key':'value'}) The second argument 'data' is a 'dict' object contains of the list of form field na...
2018-08-14, 2346🔥, 0💬

PHP Built-in Functions for Arrays
Where to find tutorials on how to use PHP built-in functions to manage arrays? A collection of tutorials to answer many frequently asked questions on how to PHP functions to manage arrays. Clear answers are provided with tutorial exercises on searching keys and values, sorting arrays, merging two ar...
2017-01-29, 2342🔥, 0💬

Atom Element Types: "feed" and "entry"
What are main Atom element types? There are 2 main element types defined for Atom feed files: Atom Feed Element - Representing an Atom feed, including metadata about the feed, and some or all of the entries associated with it. Its root element is the &lt;feed&gt; element. Atom Entry Element ...
2017-12-09, 2333🔥, 0💬

Differences between RSS 2.0 and Atom 1.0
What Are Main Differences between RSS 2.0 and Atom 1.0? Main differences between Atom 1.0 and RSS 2.0 are: Atom has separate "summary" and "content" elements, while RSS only has one "description" element. Atom standardizes auto-discovery in contrast to the many non-standard variants used with RSS 2....
2017-12-13, 2329🔥, 0💬

"fabric-ca-client identity list" - List Identities
How to List Identities with the "fabric-ca-client identity list" command? If you want get a list of identities from the Fabric CA Server, you can run the "fabric-ca-client identity list" command: $ export FABRIC_CA_CLIENT_HOME=~/fabric -ca/native-client/admin$ ~/go/bin/fabric-ca-client identity list...
2019-09-27, 2328🔥, 0💬

Relation between HTML and HTTP
What Is the relation between HTML and HTTP? HTTP (HyperText Transfer Protocol) is an Internet communication protocol, that allows a viewer's computer talking to a publisher's computer to fetch HTML documents and other resources. The viewer's computer issues a HTTP request message to the publisher co...
2024-02-09, 2321🔥, 2💬

View EPUB 2.0 Metadata List with Calibre
How to see more EPUB 2.0 metadata list with Calibre? You can follow this tutorial to view EPUB 2.0 metadata list with Calibre. 1. Click Row-Your-Boat-2.0.epub to download this sample EPUB 2.0 book. 2. Add Row-Your-Boat-2.0.epub to Calibre book library. You see some EPUB 2.0 metadata displayed below ...
2019-01-12, 2319🔥, 0💬

<< < 6 7 8 9 10 11 12 13 14 15 16 > >>   ∑:1482  Sort:Date