Akshay Suresh Thekkath
Akshay Thekkath

Akshay Thekkath

Follow
Follow
homeVuexBitesizebadgesnewsletter

Maximizing API Efficiency: Empowering API Consumers to Choose Their Data Fields

Nov 21, 20235 min read

Imagine you've got a REST API for listing users, and each user's information shows up in 12 fields. GET /v1/users/?page=1&page_size=15 { ...

Maximizing API Efficiency: Empowering API Consumers to Choose Their Data Fields

Unlocking Unit Testing in Python

Jun 17, 20236 min read

Decoupling the Data Layer for Enhanced Code Modularity · Unit tests are designed to be simple and efficient, focusing on testing small, isolated code...

Unlocking Unit Testing in Python

Git Reset, Revert, and Cherry-Pick: Tools for Efficient Branch Management

May 14, 20233 min read

Essentials for Safeguarding and Maintaining Your Sprint Cycles · At work, we follow the agile methodology and complete tasks in two-week sprints. Our...

Git Reset, Revert, and Cherry-Pick: Tools for Efficient Branch Management

Implementing API Timeouts and Retries in Python

May 1, 20236 min read

A Step-by-Step Tutorial with Practical Examples · API Timeouts: Why should we implement timeouts? When developing a backend system, it is likely that you...

Implementing API Timeouts and Retries in Python

Vuex - Vue State Management - Part III - Mutations

Mar 8, 20224 min read

Updating the global state using mutations · Once we have our state and getters ready as explained in part II of this blog, we can start defining our...

Vuex - Vue State Management - Part III - Mutations

Vuex - Vue State Management - Part II - State & Getters

Sep 30, 20216 min read

Fetching & binding the global state into Vue components · Setting up the state and the getters are the next thing on our list after we have set up the...

Vuex - Vue State Management - Part II - State & Getters