Categories

Web DevelopmentProgrammingDatabaseWindowsLinuxNetworkingMobile DevicesRaspberry PiPythonCJavaOtherSponsored

PROGRAMMING Articles

C#: List All Work Items in an Azure DevOps Project

Learn how to programmatically list ALL work items in a Azure DevOps Project by consuming REST API calls from a C# console application.

C#: Creating Work Items in Azure DevOps using REST API

This tutorial will show you how to make REST API calls from a C# program to create and manage work items in an Azure DevOps project.

C# Console App to Record and Playback Mouse Movements

Here is a simple C# console application that uses Win32 API function calls GetCursorPos and SetCursorPos to record and playback mouse movements.

How to call Azure Devops REST API from PowerShell

This tutorial shows you how to use PowerShell with REST API calls to create, fetch, edit and delete various resources in Azure Devops.

Implementing Jenkins one-at-a-time hash function in VB.NET

How to implement Jenkins one at a time hash in VB.NET. Jenkins one at a time hash is a hash function that produces a 4 byte hash value from a multi-byte input.

Getting started TypeScript with Visual Studio 2015

This article explains installing TypeScript, creating your first program and the basics of building applications using TypeScriptand Visual Studio 2015

Node.js Express : Insert JSON from POST request into MongoDB

A simple web app created with Node.js and Express framework to retrieve JSON data from a POST request and insert it into a MongoDB collection.

Node.js Express : Parse and insert JSON into MySQL Database

This web app created with Node.js and Express framework demonstrates how to parse a JSON POST and insert the data in to a MySQL database table.

How to convert MYSQL data to JSON using PHP

How to convert MYSQL data to JSON using PHP You may use this in combination with Jquery/AJAX to exchange data with web applications in JSON format

Parse JSON file with PHP

PHP program to read JSON file and parse the data to a nested array using json_decode function