<< < 1 2 3 4 5 6 7 8 9 10 > >>   Sort: Date

RSS Validation Errors at w3.org
How to read RSS validation errors at w3.org? If your RSS feed has errors, the RSS validator at w3.org will detect the errors and provide information to help you to resolve them as shown in this tutorial: 1. Go to Feed Validation Service at w3.org . 2. Click the "Validate by Direct Input" tab. You se...
2017-10-16, 2631👍, 0💬

'valign' - Vertical Alignment in HTML Table
How To Control Vertical Alignment? By default, text in all table cells are aligned to the top vertically. If you want to control vertical alignment yourself, you need to use the "valign" attribute in a "tr" element or a "td" element: &lt;tr valign="top|middle|bottom"& ;gt;- Set vertical align...
2017-05-05, 2625👍, 0💬

Using Azure API Management Developer Portal
Where to find tutorials on Using Azure API Management Developer Portal? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Using Azure API Management Developer Portal: Login to Developer Portal as Publisher What Can I See on Developer Portal Test ...
2017-09-20, 2604👍, 0💬

re.search() - Search for First Match
How to search for the first match of a regular expression using re.search()? The re.search() function allows you to search for the first match of a given regular expression in a target string. import re m = re.search(pattern, string, flags=0) Where: pattern is the regular expression string is the ta...
2018-10-19, 2596👍, 0💬

