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

Reinstall npm with Node Version Manager
How to reinstall npm with a node version manager? I am getting permission errors with the current version of npm. If you are get directory and file permission error when using the "npm install" command, you should follow this tutorial to reinstall "node" and "npm" with the "nvm" Node Version Manager...
2020-01-04, 5135🔥, 0💬

XML to JSON Conversion at freeformatter.com
How to use the XML to JSON Conversion Tool at freeformatter.com? If you want to try the XML to JSON Conversion Tool at freeformatter.com, you can follow this tutorial: 1. Go to the JSON and XML Conversion Tool page at freeformatter.com. 2. Enter the following XML document in the XML text area: &...
2022-07-01, 5097🔥, 18💬

💬 2022-07-01 gg: "@id": "01164917579869568", "name": { "#text": [ "Grzegorz", "Jaśko" ], "mid": "M" }, "age": "40", "address": { "Gałczyńskiego"...

💬 2022-05-28 Jcastillo: We'll update our Wordle answer list daily with today's Wordle word so you'll never have to feel like a lesser being when talking...

💬 2022-01-22 meta.json: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46...

(More comments ...)

Get Application ID from Azure AD
How to register and get an application ID from Azure AD? The first step to use Azure AD is to register and get an Application ID: 1. Sign in to the Azure portal with admin permissions. 2. Click "Azure Active Directory" from the left menu. And select one Azure AD service like "default directory", if ...
2021-06-20, 5078🔥, 0💬

Atom Online Validator at w3.org
How to use the Atom Online Validator at w3.org? w3.org feed validation service is provided at http://validator.w3.org/feed/. It offers you two methods to validate your Atom feed document: Validate by URL - Validating a feed file by entering the URL where the feed file is located. Validate by Direct ...
2017-12-31, 4972🔥, 0💬

Sending FTP Request with urllib.request.urlopen
How to send an FTP request with the urllib.request.urlopen() function? If an FTP server supports anonymous access, you can send an FTP request to retrieve a directory list, or download a file using the urllib.request.urlopen() function: Here is a Python example on how to get a directory list from an...
2023-10-06, 4927🔥, 1💬

💬 2023-10-06 Uriel Adonai Jiménez Leal: Thanks!

json_decode() - JSON Object to PHP Associative Array
How to convert JSON Objects to PHP Associative Arrays using the json_decode() function? Actually, JSON Objects match better with PHP Associative Arrays than PHP Objects. You can force json_decode() function to turn return PHP Associative Arrays for any JSON Objects by giving the second argument as "...
2018-03-04, 4927🔥, 0💬

Azure AD App Registration Manifest
What Azure AD App Registration Manifest? Azure AD App Registration Manifest is JSON file that contains a definition of all the attributes of an application object in the Microsoft identity platform. It also serves as a mechanism for updating the application object. Here is an example Azure AD App Re...
2022-03-29, 4886🔥, 0💬

Using urllib.request.Request Object
How to use the urllib.request.Request object to build more complex HTTP request? The urllib.request.urlopen() function can take a urllib.request.Request object to let you building more complex HTTP requests. You can use the Request() constructor to build a Request object: q = urllib.request.Request(...
2018-09-13, 4794🔥, 0💬

'find-and-replace' Policy Statement
How to use the "find-and-replace" Policy Statement for an Azure API service operation? The "find-and-replace" Policy Statement allows you to find and replace a sub string in the request body or response body. For example, the following inbound policy will replace "$id" by the template parameter "id"...
2018-01-19, 4783🔥, 0💬

Opening Standard Output as a File Handle in PHP
How To Open Standard Output as a File Handle in PHP? If you want to open the standard output as a file handle yourself, you can use the fopen("php://stdout") function. It creates a special file handle linking to the standard output, and returns the file handle. Once the standard output is opened to ...
2016-11-24, 4755🔥, 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, 4727🔥, 0💬

'{{...}}' Liquid Codes in 'set-body' Policy Statement
How to use "{{...}}" Liquid Codes in "set-body" Policy Statement? The "{{...}}" Liquid Codes in "set-body" Policy Statement allows you to insert object properties of the original request in JSON format and object properties of the built-in "context" object. For example, the following "set-body" buil...
2017-12-04, 4723🔥, 0💬

Protecting Special Characters in Query String in PHP
How To Protect Special Characters in Query String in PHP? If you want to include special characters like spaces in the query string, you need to protect them by applying the urlencode() translation function. The script below shows how to use urlencode(): &lt;?php print("&lt;html&gt;"); p...
2022-09-09, 4702🔥, 1💬

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

EPUB 2.0 Metadata - dc:creator and dc:contributor Elements
What is EPUB 2.0 Metadata "dc:creator" and "dc:contributor" elements? EPUB 2.0 Metadata "dc:creator" and "dc:contributor" are optional metadata elements to specify authors and contributors of the EPUB 2.0 book. EPUB 2.0.1 specification adds two attributes, "role" and "file-as", to the "Dublin Core M...
2019-01-26, 4462🔥, 0💬

What Is Azure API Management Service
What Is Azure API Management Service? Azure API Management as a turnkey solution for publishing APIs to external and internal customers. Quickly create consistent and modern API gateways for existing back-end services hosted anywhere, secure and protect them from abuse and overuse, and get insights ...
2018-10-30, 4451🔥, 0💬

Creating an Array with a Sequence in PHP
How To Create an Array with a Sequence of Integers or Characters in PHP? The quickest way to create an array with a sequence of integers or characters is to use the range() function. It returns an array with values starting with the first integer or character, and ending with the second integer or c...
2023-07-28, 4399🔥, 1💬

Moving Uploaded Files to Permanent Directory in PHP
How To Move Uploaded Files To Permanent Directory in PHP? PHP stores uploaded files in a temporary directory with temporary file names. You must move uploaded files to a permanent directory, if you want to keep them permanently. PHP offers the move_uploaded_file() to help you moving uploaded files. ...
2016-10-14, 4328🔥, 0💬

Add API Operation Request Body Examples
How to add request body examples to my Azure API operation 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 dashboard of the API Ma...
2018-03-28, 4327🔥, 0💬

Using an Array as a Queue in PHP
How To Use an Array as a Queue in PHP? A queue is a simple data structure that manages data elements following the first-in-first-out rule. You use the following two functions together to use an array as a queue: array_push($array, $value) - Pushes a new value to the end of an array. The value will ...
2017-01-11, 4285🔥, 0💬

Azure API Management - Developer Portal
What is Azure API Management Developer Portal? Azure API Management Developer Portal is an Azure Web portal that allows your developers of client applications to learn and run tests on your API services. Once you have signed up for an Azure API Management Service, you will be given an API Management...
2018-10-30, 4283🔥, 0💬

Visual Studio Error: Windows SDK Version 8.1 not Found
Why I am getting "The Windows SDK version 8.1 was not found" error, when building my C++ application in with Visual Studio 2017? You are getting "The Windows SDK version 8.1 was not found" error, because you forgot to install Windows SDK version 8.1 on your computer. Here are the steps to reproduce ...
2023-12-01, 4232🔥, 0💬

Add Request Query String Parameters
How to add request query string Parameters to my Azure API operation to make it more user friendly? If your API operation uses URL template parameters, the client system must call it with parameter values specified in the correct position, like: https://.../exchange-rate/USD/ EUR/2020-10-10The above...
2018-03-24, 4226🔥, 0💬

Azure API Management - Gateway
What is Azure API Management Gateway? Azure API Management Gateway is the Azure Web server that service your API services. Once you have signed up for an Azure API Management Service, you will be given a URL that represents the API Gateway: https://your-api-management-se rvice-name.azure-api.netWhen...
2018-10-30, 4211🔥, 0💬

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