top of page
Search
Python 3 Network Packet Sniffer
A simple pure-Python network packet sniffer. Packets are disassembled as they arrive at a given network interface controller and their...
The Tech Platform
Dec 3, 2020
Tuning using HyperOpt in python
HyperOpt provides an optimization interface that accepts an evaluation function and parameter space, and can calculate the loss function...
The Tech Platform
Nov 23, 2020

NEW RASPBERRY PI 400 IS A COMPUTER IN A KEYBOARD FOR $70
The newest Raspberry Pi 400 almost-all-in-one computer is very, very slick. Fitting in the size of a small portable keyboard, it’s got a...
The Tech Platform
Nov 4, 2020


9 Python 3 Features You Might Not Use Yet
Several developers have started to shift their Python version from 2 to 3 due to Python EOL. One of the most well-known changes is that...
The Tech Platform
Nov 3, 2020

Sorting Algorithm
Sorting algorithm is an algorithm that puts elements of a list in a certain order. The most frequently used orders are numerical order...
The Tech Platform
Nov 2, 2020

Heap Sort Algorithm
In this tutorial, you will learn how heap sort algorithm works. Also, you will find working examples of heap sort in C, C++, Java and...
The Tech Platform
Nov 2, 2020

Shell Sort Algorithm
In this tutorial, you will learn how shell sort works. Also, you will find working examples of shell sort in C, C++, Java and Python....
The Tech Platform
Nov 2, 2020

Bubble Sort Algorithm
Bubble sort, also known as a comparison sort, is a simple yet rudimentary sorting algorithm. It iterates through a list multiple times,...
The Tech Platform
Nov 2, 2020


Quick Sort Algorithm
The algorithm was developed by a British computer scientist Tony Hoare in 1959. The name "Quick Sort" comes from the fact that, quick...
The Tech Platform
Nov 2, 2020
Python program for Quicksort
# This function takes last element as pivot, places # the pivot element at its correct position in sorted # array, and places all smaller...
The Tech Platform
Nov 2, 2020
bottom of page