code-optimization

Calling C Posix Threads from Python Through Cython

Call C Parallel Function from Python C language is fast. Let alone parallelism in C. It is a great speed boost especially for heavy operations. Here we will see how…

Read more

Interprocess Communication and Parallelism in C

Building a Weather Application Using IPC and Parallelism Building a weather application using interprocess communication (IPC) like named pipes and shared memory. In addition to parallelism through posix threads to…

Read more

Import C Code in Python (Part 2)

Importing C libraries and functions in Python using ctypes library and Cython C is known by its speed, so sometimes when the performance and the speed are an issue, developers…

Read more

Import C Code in Python (Part 1)

Importing C libraries and functions in Python using ctypes library and Cython C is known by its speed, so sometimes when the performance and the speed are an issue, developers…

Read more

Handling Big Files with R

Manipulating Large Data with R Handling large data files with R using chunked and data.table packages. Here we are going to explore how can we read manipulate and analyse large…

Read more