<< < 34 35 36 37 38 39 40 41 42 43 44 > >>   Sort: Rank

EPUB 3.0 Metadata - dc:description Element
What is EPUB 3.0 Metadata "dc:description" Element? EPUB 3.0 Metadata "dc:description" is an optional metadata element to specify a long description of the EPUB 3.0 book. Here is a good example of a "dc:description" metadata element &lt;dc:description&gt; "Row,Row, Row Your Boat" is a popula...
2018-04-28, 2008🔥, 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, 1967🔥, 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, 1948🔥, 0💬

Create a New API on Publisher Dashboard
How to create a new API on the Publisher Dashboard of an Azure API Management Service? If you are new to the Publisher Dashboard of an Azure API Management Service, you can follow this tutorial to a new API. 1. Log in to the Publisher Dashboard as shown in the previous tutorial. 2. Click APIs from t...
2018-04-21, 3800🔥, 0💬

Using Azure API Management Publisher Dashboard
Where to find tutorials on Using Azure API Management Publisher Dashboard? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Using Azure API Management Publisher Dashboard: Login to Azure API Management Publisher Dashboard Create a New API on Pub...
2018-04-21, 3606🔥, 0💬

Login to Azure API Management Publisher Dashboard
How to login to Azure API Management Publisher Dashboard? If you have given access permission to an Azure API Management Service publisher dashboard, you can login to the publisher dashboard as shown in this tutorial: 1. Login to Azure Portal with your work email address. 2. Click "All Resources" in...
2018-04-21, 3452🔥, 0💬

API Management Service Resource Details
Where to see resource detailed information of my API Management Service on Azure Portal? Once you have located you API Management Service on the Azure resource list as described in the previous tutorial, you can click on the resource name to see more details by clicking the menu on the left: Resourc...
2018-04-21, 2953🔥, 0💬

API Management Service on Azure Portal
Where is API Management Service on my Azure Portal? If your IT department has signed up for an Azure API Management Service, they should give your Azure URL link that brings your to the Azure API Management Service directly. If don't have URL link, you can follow these steps to find your Azure API M...
2018-04-21, 2744🔥, 0💬

Introduction to EPUB
Where to find tutorials as Introduction to EPUB. Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team as Introduction to EPUB. What Is EPUB What Is EPUB File Structure What Is OPF   ⇒ What Is EPUB ⇐ EPUB Tutorials ⇑⇑ EPUB Tutorials
2018-04-14, 1469🔥, 0💬

Download Latest Version of Python for Windows
How to download the latest version of Python on my Windows computer? You can follow this tutorial to download the latest version of Python on your Windows computer: 1. Go to Python download Website . 2. Click the "Download Python 3.6.2" button. You see the download file save prompt. 3. Save the down...
2018-04-12, 1925🔥, 0💬

What Is Python Interactive Mode
What Is Python Interactive Mode? Python Interactive Mode allows you to use Python as an interpreted language. When running in interactive mode, Python will: Prompt you to enter one statement or statement block at a time. Execute the statement or statement block immediately. Print back the result if ...
2018-04-12, 1692🔥, 0💬

Verify Python Installation on Windows
How to verify the Python installation on my Windows computer? You can follow this tutorial to verify the Python installation on your Windows computer: 1. Search Python with the Start button - Enter "Python" in the search box after clicking the "Start" button. If the "Python" is displayed in the sear...
2018-04-12, 1586🔥, 0💬

Install Latest Version of Python for Windows
How to install the latest version of Python on my Windows computer? I have the Python for Windows file downloaded. If you have the latest version of Python for Windows downloaded, you can follow this tutorial to install it: 1. Double click the Python download file, for example \fyicenter\python-3.6....
2018-04-12, 1380🔥, 0💬

Using Python in Interactive Mode
Where to find tutorials on using Python in Interactive Mode? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on using Python in Interactive Mode: What Is Python Interactive Mode Start Python in Interactive Mode help() - Getting Help in Python Inte...
2018-04-12, 1378🔥, 0💬

'str' Literals and Conversions
How to specify "str" values in Python code? "str" values can be specified using "str" literals or the str() conversion function as shown in this tutorial: 1. "str" literals in double quotes as shown below: &gt;&gt;&gt; "FYIcenter.com" 'FYIcenter.com' &gt;&gt;&gt; "He says: \"...
2018-04-07, 1322🔥, 0💬

'list' Literals and Conversions
How to specify "list" values in Python code? "list" values can be specified using "list" literals or the list() conversion function as shown in this tutorial: 1. "list" literals in [v1, v2, ...] format as shown below: &gt;&gt;&gt; ["Age", 25] ['Age', 25] &gt;&gt;&gt; ["Age", ...
2018-04-07, 1315🔥, 0💬

'float' Literals and Conversions
How to specify "float" values in Python code? "float" values can be specified using "float" literals or the float() conversion function as shown in this tutorial: 1. "float" literals in scientific notations as shown below: &gt;&gt;&gt; 3.14159 3.14159 &gt;&gt;&gt; -2.14 -2.14...
2018-04-07, 1306🔥, 0💬

Python Built-in Structured Data Types
Python Built-in Structured Data Types? Python Built-in Structured Data Types are data types provided by the Python interpreter to represent structures of data values: Here is a list of commonly used Python Built-in Structured Data Types: "str" - String data type for sequences of Unicode characters, ...
2018-04-07, 1286🔥, 0💬

'bytes' Literals and Conversions
How to specify "bytes" values in Python code? "bytes" values can be specified using "bytes" literals or the bytes() conversion function as shown in this tutorial: 1. "bytes" literals in b'...' or b"..." format as shown below: &gt;&gt;&gt; b'FYIcenter.com' b'FYIcenter.com' &gt;&gt...
2018-04-07, 1235🔥, 0💬

Add Operation to API on Publisher Dashboard
How to add a new operation to an API on the Publisher Dashboard of an Azure API Management Service? You can follow this tutorial to add a new operation to an API on the Publisher Portal of an Azure API Management Service. 1. Click on the API name from the API list to open it. You see detailed inform...
2018-03-31, 3545🔥, 0💬

View API Details on Publisher Dashboard
How to view API details on the Publisher Dashboard of an Azure API Management Service? You can follow this tutorial to view detailed information of API on the Publisher Dashboard of an Azure API Management Service. Click on the API name from the API list to open it. You see detailed information of t...
2018-03-31, 3403🔥, 0💬

Operation Setting: 'Rewrite URL template' - 2017 Version
How to use the API operation 2017 version setting "Rewrite URL template"? The API operation setting "Rewrite URL template" is used to override the "URL template" setting, when constructing the final URL to call the backend service. By default, Azure will construct the final URL by appending the URL ...
2018-03-31, 2931🔥, 0💬

What Can I See on Developer Portal
What API can I see on the Developer Portal? What API you can see on the Developer Portal is depending on who you are. 1. If you are a publisher user in the "Administrator" group, you can see all APIs included in all API products. 2. If you are a publisher user but not in the "Administrator" group, y...
2018-03-31, 1258🔥, 0💬

What I You Test on Developer Portal
What API can I test on the Developer Portal? What API you can test on the Developer Portal is depending is limited to those APIs and operations that you have been given with subscription keys. 1. If you are a publisher user in the "Administrator" group, you can test all API operations included in al...
2018-03-31, 1006🔥, 0💬

<< < 34 35 36 37 38 39 40 41 42 43 44 > >>   Sort: Rank