· 1 min read
TOPIC
engineering
7 posts tagged “engineering”.
· 2 min read
Calorie tracker for my Garmin watch
· 7 min read
The OpenAI and Hugging Face incident, explained in simple terms
· 1 min read
Shopify's Weird API Deprecation strategy
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.
· 1 min read
Interview gone wrong
I use tic tac toe as one of the interview questions, the logic is straightforward and it helps to judge things like code quality, speed, and conciseness. One candidate's Python answer taught me something new.
· 3 min read
Can GPT generate random numbers ?
Well a random thought came to my mind if GPT can really generate a random number? Best thing is to find out yourself. I ran experiments using Claude 3.5 Sonnet and the results were fascinating.
· 1 min read
Why you should make sure that your function params are extensible
For critical functions which you feel will change a lot in the future best to avoid primitive types directly in params and use extensible objects.