<< < 37 38 39 40 41 42 43 44 45 46 47 > >>   Sort: Date

HTML Drop Down List 'select' Tag/Element
What Is a "select" Tag/Element? A "select" element is an inline element that you can use to define a dropdown input field in a form. Here are basic rules about a "select" element: "select" elements are inline elements. "select" elements can only be used as sub-elements of "form" elements. A "select"...
2017-04-01, 1254🔥, 0💬

HTML Author 'meta' Tag/Element
What Is the HTML Author "meta" Tag/Element? The author "meta" element is a special "meta" element that provides information about the author of the HTML document. The author "meta" element must include the "name" attribute as, name="author". Here is an example: &lt;meta name="author" content="FY...
2017-06-23, 1251🔥, 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, 1250🔥, 0💬

Ampersand Sign in HTML Attribute Values
How To Write Ampersand Sign in Attribute Values? If you need enter an ampersand sign in an attribute value, you can not enter it directly. You must replace it with entity: &amp;amp;. Here are some interesting examples of quoted attribute values: &lt;img src="tt.gif" alt="Tutorials &amp;a...
2023-09-23, 1249🔥, 0💬

Read PDF Book with Kindle for PC
How to Read PDF Book with Kindle for PC? You can follow this tutorial to open and read a PDF book with "Kindle for PC". 1. Search and run "Kindle for PC" on your Windows computer. 2. Click "File &gt; Import PDF..." menu. You see the open file screen. 3. Locate and select the PDF book you want to...
2018-07-13, 1249🔥, 0💬

Comments in Python Code
How to enter comments in Python Code? There is only one way to enter comments in Python code. That is to enter them at the end of any code line preceded by the hash character "#". For example: # this is the first comment x = 1 # and this is the second comment # and now a third!   ⇒ 'if ... elif ... ...
2023-06-12, 1248🔥, 0💬

Atom "feed/link" Element
What is the Atom "feed/link" element? How To Generate a "feed/link" element? The &lt;link&gt; element is not a required sub-element of the &lt;feed&gt; element. But it is strongly recommended that you provide a link element with rel="self" for each of your feed documents. The rule fo...
2017-11-29, 1248🔥, 0💬

'int' Literals and Conversions
How to specify "int" values in Python code? "int" values can be specified using "int" literals or the int() conversion function as shown in this tutorial: 1. "int" literals in decimal digits as shown below: &gt;&gt;&gt; 1234 1234 &gt;&gt;&gt; -1234 -1234 &gt;&gt;&...
2023-01-06, 1247🔥, 0💬

Initiate Google OpenID Connect Access Token Request
How to initiate Google OpenID Connect Access Token Request? The Google OpenID Connect Access Token Request should be initiated from your application Web server. This is why the authentication code flow is more secure than the implicit flow, because the "id_token" value will be received by Web server...
2019-02-05, 1245🔥, 0💬

'__dict__' Dictionary in Function Object
What is the "__dict__" dictionary property in a function object? By default every function object has "__dict__" built-in dictionary property. Each name value pair in this dictionary becomes a formal property of the function object accessible using the "." operation. It is empty when the function ob...
2018-02-08, 1245🔥, 0💬

What Is XHTML 1.0?
What Is XHTML 1.0? XHTML 1.0 was published as a W3C Recommendation in January 2000. XHMTL 1.0 is basically the same language as HTML 4.0. But XHTML 1.0 is defined in XML 1.0 syntax. XHTML 1.0 offers the following features: XHTML documents are XML conforming. As such, they are readily viewed, edited,...
2024-03-23, 1244🔥, 0💬

"cryptogen" Command - Generate Keys and Certificates
How to run "cryptogen" command to generate private keys and public certificates to support organizations and users needed for BYFN (Build Your First Network)? You can follow this tutorial to run "cryptogen" command to generate private keys and public certificates to support organizations and users n...
2020-10-26, 1243🔥, 0💬

