My reading list for 2021
Author: Arnab Biswas
Automatic Feature Engineering on Large Scale Time Series Data using tsfresh & Dask
A summary of my talk on "Automatic Feature Engineering on Large Scale Time Series Data using tsfresh & Dask" at PyData Montreal Jan 2021 meetup & BelPy 2021 conference
COVID-19 : Myths & Facts
Beginning of March 2020, I did some reading about COVID-19 and its spread around the world. I am trying to share my learning from that.
My Notes on Time Series
My Notes on few interesting features of Time Series Data
Wildfly 8.x : Control maximum number of connections (threads) assigned to an application
In Wildfly, multiple applications can be deployed together. With the default configuration, there is no control on the maximum number of connections/threads assigned to any particular application. This blog describes configurations needed to restrict maximum number of threads assigned to any application. That way if one of the applications hang (consuming all the threads assigned … Continue reading Wildfly 8.x : Control maximum number of connections (threads) assigned to an application
Popularity (Usability) Index for Programming Languages
According to Oxford Dictionaries, the word "popular" means "liked or admired by many people or by a particular person or group". I know folks who code just for their living without any love for it. So, I am not going to use the term "Popularity", but will use the term "Usability" - "Usability Index For … Continue reading Popularity (Usability) Index for Programming Languages
Fundamentals of good API designing
What are the fundamental principles which an API Developer should keep in mind while designing an API
Inject Dependencies – Manually
In another post, “Do I Really Need a Singleton?”, I wrote about the problems introduced by the Singleton design pattern. When the single unique instance is being accessed through the getInstance() method, Singleton acts as a global variable in disguise and introduces tight coupling and unwanted dependencies. I have received two immediate questions from my … Continue reading Inject Dependencies – Manually
Problems with Checked Exception in Java
Recap: Exception Hierarchy In Java In Java, we have three types of Throwables : Error and it’s subclasses Runtime Exception and it’s subclasses And the rest (Non-Runtime Exceptions) Exceptions those lie in the third category are called Checked Exceptions. If a method throws a checked exception, the compiler makes sure that the API user handles … Continue reading Problems with Checked Exception in Java
Load Testing of GUI using JMeter
How to configure and use JMeter for load/traffic testing of Web Applications.