XKlondike
  • Home
  • Category
    • Programming
      • Python
      • Go
      • Other
    • Software
      • Windows
      • Linux
    • Advanced Python Course
  • About Author
  • Login
24 Aug
Card Image
Python

Protocols

The terms "iterator protocol" or "descriptor protocol" are already familiar and have been used for a long time. However, now …

Read More
by Xor0x
18 Aug
Card Image
Python

Increment with __pos__

In Python, there is no increment operation ++ like in C-like languages, so x += 1 is used instead. However, …

Read More
by Xor0x
17 Aug
Card Image
Other

Difference and When to Use Session vs JWT

Read More
by Xor0x
13 Aug
Card Image
Advanced Python Course

Lecture 1: Subtleties of Functional Programming

In this lecture, we will familiarize ourselves with elements of functional programming in Python. We will discuss what constitutes an …

Read More
by Xor0x
13 Aug
Card Image
Python

Singleton design pattern

class Singleton: instance = None def __new__(cls): if cls.instance is None: cls.instance = super().__new__(cls) return cls.instance a = Singleton() b …

Read More
by Xor0x
13 Aug
Card Image
Python

Getting geolocation by IP using ip2geotools.

Recently, I discovered an intriguing package, ip2geotools which provides the ability to obtain geolocation by IP from various databases. An …

Read More
by Xor0x
12 Aug
Card Image
Python

Unlocking Windows GUI Automation with Pywinauto: A Python Developer’s Guide

Introduction Automation is a powerful tool for enhancing productivity, and Python, with its vast ecosystem of libraries, is a go-to …

Read More
by Xor0x
11 Aug
Card Image
Python

Working with Object Attributes

Besides the usual way of accessing object attributes using dot notation, Python provides four special functions: getattr, setattr, delattr, and …

Read More
by Xor0x
10 Aug
Card Image
Windows

Bulk Crap Uninstaller - Bulk software removal

The program allows you to automatically remove a batch of different software at once. It also supports 'root' removal.

Read More
by Xor0x
10 Aug
Card Image
Windows

WO Mic - Phone as a microphone for PC

One of the best programs for turning your Android/iOS phone into a microphone for your PC. A great solution for …

Read More
by Xor0x
09 Aug
Card Image
Python

Using Type Annotations in Python

Python, a dynamically typed language, allows working with variables of various types. However, this flexibility can sometimes lead to errors …

Read More
by Xor0x
09 Aug
Card Image
Python

How to Run a Flask Project in IIS: A Step-by-Step Guide

In my work, I encountered the challenge of deploying a Flask project on Windows, but I was unsure how to …

Read More
by Xor0x
07 Aug
Card Image
Python

Developing Web Applications Using the Flask Framework in Python

lask is a microframework for Python designed to create web applications. It provides a basic set of tools and functions …

Read More
by Xor0x
07 Aug
Card Image
Python

Using Tortoise ORM for Database Operations in Python

Tortoise ORM is a modern and efficient tool for working with databases in Python, providing an asynchronous interface for data …

Read More
by Xor0x
06 Aug
Card Image
Python

Override decorator

The @override decorator is used to override methods in derived classes. It indicates that a method in the subclass overrides …

Read More
by Xor0x
  • 1
  • 2
  • 3

Built with Django, PostgreSQL, Redis, and Cloudinary

XKlondike - © Copyright 2025. All Rights Reserved.