Shopify deprecates their APIs once every 6 months and it is a situation of anxiety for our development team. Because in case there is still a call site which is making calls to deprecated APIs, your shopify app can get delisted. Finding call sites for deprecated APIs can sometimes become
I have a very basic question which I usually ask in a interview which is to implement a tic tac toe game. I like this because the logic is straightforward and it helps to judge things like code quality / speed / conciseness etc. The candidate this time was programming in python
Well a random thought came to my mind if GPT can really generate a random number ? Best thing is to find out yourself. First thing is to quickly write boiler plates around random number generation using the cohere sonet model. async def generate_random_number(till: int): temperature = random.random(
There are few patterns which I usually follow while writing functions, which if I don't usually come bite me in the future. The same are applicable for APIs as well. 1. Making sure that the response is extensible. Let us say that we have an API for getting
I was reading a recent blog post about this cool git shortcut which shows you the recent working branches you have been working on. automation git:(singla/add_missing_model) ✗ gitrecent 38 minutes ago singla/add_missing_model 25 hours ago singla/bug_fixes_21st 25 hours ago singla/
For me the introduction of this term started while watching a movie Meet the parents How do you bring more people in the circle of trust ? Ever worked with someone whom is there in your circle of trust and vice versa. Pure bliss 🌈 . Ideally when you are managing a
Benchmark of different paradigms for parallelism in python We have heard a lot of times that python de facto is single threaded and not a multi processing friendly language. What does it mean ? Python itself is not inherently single-threaded; rather, the issue lies with the standard implementation of Python,
One by one we will look at how does NodeJs effective handles parallelism when it comes to IO operations and how we can write code for doing the same in CPU intensive operations.