<< < 24 25 26 27 28 29 30 31 32 33 34 > >>   ∑:1482  Sort:Date

Introduction of HTML Element Content Syntax
Where to find tutorials of introduction to HTML element content syntax and basics rules? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team in introduction to HTML element content syntax and basics rules. Clear answers are provided with tutorial exer...
2017-07-30, ∼2115🔥, 0💬

Invoking a User Function in PHP
How To Invoke a User Function? in PHP? You can invoke a function by entering the function name followed by a pair of parentheses. If needed, function arguments can be specified as a list of expressions enclosed in parentheses. Here is a PHP script example on how to invoke a user function: &lt;?p...
2016-12-28, ∼2113🔥, 0💬

JSON Schema Example
Where to get a simple example of JSON Schema? Here is simple JSON Schema example, called Person_Schema.json: { "title": "Person", "type": "object", "properties": { "firstName": { "type": "string" }, "lastName": { "type": "string" }, "age": { "description": "Age in years", "type": "integer", "minimum...
2018-02-01, ∼2112🔥, 0💬

Azure AD v2 OpenID Metadata Document
What is the Azure AD v2.0 OpenID Metadata Document? Azure AD v2.0 OpenID Metadata Document is an online JSON document that contains most of the information required for an app to perform sign-in. This includes information such as the URLs to use and the location of the service's public signing keys....
2021-01-09, ∼2110🔥, 0💬

XML to JSON Conversion at browserling.com
How to use the XML to JSON Conversion Tool at browserling.com? If you want to try the XML to JSON Conversion Tool at browserling.com, you can follow this tutorial: 1. Go to the JSON and XML Conversion Tool page at browserling.com. 2. Enter the following XML document in the XML text area: &lt;pro...
2023-02-28, ∼2109🔥, 0💬

Install Visual C++ in Visual Studio
How to install Visual C++ in Visual Studio Community 2017? I have the Visual Studio Installer installed. If you have the Visual Studio Installer ready, you can follow these steps to install Visual C++ in Visual Studio Community 2017. 1. Run "All Programs &gt; Visual Studio Installer". You see th...
2023-12-10, ∼2108🔥, 0💬

Requirements to Add External Identity Providers
What are requirements to add external identity providers? I want to allow users from Google or Facebook to login to my application. Azure AD B2C acts as a proxy of other external identity providers. Currently, it supports the following identity providers: Microsoft - Microsoft personal cloud logins ...
2019-03-08, ∼2107🔥, 0💬

OpenID Usage Statistics
How many Web sites/services are using OpenID? According to builtwith.com, there are about 1,250,000 Web sites/services are using OpenID as of August 2018: OpenID Usage Statistics   ⇒ Differences between OpenID and OAuth ⇐ What Is OpenID Connect ⇑ Introduction to OpenID ⇑⇑ OpenID Tutorials
2019-01-20, ∼2107🔥, 0💬

What Is the Relation between RSS and XML
What Is RSS (Rich Site Summary)? XML (Extensible Markup Language) is a generic markup language to organize generic information into a structured document with embedded tags. RSS (Really Simple Syndication) is an extension of XML designed to organize headlines of news or summaries of Web pages to fee...
2017-12-26, ∼2105🔥, 0💬

Printing Python Engine Information
How to print out Python engine information? Here is a Python example on how to print out Python engine information: &gt;&gt;&gt; import sys &gt;&gt;&gt; sys.getwindowsversion() sys.getwindowsversion(major=6, minor=1, build=7601, platform=2, service_pack='Service Pack 1') &...
2018-11-11, ∼2104🔥, 0💬

What Is Expression
What Is an expression in Python? An expression in Python is a sequence of operations or method calls applied on data objects. An expression has two impacts when executed: Code statements of invoked methods get executed. This may create new data objects, update existing data objects, consume resource...
2018-03-13, ∼2103🔥, 0💬

Removing an Empty Directory in PHP
How To Remove an Empty Directory in PHP? If you have an empty existing directory and you want to remove it, you can use the rmdir(). Here is a PHP script example on how to use rmdir(): &lt;?php if (file_exists("/temp/download") ){ rmdir("/temp/download"); print("Directory removed.\n"); } else { ...
2016-11-24, ∼2102🔥, 0💬

Removing a File in PHP
How To Remove a File in PHP? If you want to remove an existing file, you can use the unlink() function. Here is a PHP script example on how to use unlink(): &lt;?php if (file_exists("/temp/todo.txt") ){ unlink("/temp/todo.txt"); print("File removed.\n"); } else { print("File does not exist.\n");...
2016-11-20, ∼2101🔥, 0💬

"docker container list --all" - List All Containers
How to list all containers on the Docker Engine with "docker container list --all" command? The default "docker container list" or "docker ps" command lists only running containers. If you want to see all containers including those that were stopped, you need to use the "--all" option. Here is a lis...
2019-04-16, ∼2098🔥, 0💬

Ways to Include Variables in Double-Quoted Strings in PHP
How Many Ways to Include Variables in Double-Quoted Strings? There are 3 formats to include variables in double-quoted strings: "part 1 $variable part 2" - This is the simplest format to include a variable in a string. The variable name starts with the dollar sign and ends at the first character tha...
2016-10-13, ∼2096🔥, 0💬

What Is EPUB File Structure
What Is the EPUB file structure? An EPUB file is actually a ZIP archive file that contains the following types of files in sub-folders: HTML, image and audio files for book contents. CSS files for presentation. OPF files for book structure and navigations. Other resource and meta files. Here is a li...
2022-07-26, ∼2094🔥, 0💬

Versions of RSS Specifications
What are versions of Specifications and release dates? Versions and release dates of RSS are: RSS 2.0.11 - Published by the RSS Advisory Board on March 30, 2009. RSS 2.0.1 - Published by the Berkman Center for Internet &amp; Society at Harvard Law School on July 15, 2003. RSS 2.0 - Published thr...
2017-12-26, ∼2094🔥, 0💬

Relative Path Name of a URL
What Is a Relative Path Name? A relative path name is a path name that starts without the leading slash "/". If a relative path name is used in a URL, the relative path name will be replaced with the current document path name appended with the specified relative path name. If "." or ".." is used in...
2017-07-07, ∼2094🔥, 0💬

Interview Questions - HTML General
Where to find Interview Questions on HTML General? Here are some interview questions on HTML General: Do you use any tools when authoring new HTML documents? Do you use any tools when converting HTML documents to XHTML? How to validate your XHTML documents? How comfortable are you with writing XHTML...
2017-02-28, ∼2093🔥, 0💬

Atom "feed/id" Element
What is the Atom "feed/id" element? How To Generate a "feed/id" element? The &lt;id&gt; element is a required sub-element of the &lt;feed&gt; element. The Atom specification requires that you provide a universally unique identifier for each of your feeds. So how to make this identifi...
2017-12-09, ∼2092🔥, 0💬

Handle Exceptions with "mysql.connector"
How to handle errors or exceptions with "mysql.connector" module? While you are using "mysql.connector" module, an error or exception could occur on any MySQL database related statements. There are 3 basic ways to handle those errors or exceptions. 1. Default behavior - Whenever "mysql.connector" mo...
2021-09-09, ∼2088🔥, 0💬

HTML Element Content Models
What Are the HTML Element Content Models? There are 4 content models defined for HTML elements: 1. EMPTY - No content. Nothing between the opening tag and the closing tag. For example: &lt;br/&gt; - "br" element has no content. &lt;br&gt;&lt;/br& amp;gt;- Same as above. &lt;m...
2017-07-30, ∼2087🔥, 0💬

Technical Specifications for File Upload in PHP
How To Get the Technical Specifications for File Upload in PHP? File upload technical specifications is provided in "Form-based File Upload in HTML - RFC 1867". You can get a copy from http://www.ietf.org/rfc/rfc186 7.txt.    ⇒ PHP Tutorials ⇐ Configuration Settings for File Upload in PHP ⇑ Upload...
2016-10-14, ∼2087🔥, 0💬

What Is CDATA in HTML Documents?
What Is CDATA in HTML documents? CDATA stands for Character DATA, which is used to define a section of data that should not go through the XHTML entity translation (parsing) process. In other words, 3 special characters: "&lt;", "&gt;", and "&amp;" can be directly used in CDATA. They wil...
2024-02-28, ∼2083🔥, 0💬

<< < 24 25 26 27 28 29 30 31 32 33 34 > >>   ∑:1482  Sort:Date