Categories

Web DevelopmentProgrammingDatabaseWindowsLinuxNetworkingMobile DevicesRaspberry PiPythonCJavaOtherSponsored

ALL Articles

Reading and Writing CSV files in Python

Python CSV module contains functions to read and write CSV data. Here are some examples of how to read from and write to CSV files in a Python program.

Using SQL statements to query information from OTRS database

SQL Box allows administrators to run SQL statements to query OTRS database. Here are a few SQL statements to query information about tickets, queues, agents and customers.

Using .htaccess to restrict access to Files and Directories

Restrict access to files and directories using .htaccess. Disable directory browsing and prevent access to certain files or filetypes

Data visualization in Jupyter Notebook using Pandas

This tutorial shows you how to visualize your data in Jupyter Notebook with the help of two Python libraries - Pandas and Matplotlib.

Password-less SSH login using Public key authentication

Public key authentication is a more secure and convenient way of login in to a remote server. Learn how to setup Public key authentication for SSH on Linux and Windows.

How to keep two Git repositories in sync

In this article we discuss how to keep two git repositories on different hosts in sync. For example you can sync a Github repo with a repo in Bitbucket or Gitlab

Docker Commands Cheat Sheat

This Docker commands cheat sheat contains most frequently used Docker commands for building and managing docker images, containers and network.

Binary search in C using recursion

A binary search is an algorithm to search the position of an element inside a sorted array. Here is a C program that performs binary search on an array using recursion.

C program for binary search

A binary search is an algorithm to search the position of an element inside a sorted array. Here is a C program implementation of binary search algorithm.

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.