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

Create Visual C# Project in Visual Studio 2017
How to Create a Visual C# Program Project with Visual Studio 2017? If you are new to Visual Studio 2017, you can follow tutorial to create your first Visual C# program project in Visual Studio 2017. 1. Start Visual Studio 2017 with .NET development environment. 2. Click "File &gt; New &gt; P...
2017-08-13, ∼3168🔥, 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, ∼3163🔥, 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, ∼3157🔥, 0💬

EPUB 2.0 Metadata - dc:date Element
What is EPUB 2.0 Metadata "dc:date" Element? EPUB 2.0 Metadata "dc:date" is an optional metadata element to specify the publishing date of the EPUB 2.0 book. EPUB 2.0.1 specification adds one attribute, "event", to the "Dublin Core Metadata Element Set" standard on this "dc:date" element: opf:event ...
2019-01-26, ∼3153🔥, 0💬

"Failed to load gRPC binary module" Error
Why am I getting the "Failed to load gRPC binary module" error when running a Node.js client application? If your Node.js environment is out of sync, you will get the "Failed to load gRPC binary module" error as shown below: $ cp ~/hyperledger-binaries/fabric- samples/fabcar/javascript$ node enrollA...
2020-01-04, ∼3139🔥, 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, ∼3139🔥, 0💬

Protect XML Special Characters in RSS Feeds
How to protect XML Special Characters in RSS Feeds? An RSS document is an XML document. And there 3 primary XML special characters you need to protect them, if you are using them in your RSS element contents: "&lt;" - Used to indicate the start of an XML element tag. It needs to be protected usi...
2017-11-05, ∼3115🔥, 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, ∼3110🔥, 0💬

Use Custom Variables in Policy Expressions
How to use custom variables created by "set-variable" statements in policy expressions? If you want to access custom variables created by "set-variable" statements, you can use the IReadOnlyDictionary object through "context.Variables". For example, the following policy creates a custom variable dur...
2018-01-24, ∼3091🔥, 0💬

Docker Data Storage - "tmpfs" Mounts
How to create a new "tmpfs" mount to a Docker container? "tmpfs" mounts are stored in the host system’s memory only, and are never written to the host system’s filesystem. You have two options "--tmpfs" and "--mount" on the "docker container create/run" command to create "tmpfs" mounts. "--tmpfs" Op...
2021-08-15, ∼3089🔥, 0💬

EPUB 3.0 Sample - "The War Poems of Siegfried Sassoon"
Where can I download the EPUB 3.0 sample book "The War Poems of Siegfried Sassoon" by Siegfried Sassoon? You can following this tutorial to download the EPUB 3.0 sample book "The War Poems of Siegfried Sassoon" by Siegfried Sassoon. 1. Go to infogridpacific.com Free ePub3 Books page . 2. Click "Down...
2018-10-26, ∼3086🔥, 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, ∼3076🔥, 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, ∼3069🔥, 0💬

Create New Instances of a Class
How to Create a New Instance of a Class? There are two ways to create a new instance (object) of a class (or type): 1. The short way: Call the class name as the class constructor function with the following syntax. It will return an instance of the given class. &gt;&gt;&gt; x = class_nam...
2018-01-27, ∼3063🔥, 0💬

What Is a Persistent Cookie in PHP
What Is a Persistent Cookie in PHP? A persistent cookie is a cookie which is stored in a cookie file permanently on the browser's computer. By default, cookies are created as temporary cookies which stored only in the browser's memory. When the browser is closed, temporary cookies will be erased. Yo...
2016-11-04, ∼3051🔥, 0💬

What Is PCDATA in HTML Documents?
What Is PCDATA in HTML Documents? PCDATA stands for Parsed Character DATA. Here are some basic rules about PCDATA: PCDATA is a string of characters and HTML entities. HTML entities are escape sequences used to refer to special characters that are not so easy to enter them in a text document. For exa...
2024-06-28, ∼3044🔥, 1💬

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

EPUB 2.0 Metadata - dc:language Element
What is EPUB 2.0 Metadata "dc:language" Element? EPUB 2.0 Metadata "dc:language" is a required metadata element to specify the primary language of the EPUB 2.0 book. When using "dc:language" metadata element, you should the an ISO 639 language code to specify the language. For example, the following...
2022-04-13, ∼3042🔥, 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, ∼3033🔥, 0💬

JSON-parse-Transformed.html - JSON.parse() Value Transformed
How to write a reviver function to transform values while the JSON.parse() function is parsing the JSON text string? Below is a good example on using a reviver function with the JSON.parse() call to transform parsed JSON element values: &lt;!-- JSON-parse-Transformed.html Copyright (c) FYIcenter...
2017-09-08, ∼3033🔥, 0💬

Windows SDK 8.1 Program Folders
In which folders Windows SDK 8.1 programs are located on my Windows computer? When Windows SDK 8.1 is installed on your Windows computer, its programs are located the following folders: Location: C:\Program Files (x86)\Windows Kits\8.1 Programs: .\bin\x86\certmgr - x86 ECM Certificate Manager .\bin\...
2023-10-27, ∼3027🔥, 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, ∼3023🔥, 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, ∼3023🔥, 1💬

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

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

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