Blog posts

2023

Lake Boundry Detection with Mathematica

less than 1 minute read

Published:

Lake Boundry Detection with Mathematica

My friend discussed a problem he faced in finding seasonal fluctuations in water level and thus its consequences in varying lake areas and its perimeter. Given the satellite imagery of a lake, I wondered if Mathematica could solve this efficiently. I have uploaded the mathematica notebook related to it which you can find here The notebook is self-explanatory, and I have written textual arguments alongside it if someone wants to recreate it. I have tried to do it with more than one method and also put up some examples in it. Some of the pre-build functions in Mathematica do a fairly good job at it, and it is very quick to implement, but it is not super accurate. __

Automating the Flipkart Experience with Selenium

1 minute read

Published:

Automating Flipkart Experience with Selenium

It is not easy to encounter login issues when automating web apps, and I know it really annoying. I came across this cool method to get over such problems it requires two things that are necessary. Recently, I stumbled on undetected_chromedriver. It is a great tool to automating web apps without flagging as a bot. I tried using it alongside download site cookies, and it worked like magic! There were no bot restrictions like captcha that I came across.
You can find my code here