anjanesh.devGetting picoclaw to work on WindowsMy friend Shabeer Naha WhatsApped me this link today - https://youtube.com/shorts/HUueAGGKy9I?si=kJ-h7G6Y3sW0ql9h - and asked "Is this true?" This was my first time I was hearing of picoclaw and I was11h ago·4 min read
css.co.in@supports APIIn order to check if some CSS property is supported in a browser or not we can make use of the @supports API which itself is supported by all browsers except IE and Opera Mini (https://caniuse.com/css-supports-api) - so we’re good here. So let take o...Jan 23·2 min read
anjanesh.devThe core use-case of TypeScriptI am going through this course on NextJS (mainly for the sake of Supabase) - and for my project setup, I choose TypeScript instead of plain JavaScript even though the Udemy course uses JavaScript only. There is a local end-point we have that spits a ...Jan 21·2 min read
anjanesh.devHashnode's GraphQL API for RSS feedsAll this while, parsing my blog's RSS feed from https://anjanesh.dev/rss.xml on my server was possible to extract the contents of title, description, link, image and date to be inserted at my NextJS powered template at https://anjanesh.com/blogs. But...Jan 21·1 min read
anjanesh.devmake makemigrations work againIn Django, the recommended standard is to push the migrations folder of (an app) also to git. Initially I never used to push migration files to GitHub and I ended up having to do python make migrations as well as python manage.py migrate on the serve...Mar 17, 2025·2 min read