Skip to main content

About

Hello and welcome to my blog! My name is Sakthi.
 
I'm a professional programmer with over 13 years of experience, and I'm passionate about sharing my knowledge with others. My goal is to create a resource where you can find practical solutions and insights for your everyday programming challenges.
 
On this blog, you'll find articles focused on programming and problem-solving. I aim to break down complex topics into clear, understandable examples that you can apply directly to your work. I take great care in curating each article to ensure it's easy to follow and genuinely helpful.
 
When I'm not writing code or blog posts, I'm often exploring virtual worlds in the latest video games. This hobby, much like programming, is all about strategy, logic, and a little bit of fun.
 
I hope you find the content here valuable and that it helps you on your programming journey. Thanks for stopping by!
 
For any queries related to the articles or queries in general, please leave a comment or reach out to me through email kumarsakthib@gmail.com.

Popular posts from this blog

BMI Calculator using Python and Tkinter

Body Mass Index can be calculated using a simple formula kg/m 2 , where the weight is represented in kilograms (kg) and the height is represented in metres (m). The article presents code to create a simple GUI to calculate BMI based on user input values. The GUI is implemented using tkinter and tkinter.ttk libraries in Python language.

Tic-tac-toe game using Python and tkinter

Tic-tac-toe is a popular two player game where each player tries to occupy an empty slot in a 3x3 board until one of them wins or the entire board is filled without any winner. The winner has to occupy three continuous cells in any direction, including the two diagonals. In this article, a version of the tic-tac-toe game is coded using Python and tkinter library.

Using hilite.me API in Python

hilite.me is a light weight website made by Alexander Kojevnikov , used to format source code from various programming languages into formatted HTML snippets which can be added to blogs, articles, and other web pages as needed. I personally use the API to format the source code snippets in this blog, and it has greatly reduced the time taken to complete an article, much thanks to the creator. In this article, an automated way of using the hilite.me API through Python and a simple HTML document is created with formatted code snippets.

Double ended queue (deque) in C

A double-ended queue, pronounced deque in short is a LIFO queue where entries can be pushed and popped at both the ends of the queue, apart from push and pop an additional peek method is also discussed which fetches the value at either ends without removing it. In this article, one such queue is implemented using the C language.