Wireless Communication from Scratch

All we 90s kids have seen mobile phones taking over our lives. We have been taught in school that Electromagnetic waves carry our signals. In school, like most people, I too accepted that mobile phones work with electromagnetic waves, no further thought given..!! The objective of this blog post is to give a brief historical … Continue reading Wireless Communication from Scratch

Docker for Computer Vision Researchers

Here is my docker images. https://hub.docker.com/r/mpkuse/kusevisionkit/  In recent years there has been some buzz on Docker. Although some power computer vision/robotics researchers and developers do use docker for development, an overwhelming majority do not use it. Most people simply install the libraries on their Ubuntu and get to work. While this solution is simple, it … Continue reading Docker for Computer Vision Researchers

Part-2 : Simulating a Mechanical System with Differential Equations

This is my second part in a built-up towards understanding and implementing a real world control system. In my past post, I talked about differential equations.  The take home message from my last post was that, given a mechanical system and solving the free body diagram of it, we can get the differential equations describing … Continue reading Part-2 : Simulating a Mechanical System with Differential Equations

Vector Differentiation

Just a quick cheatsheet on derivatives (of scalars and vectors) wrt of a vector. This is borrowed from the wiki page : Matrix Calculus. Vector Calculus CAS Tricks The following document is borrowed from here. Vector Calculus with Maxima (Computer Algebra System)Download Oftentimes, we need to get linear approximation of a complicated function. This is … Continue reading Vector Differentiation

tmux cheatsheet

Follow this simple and to the point tutorial : https://danielmiessler.com/study/tmux/. From Bash tmux ls --> show list of sessions tmux new -s session-name --> new session tmux a --> attach to default session tmux a -t session-name --> attach to a particular session tmux kill-session -t session-name   Session (Ctrl-b) $ --> rename session name d --> detach Window (Ctrl-b) c … Continue reading tmux cheatsheet