Skip to content

Why Every Developer Should Know Git

Introduction If you are learning software development, software testing, DevOps, or automation, Git is one of the first technologies you should master. It has become the standard version control system used by millions of developers… 

ThaiWeather – Part 10: Frontend – html

Creating the Weather Dashboard with HTML The HTML file creates the visible structure of ThaiWeather.asia. It tells the browser that the page contains a header, a city selector, a Refresh button, current weather information and… 

ThaiWeather – Part 3: FastAPI Design

1. Imports FastAPI creates the web API. Header allows you to read an HTTP header from an incoming request. HTTPException lets you return proper HTTP errors such as 401 Unauthorized and 404 Not Found. BaseModel…