<< < 4 5 6 7 8 9 10 11 12 13 14 > >>   Sort: Date

XML to JSON Conversion at utilities-online.info
How to use the XML to JSON Conversion Tool at utilities-online.info? If you want to try the XML to JSON Conversion Tool at utilities-online.info, you can follow this tutorial: 1. Go to the XML to JSON Conversion Tool page at utilities-online.info. 2. Enter the following XML document in the XML text ...
2018-03-18, 2536🔥, 0💬

Create New Instances of a Class
How to Create a New Instance of a Class? There are two ways to create a new instance (object) of a class (or type): 1. The short way: Call the class name as the class constructor function with the following syntax. It will return an instance of the given class. &gt;&gt;&gt; x = class_nam...
2018-01-27, 2533🔥, 0💬

'retry' Policy Statement
How to use the "retry" Policy statement to retry "forward-request" multiple times for an Azure API service operation? The "retry" Policy Statement allows you to mainly execute "forward-request" statement multiple times if it fails. The "forward-request" Statement has the following syntax: &lt;re...
2018-01-16, 2526🔥, 0💬

Defining an Array Argument as Reference in PHP
Can You Define an Array Argument as a Reference Type? in PHP? You can define an array argument as a reference type in the function definition. This will automatically convert the calling arguments into references. Here is a PHP script on how to define an array argument as a reference type: &lt;?...
2016-12-18, 2523🔥, 0💬

EPUB 2.0 Sample - "Alice's Adventures in Wonderland"
Where can I download the EPUB 2.0 sample book "Alice's Adventures in Wonderland" by Lewis Carroll? You can following this tutorial to download the EPUB 2.0 sample book "Alice's Adventures in Wonderland" by Lewis Carroll. 1. Go to adobe.com sample eBooks page . 2. Click "Alice's Adventures in Wonderl...
2018-10-26, 2522🔥, 0💬

What Is RSS (Rich Site Summary)
What Is RSS (Rich Site Summary)? RSS (Really Simple Syndication) is a type of Web syndication or feed in XML format which allows users to access updates of a Website in a standardized format. RSS originally called RDF (Resource Description Framework) Site Summary. RSS is also called Rich Site Summar...
2018-01-08, 2495🔥, 0💬

Atom XML Schema at ogcnetwork.net
Where Can I get a copy of the Atom XML Schema? A XSD (XML Schema Definition) file contains a set of definitions of XML elements and attributes to form a new XML based specification. The same DTD file can be used to validate XML files that comply with the new specification. Atom feed is an XML based ...
2018-01-06, 2494🔥, 0💬