Azure AD B2C Integration
Where to find tutorials on Azure AD B2C Integration? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Azure AD B2C Integration. What Is Azure AD B2C Application Registration on Azure AD B2C User Sources in Azure AD B2C Register Azure AD Applicat...
2019-03-27, 1243🔥, 0💬

Number of Elements Defined in HTML5?
How Many Elements Are Defined in HTML5? There are 105 elements defined in HTML5: The root element: html Document metadata elements: head, title, base, link, meta, style Section elements: body, article, section, nav, aside, h1, h2, h3, h4, h5, h6, header, footer, address Grouping elements: p, hr, pre...
2024-03-07, 1242🔥, 0💬

Using HTML 'file' Input Fields
How To Use "file" Input Fields? A "file" input field is defined as &lt;input type="file" .../&gt;. "file" input fields can be used to create file upload input fields. Most browsers will display a file upload input field as a text input box followed by a "Browse..." button. The other attribut...
2017-04-08, 1242🔥, 0💬

Using HTML 'file' Input Fields
How To Use "file" Input Fields? A "file" input field is defined as &lt;input type="file" .../&gt;. "file" input fields can be used to create file upload input fields. Most browsers will display a file upload input field as a text input box followed by a "Browse..." button. The other attribut...
2017-04-08, 1242🔥, 0💬

Process Azure AD v2 Authentication Request
How to the Azure AD v2.0 Sign-On Authentication Request is process by Azure AD service? When Azure AD service receives a Sign-On Authentication Request from an end user's Web browser, it will: Verify if the "client_id" value in the request is valid. If not, display an error message page to the end u...
2019-05-03, 1241🔥, 0💬

What Is HTML5?
What Is HTML5? HTML5 is the fifth version of the HTML standard. HTML5 was published as a W3C Recommendation on October 28, 2014. HMTL5 is a major redesign of the HTML standard to merge HTML 4, XHTML 1 and DOM Level 2 HTML into a single standard. Main features of HTML5 are: Added new markup elements:...
2024-03-07, 1240🔥, 0💬

Azure AD v2 Access Token Request Test Page
How to build an Azure AD 2.0 Access Token Request Test page? The Access Token Request is the second call to the Azure AD service in the authentication code flow to retrieve the id_token with the authentication code received from the first call. You can build a simple Web form page to test different ...
2019-03-27, 1240🔥, 0💬

Closing an HTML Element
How To Close an HTML Element? In XHTML syntax, every HTML element must be closed. There are two ways to close an HTML element: Using a closing tag, which is the element name prefixed with "/" and enclosed in a pair of angle brackets: "&lt;" and "&gt;". Closing the opening tag immediately by ...
2024-03-23, 1239🔥, 0💬

Start Hyperledger Composer Playground Server
How to start and stop Hyperledger Composer Playground Server? The command that represents the Hyperledger Composer Playground Server is "composer-playground". You can start the server as shown below: $ composer-playground ... INFO :LoadModule :loadModule() Loading composer-wallet-filesystem from /us...
2022-10-13, 1239🔥, 1💬

💬 2022-10-13 Khôi Nguyên: Thank ^^

"docker container run --name" - Run Container with Name
How to create a new container with a given name and run the default command from an image with "docker container run --name" command? If you want to create a new container with a given name from an image, and start the container with the default command in one step, you can use the "docker container...
2021-10-02, 1239🔥, 0💬

"docker container list" - List Container Command
How to list containers on the Docker Engine with "docker container list" command? The "docker container list" command allows you to list containers that are on the Docker engine. Here is a list of options supported by "docker container list": fyicenter$ docker container list --help Usage: docker con...
2023-03-28, 1238🔥, 0💬

Azure AD Integration v2.0
Where to find tutorials on Azure AD Integration v2.0? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Azure AD Integration v2.0. Authentication Flows with Azure AD v2 Azure AD v2 OpenID Metadata Document Azure AD v2 Sign-On Authentication Reque...
2021-01-09, 1238🔥, 0💬

<< < 37 38 39 40 41 42 43 44 45 46 47 > >>   Sort: Date