2019-10-20

Install Elasticsearch 7 and Kibana on Ubuntu

2 mins read Use the following commands to install Elasticsearch itself: Next, edit the Elasticsearch configuration using vi: Uncomment the node.name line (in vi, use […]
2019-05-12

Kafka Producer and Consumer example in Python

3 mins read In this tutorial, we are going to build Kafka Producer and Consumer in Python. Along with that, we are going […]
2017-06-17

Compiling C extension modules on Windows (Cython)

10 mins read This page describes how to compile a Cython extension (works for CPython extensions also) for Windows. If you encounter one […]
2017-06-17

Cythonize setup.py for several .pyx files

3 mins read Concept Distutils is the standard way to build Cython extension modules for large projects. Typically one invokes setup(…) which then […]
2017-06-14

Kernel Density Estimation (KDE) in Python

10 mins read Nonparametric Density Estimation In some cases, a data sample may not resemble a common probability distribution or cannot be easily […]