Dynamic Programming is just a fancy way of saying memoization or caching - remembering stuff to save time later. If you have already computed a function, map the given parameters to the result, and you can use this information later without calculating the whole function again if the parameters are the same.Those who cannot remember the past are
condemned...
Thursday, October 22, 2020
Thursday, July 23, 2020
DIY Wireless Follow Focus

Is it possible to build your own homemade, but powerful and feature-packed follow focus? Let's find out!
Youtube video: https://youtu.be/NZtYzvitv3U
The components that I have used include:
Nema 17 (but don't use it, I'll explain later!)
Driver for the motor
two...
Thursday, March 26, 2020
MemoryRouter and Material UI Navigation

Are you wondering why your MemoryRouter and Navigation from Material UI don't properly work?
Maybe your <BottomNavigation> gets messed up when it's wrapped by a <Link> from react-router-dom?
It took me one day to sort this out. The official documentation of...
Saturday, June 30, 2018
Our first open source Premiere Pro CC plugin! - Focus Peaking inside Premiere Pro

Hey!
I'm proud to announce the build and the development of our first open source Premiere Pro CC compatible plugin that mimics the focus peaking function of the Sony mirrorless cameras.
Example
How to use it?
This is the first version of the plugin, so if I add...
Sunday, March 18, 2018
How Nikon battery chargers work?

Hi!
Have you wondered how do Nikon chargers work or, you just want to hack one? This article is all about them.
All this started when I wanted to add 12V support to my Nikon battery charger MH-24 (It charges EN-EL14 model batteries). The reason for adding a 12V support...
Wednesday, January 17, 2018
How to: MANY toggle switches on 1 pin of the Arduino

Youtube video: https://youtu.be/7HBbuQIcKqc
Couple of years ago, I had a project in mind that involved 10 toggle switches that needed to to be connected to the Arduino as the brain of it. So, seeing that I need 10 different pins on the Arduino, I knew that I could devise...
Monday, January 1, 2018
Color Palette - The Manim

Happy New Year everyone! (if you are reading this in January, at least)
Hi!
As an after-party, writing a bit of code is just enough... :)
Color palettes are very important and essential piece of graphics design. They contribute to the look and feel of the piece....