Hero Title

Hero Short Description Here.

Python As NodeJS Dev.

Python As NodeJS Dev.

So I took a turn to write a live Python app. Let me take you through a journey of a Javascript developer writing a Python project Javascript and Python are two aggressively competing language in the market. I have been writing Javascript code since I started my career. Written tons of lines in both...

Thumbnail Placeholder

Multiprocessing in Python: a guided tour with examples

This document is a survey of several different ways of implementing multiprocessing systems in Python. It attempts to provide a small amount of guidance on when it is appropriate and useful to use these different approaches, and when not. 1.1 Motivation We all have multi-core machines. It’s easy to imagine a home will multiple...

Thumbnail Placeholder

What is CUDA? Parallel programming for GPUs

CUDA and the parallel processing power of GPUs. CUDA is a parallel computing platform and programming model developed by Nvidia for general computing on its own GPUs (graphics processing units). CUDA enables developers to speed up compute-intensive applications by harnessing the power of GPUs for the parallelizable part of the computation. While there have...

Thumbnail Placeholder

Python Parallel Programming Solutions [Video]

This course will teach you parallel programming techniques using examples in Python and help you explore the many ways in which you can write code that allows more than one process to happen at once. Starting with introducing you to the world of parallel computing, we move on to cover the fundamentals in Python....

Thumbnail Placeholder

Comparison: Node.js, PHP, C, Go, Python and Ruby

I had fun doing performance tests after reading an article which had performance tests for Python. I wanted to only test web back-end tech, but I still added in a test with C in order to compare everythig else with a low-level language. Here is the code: Python sum = 0 for i in...

Thumbnail Placeholder

HMAC in Go, Python, Ruby, PHP, and NodeJS

Posted September 24, 2014 8:57 am by tim & filed under Crypto, Go, NodeJS, PHP, Python, Ruby, Web development. When communicating messages between multiple systems, it’s always a good idea to authenticate a message before taking action on it. This ensures the message hasn’t been tampered with and that it came from a known...

Thumbnail Placeholder

Multi threading || Parallel Programming In NodeJS

Parallel Programming Parallel computing is a type of computation in which many calculations or the execution of processes are carried out concurrently. Large problems can often be divided into smaller ones, which can then be solved at the same time. There are several different forms of parallel computing: bit-level, instruction-level, data, and task parallelism. Parallelism has long been employed in high-performance computing, but it’s gaining...