json.dumps() - Dumping Object into JSON
How to dump (or encode, serialize) a Python object into a JSON string using json.dumps()? The json.dumps() function allows you to dump (or encode, serialize) Python objects into JSON strings: json.dumps(obj, *, skipkeys=False, ensure_ascii=True, check_circular=True, allow_nan=True, cls=None, indent=...
2018-10-13, 2591👍, 0💬

JSON to XML Conversion at freeformatter.com
How to use the JSON to XML Conversion Tool at freeformatter.com? If you want to try the JSON to XML Conversion Tool at freeformatter.com, you can follow this tutorial: 1. Go to the JSON to XML Conversion Tool page at freeformatter.com. 2. Enter the following JSON value in the text area: ["Hello", 3....
2021-08-04, 2585👍, 1💬

'th' - Adding HTML Table Headers
How To Add Column Headers to a Table? If you want to add column headers to a table, you need to use "th" elements instead of "td" elements in the first row of the table. "th" elements are displayed in bold and centered by default. Below is a tutorial example of adding column headers to a table: &...
2017-05-05, 2575👍, 0💬

'send-request' Policy Statement
How to use the "send-request" Policy statement to call an extra web service for an Azure API service operation? The "send-request" Policy Statement allows you to call an extra web service and store the response in a given variable. The "send-request" statement has the following syntax: &lt;send-...
2018-01-13, 2560👍, 0💬

Policy to Set and Get Custom Variables
How to write a policy to set and get custom variables? Here is a policy that sets and gets custom variables: &lt;!-- Set-Get-Variable-Policy.xml Copyright (c) FYIcenter.com --&gt; &lt;policies&gt; &lt;inbound&gt; &lt;set-variable name="version" value="1.11" /&gt; &...
2017-10-23, 2550👍, 0💬

"new line" Character in Single-Quoted Strings in PHP
Can You Specify the "new line" Character in Single-Quoted Strings? You can not specify the "new line" character in a single-quoted string. If you don't believe, try this script: &lt;?php echo '\n will not work in single quoted strings.'; ?&gt; This script will print: \n will not work in sing...
2016-10-13, 2550👍, 0💬

JSON-stringify.html - JSON.stringify() Example Code
Where to get a JSON.stringify() Example Code in JavaScript? Here is a good JSON.stringify() example code in JavaScript. &lt;!-- JSON-stringify.html Copyright (c) FYIcenter.com --&gt; &lt;html&gt; &lt;body&gt; &lt;script type="text/javascript"&gt; var str1 = JSON.strin...
2021-08-04, 2548👍, 1💬

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, 2545👍, 0💬

'*...' and '**...' Wildcard Parameters in Function Definitions
What are "*..." and "**..." Wildcard Parameters in Function Definitions? If you want to define a function that receives a unknown number of parameters, you have to use the "*..." and "**..." Wildcard Parameters in the "def" statement using the following syntax: def func_name(named_parameter,..., *li...
2022-10-26, 2544👍, 0💬

Atom Validation Errors at w3.org
How to read Atom validation errors at w3.org? If your Atom feed has errors, the Atom validator at w3.org will detect the errors and provide information to help you to resolve them as shown in this tutorial: 1. Go to Feed Validation Service at w3.org . 2. Click the "Validate by Direct Input" tab. You...
2017-12-31, 2541👍, 0💬

Accessing Global Variables inside a Function in PHP
How To Access a Global Variable inside a Function? in PHP? By default, global variables are not accessible inside a function. However, you can make them accessible by declare them as "global" inside a function. Here is a PHP script on declaring "global" variables: &lt;?php ?&gt; $intRate = 5...
2016-12-08, 2526👍, 0💬

EPUB 2.0 Sample - "The Metamorphosis"
Where can I download the EPUB 2.0 sample book "The Metamorphosis" by Franz Kafka? You can following this tutorial to download the EPUB 2.0 sample book "The Metamorphosis" by Franz Kafka. 1. Go to pressbooks.com sample books page . 2. Click "EPUB" under "The Metamorphosis, by Franz Kafka (Jackson The...
2018-10-26, 2525👍, 0💬

"link" - Link Object Files (*.obj)
How to use "link" command tool to link objet files? If you have object files previously compiled by your or others, you can follow this tutorial to link them into executable files: 1. Create a simple C++ program, Hello.cpp, with a text editor: #include &lt;iostream&gt; using namespace std; v...
2017-08-21, 2504👍, 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, 2495👍, 0💬

json_encode() Function in PHP
Where to get the detailed description of the json_encode() Function in PHP? Here is the detailed description of the json_encode() Function in PHP. Description - The json_encode() function generates a JSON text string that represents the given PHP value. Syntax - string json_encode ( mixed $value [, ...
2022-06-29, 2491👍, 3💬

💬 2022-06-29 grzegorz: &lt;?php '"lotto" = multi multi('10' => 1, '10.000' => echo json_encode(multi multi); # The above example will outp # # {011...

💬 2022-01-20 gg: @@ -0,0 +1,27 @@ +-----BEGIN PRIVATE KEY----- +MIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKc wggSjAgEAAoIBAQCwZfi/rzC804cE0+t4EmfYG8RUffZT...

💬 2022-01-19 beesbuzz.biz: Basic usage: Allowed parameters: page-url: The base URL to use for this page. Defaults to window.location add-urls: Additional U...

JSON to XML Conversion at utilities-online.info
How to use the JSON to XML Conversion Tool at utilities-online.info? If you want to try the JSON to XML Conversion Tool at utilities-online.info, you can follow this tutorial: 1. Go to the JSON and XML Conversion Tool page at utilities-online.info. 2. Enter the following JSON value in the JSON text ...
2021-08-04, 2490👍, 1💬

RSS 2.0 XML Schema at codeplex.com
Where Can I get a copy of the RSS XML Schema? RSS XML Schema is an XML Schema that defines how an RSS XML document should be generated. If you are interested to know how to use an RSS XML Schema to generate RSS XML documents in C# language, you can look at the source code of "RSS 2.0 Schema" project...
2017-11-05, 2479👍, 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, 2477👍, 0💬

View Atom Feeds with IE (Internet Explorer)
How to View Atom Feeds with IE (Internet Explorer)? If you want to view Atom Feeds with IE (Internet Explorer), you can follow this tutorial: 1. Launch IE (Internet Explorer) 11. 2. Enter the following in the URL input box: http://dev.fyicenter.com/atom_ xml.php3. Press "Enter" key. You see the Atom...
2017-12-31, 2473👍, 0💬

Hello-3.0.epub - Navigation File: navigation.xhtml
How to create a navigation file like navigation.xhtml for an EPUB 3.0 book? At least one navigation file, like navigation.xhtml, is required for an EPUB 3.0 book in the book ZIP container. It provides navigation information like a table of contents of the book. Here is the requirement on a navigatio...
2018-11-29, 2469👍, 0💬

<< < 1 2 3 4 5 6 7 8 9 10 > >>   Sort: Date