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

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

Removing Leading and Trailing Spaces in PHP
How To Remove Leading and Trailing Spaces from User Input Values? If you are taking input values from users with a Web form, users may enter extra spaces at the beginning and/or the end of the input values. You should always use the trim() function to remove those extra spaces as shown in this PHP s...
2016-10-13, 2559🔥, 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, 2556🔥, 0💬

"Hello.c" - Compile and Run C Program
How to use Visual Studio command tools to compile and run a C program? If you want to compile and run a standard C program with Visual Studio command tools, you can follow this tutorial: 1. Create a simple C program, Hello.c, with a text editor: #include &lt;stdio.h&gt; void main() { printf(...
2017-08-21, 2555🔥, 0💬

Introduction of EPUB 2.0 Specification
Where to find tutorials on introduction of EPUB 2.0 Specification? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on introduction of EPUB 2.0 Specification. What Is EPUB 2.0 Specification Minimum Requirement of EPUB 2.0.1 File Hello-2.0.epub - "m...
2019-01-12, 2551🔥, 0💬

Sign Out from Kindle for PC
How to sign out from Kindle for PC? Sign out from Kindle for PC is called "Deregister Kindle for PC". Deregister the Kindle for PC app from your Amazon account if it is registered to the wrong account or if you no longer want to use it to purchase Kindle books. To deregister the Kindle for PC app, y...
2022-07-01, 2547🔥, 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, 2546🔥, 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, 2546🔥, 0💬

Supporting Hidden Form Fields in PHP
How To Support Hidden Form Fields in PHP? Hidden fields are special fields in a form that are not shown on the Web page. But when the form is submitted, values specified in the hidden fields are also submitted to the Web server. A hidden field can be specified with the &lt;INPUT TYPE=HIDDEN ...&...
2016-11-08, 2545🔥, 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, 2544🔥, 0💬

json_decode() - JSON Object to PHP Object
How to access properties from the PHP object returned from json_decode() on a JSON object? By default, json_decode() will convert a JSON Object to a PHP object of the default class "stdClass". There are different ways to access properties in the output PHP object: $obj-&gt;property_name - Return...
2018-03-04, 2527🔥, 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, 2527🔥, 0💬

'@{...}' Expression Blocks in Azure API Policy
How to use the "@{...}" expression block in Azure API Policy? The "@{...}" expression block in Azure API Policy can be used to include a C# statement block as the attribute value or text value in most policy statements. C# statement block in the "@{...}" expression block must end with a "return" sta...
2018-02-14, 2521🔥, 0💬

json.tool - JSON Pretty-Print Tool
What is json.tool? Can I use it to convert a JSON string a pretty-print format? json.tool is a special internal executable module - a module with main() so you can run it as Python script. When you run json.tool, (or json.module.main()), it will read a JSON string from the stand input and write the ...
2018-09-24, 2515🔥, 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, 2505🔥, 0💬

"docker container run --detached" - Run Container in Background
How to Create a new Container and run it in the background using the "docker container run --detach" command? If you want to create an Alpine container and start a command that runs for a long time, you can use the --detach option to let it run in the background. 1. Create a new container with "alpi...
2018-12-01, 2495🔥, 0💬

Use '@(...)' Expressions in XML Attributes
When using "@(...)" expressions in XML attributes as part of an policy statement, do I need to worry about string quotations? If you are using a "@(...)" expression in XML attributes as part of an policy statement, and string literals are used in the "@(...)" expression, the syntax of the final poli...
2017-11-12, 2495🔥, 0💬

View Atom Feeds with Chrome Extension
How to View Atom Feeds with Google Chrome? I have the "Atom Subscription Extension" installed. If you have the "Atom Subscription Extension" installed, you can follow this tutorial to view Atom Feeds: 1. Launch Google Chrome 60. 2. Enter the following in the URL input box: http://dev.fyicenter.com/a...
2017-12-31, 2492🔥, 0💬

Add Operation to API on Publisher Portal - 2017 Version
How to add a new operation to an API on the Publisher Portal of an Azure API Management Service 2017 version? 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 API from the left menu on the Publisher Portal. You see the...
2018-07-18, 2483🔥, 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, 2482🔥, 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, 2473🔥, 0💬

Uploading Files into Database in PHP
How To Upload Files into Database in PHP? To store uploaded files to MySQL database, you can use the normal SELECT statement as shown in the modified processing_uploaded_files.php listed below: &lt;?php $con = mysql_connect("localhost", "", ""); mysql_select_db("fyi"); $error = $_FILES['fyicente...
2017-02-20, 2472🔥, 1💬

💬 2017-02-20 Jonas: Thanks for the sample code!

HTTP POST with urllib.request
How to send an HTTP POST request with urllib.request? I want to submit a form to a Website. To submit a form to a Website, you can use the urllib.request.urlopen() function with two arguments: r = urllib.request.urlopen(url, data) where: url can be a URL string or Request object data is request body...
2018-09-13, 2467🔥, 0💬

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