A joke only Flutter developers would understand

Posted on under Coding & Tech Leave a comment

Developer: “YESSS! My world-class widget test is ready to run.” (runs the test) Debug Console: “Expected to see 1 widget, found none.” Developer: What! Why, why, why!!! (figures out all async calls in the widget; spends 4 hours re-reading about widget testing, exploring the source code of WidgetTester.pump() and setting up mock classes using Mockito.) Developer: “Muwaha […]

A compelling case for Next.js

Posted on under Coding & Tech Leave a comment

Nextjs logo

If GitHub stats are anything to go by, Next.js has received incredible attention of late. Freelancers and enterprises alike are creating their next applications in or migrating their existing ones to Next.js. When I was recently on-boarded to my first account at Sapient, the departing senior XT architect highly recommended that we migrate to it. […]

The charm of functional programming

Posted on under Coding & Tech Leave a comment

While reading modern JavaScript code, you might have come across such things as Array.prototype.map(), Array.prototype.filter(), pure functions, higher order functions, the spread operator, etc. Basically, all the things that React and Redux made us write willingly or unwillingly. I am not going to spend the next 2-3 hrs going into finer details about FP. Instead, […]