Categories

Web DevelopmentProgrammingDatabaseWindowsLinuxNetworkingMobile DevicesRaspberry PiPythonCJavaOtherSponsored

ALL Articles

How to add a Favourite Icon to your website

Learn how to add a favicon or shortcut icon to your website.

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

Get data from a nested JSON in PHP using Recursion and Loops

How to get data from nested JSON objects in PHP using recursion method or using simple FOR loops.

Increasing the size of a root partition on a Linux VM

This article gives you step-by-step instructions on how to increase the size of the LVM root partition on a Linux virtual machine running on Oracle Virtual Box.

Share Raspberry Pi files and folders with Windows machines

Share files and folders in your Raspberry Pi with Windows PCs on the network by setting up Samba

How to create and manage services in CentOS 7 with systemd

This article explains how to create a custom new service units and CentOS 7 with systemd and how to manage services using systemctl command.

Using PowerShell to change timestamp of files and folders

PowerShell Tip : View and Modify Access time, Modification Time and Creation times of Windows files and folders using PowerShell

Enable Last Access timestamp for files and folder in Windows

Last Access time of files in Windows are disabled by default to improve NTFS performance but you can enable last access time updates using fsutil tool

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.

C program to add, remove, print, and traverse a linked list

A Linked list consists of a set of nodes and each node has some data and a pointer to next node. Here is a C program to add, remove, count and print elements of a linked list