Error on Building C++/CLI Programs
Why I am getting "LNK1104: cannot open file 'MSCOREE.lib'" error when building a C++/CLI program? Visual C++ supports the C++/CLI (Common Language Infrastructure) programming language, which has additional types and operators to target the .NET programming model. It is done by using the CLR (Common ...
2023-06-19, 2493🔥, 0💬

What Is epubcheck.jar
What Is epubcheck.jar? epubcheck.jar is a Java program that allows you to validate an EPUB file. It can detect many types of errors in EPUB. OCF container structure, OPF and OPS mark-up, and internal reference consistency are checked. EpubCheck can be run as a standalone command-line tool or used as...
2018-06-06, 2491🔥, 0💬

Protect XML Special Characters in RSS Feeds
How to protect XML Special Characters in RSS Feeds? An RSS document is an XML document. And there 3 primary XML special characters you need to protect them, if you are using them in your RSS element contents: "&lt;" - Used to indicate the start of an XML element tag. It needs to be protected usi...
2017-11-05, 2483🔥, 0💬

Converting Strings to Hex Numbers in PHP
How To Convert Strings to Hex Numbers? If you want convert a string into hex format, you can use the bin2hex() function. Here is a PHP script on how to use bin2hex(): &lt;?php $string = "Hello\tworld!\n"; print($string."\n"); print(bin2hex($string)."\n"); ?&gt; This script will print: Hello ...
2016-10-13, 2482🔥, 0💬

2017 Version of API Management Services
Where to find tutorials on the 2017 version of API Management Services at Azure Portal? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on the 2017 version of API Management Services at Azure Portal: Azure API Management Service - 2017 Version Azu...
2018-07-22, 2472🔥, 0💬

"cl" - Compile and Link C++ Program
How to use "cl" command tool to compile and link a C++ program? If you want to compile and link a standard C++ program with "cl" command tool, you can follow this tutorial: 1. Create a simple C++ program, Hello.cpp, with a text editor: #include &lt;iostream&gt; using namespace std; void main...
2017-08-21, 2470🔥, 0💬

MIME Type Definition for Atom Files
What Is the MIME Type Definition for Atom Files? Atom files have its own MIME type definition as: MIME type: application/atom+xml File extension: .atom, .xml Type of format: Syndication Extended from: XML   ⇒ Atom Syndication Feed File ⇐ Icon for Atom Syndication ⇑ Introduction of Atom ⇑⇑ RSS FAQ ...
2017-12-21, 2467🔥, 0💬

Azure API Management - Publisher Portal 2017 Version
What is Azure API Management Publisher Portal 2017 version? Azure API Management Publisher Portal is an Azure Web portal that allows you to create and manage your API services. Once you have signed up for an Azure API Management Service, you will be given an API Management Publisher Portal, which sh...
2018-07-22, 2465🔥, 0💬

Python Built-in Primitive Data Types
What Are Python Built-in Primitive Data Types? Python Built-in Primitive Data Types are data types provided by the Python interpreter to represent individual data values. Here is a list of Python Built-in Primitive Data Types: "NoneType" - A special data type represents a single value of nothing, wh...
2023-01-06, 2455🔥, 0💬

"MyLib.cs" - VC# Class and Library
How to create a VC# class and build it into a library? If you want to create a VC# class and build it into a library, you can follow this tutorial: 1. Create the class source code file, MyLib.cs, with a text editor: // MyLib.cs // Copyright (c) FYIcenter.com using System; namespace fyi { public clas...
2017-08-06, 2452🔥, 0💬

Test API as a Publisher Administrator
How to Test API as a Publisher Administrator? You can follow this tutorial to test an API operation as a publisher administrator. 1. Go to https://portal.azure.com with a Web browser. And log in with your company email address. 2. Find the API Management Service resource to open it. 3. Click on the ...
2018-03-28, 2451🔥, 0💬

EPUB 2.0 Picture Cover Page
How to add a cover page to an EPUB 2.0 book? EPUB 2.0 does not offer any special specification to define a cover page. So the first page of book content is the cover of the book. If you don't want the cover page (the first page in "spine" list) to show up in the linear reading flow, you can use the ...
2019-01-12, 2434🔥, 0💬

Quoting Date and Time Values in PHP
How To Quote Date and Time Values in SQL Statements in PHP? If you want to provide date and time values in a SQL statement, you should write them in the format of "yyyy-mm-dd hh:mm:ss", and quoted with single quotes ('). The tutorial exercise below shows you two INSERT statements. The first one uses...
2016-10-19, 2430🔥, 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, 2427🔥, 0💬

EPUB 3.0 Sample - "The War Poems of Siegfried Sassoon"
Where can I download the EPUB 3.0 sample book "The War Poems of Siegfried Sassoon" by Siegfried Sassoon? You can following this tutorial to download the EPUB 3.0 sample book "The War Poems of Siegfried Sassoon" by Siegfried Sassoon. 1. Go to infogridpacific.com Free ePub3 Books page . 2. Click "Down...
2018-10-26, 2421🔥, 0💬

Docker Data Storage - "tmpfs" Mounts
How to create a new "tmpfs" mount to a Docker container? "tmpfs" mounts are stored in the host system’s memory only, and are never written to the host system’s filesystem. You have two options "--tmpfs" and "--mount" on the "docker container create/run" command to create "tmpfs" mounts. "--tmpfs" Op...
2021-08-15, 2415🔥, 0💬

'align' - Horizontal Alignment HTML Tables
How To Control Horizontal Alignment in Table Cells? By default, text in all table cells are aligned to the left horizontally. If you want to control horizontal alignment yourself, you need to use the "align" attribute in a "tr" element or a "td" element: &lt;tr align="left|center|right"& gt;...
2017-05-05, 2415🔥, 0💬

<< < 4 5 6 7 8 9 10 11 12 13 14 > >>   Sort: Date