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

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, 2403🔥, 0💬

Use &amp;amp; in '@(...)' Expressions
How to enter &amp;amp; entity in '@(...)' expressions? If you want to enter the &amp;amp; sequence in a '@(...)' expressions, you must enter it as &amp;amp;amp;. This is because all XML entities will be decoded immediately, when Azure process the policy XML document. For example, the fol...
2017-11-12, 2402🔥, 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, 2400🔥, 0💬

XML to JSON Conversion
Where to find tutorials on XML to JSON Conversion? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on XML to JSON Conversion: Issues of Converting XML to JSON Mapping XML Attributes to JSON Values Mapping XML Simple Elements to JSON Values Mapping...
2023-09-05, 2396🔥, 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, 2395🔥, 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, 2393🔥, 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, 2392🔥, 0💬

Use Match Group \g&lt;n&gt; in Replacement
How to how to use matched string and groups in replacements with re.sub()? When calling the re.sub() function, you can use matched string and groups in replacements with the following escape sequences: \g&lt;0&gt; # represents the matched string \g&lt;1&gt; # represents the first gro...
2018-10-13, 2388🔥, 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, 2386🔥, 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, 2379🔥, 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, 2360🔥, 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, 2350🔥, 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, 2335🔥, 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, 2326🔥, 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, 2325🔥, 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, 2320🔥, 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, 2314🔥, 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, 2305🔥, 0💬

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, 2285🔥, 0💬

Creating a Database Table to Store Files in PHP
How To Create a Table To Store Files in PHP? If you using MySQL database and want to store files in database, you need to create BLOB columns, which can holds up to 65,535 characters. Here is a sample script that creates a table with a BLOB column to be used to store uploaded files: &lt;?php $co...
2016-10-14, 2285🔥, 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, 2280🔥, 0💬

Creating a Directory in PHP
How To Create a Directory in PHP? You can use the mkdir() function to create a directory. Here is a PHP script example on how to use mkdir(): &lt;?php if (file_exists("/temp/download") ){ print("Directory already exists.\n"); } else { mkdir("/temp/download"); print("Directory created.\n"); } ?&a...
2016-11-24, 2278🔥, 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, 2274🔥, 0💬

EPUB 2.0 Metadata - dc:description Element
What is EPUB 2.0 Metadata "dc:description" Element? EPUB 2.0 Metadata "dc:description" is an optional metadata element to specify a long description of the EPUB 2.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...
2019-01-26, 2273🔥, 0💬

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