Skip to content

Python · Machine Learning

From the kitchen

Quality, author-led articles on Python & machine learning. Learn how to eat through topics, calmly, deeply, and without the noise.

145 articles Community authors Always free

More from the kitchen

Fresh articles, served often.

data engineering

How to Define Prefect Deployments (2026)

TL;DR: Define Prefect Deployments What: Metadata that tells the Prefect server how and when to run a specific flow. Method: Use .serv…

Abdur-Rahmaan Janhangeer

Chef

programming languages

Simple JSON parser without knowing anything beforehands

Table of Content Introduction Scanning the text Looking for specific characters Identifying elements Processing elements Introducti…

Abdur-Rahmaan Janhangeer

Chef

artificial intelligence

How to get gemini response as json using python and google genai

Normally you can tune models to return json. But, fortunately, Gemini First install the lib pip install google-genai Here is a snippet i used to receive JSON …

Abdur-Rahmaan Janhangeer

Chef

cloud computing

How to Install Azure Cli on Linux Mint 22 / Wilma

Follow any installing azure cli on Linux mint tutorial, but, on the step below add noble main instead of something as generic as jammy main. See com…

Abdur-Rahmaan Janhangeer

Chef

linux

Add Google Calendar Desklet To Linux Mint 22

Google Calendar Desklet is a Python-packaged desklet app for Linux. gca…

Abdur-Rahmaan Janhangeer

Chef

enterprise software

How to create an object in salesforce using Python

Here’s a simple snippet for creating a new custom object in Salesforce in Python. from simple_salesforce import Salesforce sf = Salesforce( username='',…

Abdur-Rahmaan Janhangeer

Chef

cloud computing

How to copy files to AWS Ec2

To copy files to ec2, use the included by default scp tool in linux Command First follow this tutorial to isolate issues: ssh into the Ec2…

Abdur-Rahmaan Janhangeer

Chef

cloud computing

How to SSH into AWS EC2 instance

Table of Contents Introduction Ensure SSH Port 22 is Allowed Install SSH Create Key Pairs Download Key Pair Generate Public Key from …

Abdur-Rahmaan Janhangeer

Chef

devops

How to fix docker.errors.DockerException: Error while fetching server API version without using Docker Desktop

If you use Docker and get it running while using Docker Desktop, you might run into this error: docker.errors.DockerException: Error while fetching server API version: ('Connection a…

Abdur-Rahmaan Janhangeer

Chef

security

How to prevent OpenAi and similar from scraping your blog

If you want to disable OpenAi or similar crawlers from harvesting your data, create a file called robots.txt at the root of your domain. If your domain is health.com, make sure …

Abdur-Rahmaan Janhangeer

Chef

artificial intelligence

How to run Tencent's Hunyuan Video model using Python

Table of content What is HunYuan Video model? How does it differ from competitors? Architectural novelties How to install How to run? Doc…

Abdur-Rahmaan Janhangeer

Chef

data engineering

How to define prefect deployments

The Prefect documentation about deplyments are super vague. This post explains how to add deployments. Table of content Where are deploym…

Abdur-Rahmaan Janhangeer

Chef