
Django → Django - Tutorial 054. How to create a polymorphic system of dynamic widgets
The other day, I solved the problem of adding dynamic widgets on the site with the ability to add different types of widgets, as well as with the possibility of further unlimited expansion of the widget set by adding models …
Read
Qt → Building Docker from QtCreator
Docker, Qt, QtCreator, build, cmake
On your development machine, press Ctrl+R (Run) in QtCreator to create and run your Qt application. If you want to run an application on an embedded system, then you must complete four tasks:
• Create a Qt cross-application for the …
Read
Python 3 → How to Hide Firefox [selenium] in python
In this tutorial, we’ll learn how to Hide selenium firefox in python.
Code:
#headless option options.headless = True
Example:
Readfrom selenium import webdriver from selenium.webdriver.common.keys import Keys from selenium.webdriver.firefox.options import Options options = Options() options.headless = True driver = webdriver.Firefox(executable_path='/path/to/geckodriver', …

Django → Django - Tutorial 053. Adding Counters to Models in the Django Admin Panel
The other day, I started working on a content moderation application on the site and solved the problem of adding counters in the administrative panel.
It looks like this now
The task itself is trivial, but as it turned out …
Read
Qt → Introducing Qt Quick 3D Benchmarking App
Why a benchmark app?
With the upcoming release of Qt 5.15 and the improved version of Qt Quick 3D, the developers wanted to offer their customers and other users the ability to easily test the capabilities of their hardware. Thus …
Read
Django → Django - Tutorial 052. Redefining a User Model
Model, QuerySet, Python, django
There are various options for working with a user model for creating a user profile and adding some specific information, for example, a profile photo. One way is to add a profile model with the OneToOneField field for the user. …
Read

Django → Working with Django model ChoiceField
Today we going to explore how to work with model ChoiceField in Django.
To better understand, let's see the following examples.
Read#models.py #Django Models ChoiceField class Profile(models.Model): # Country Choices CHOICES = ( ('US', 'United States'), ('FR', 'France'), ('CN', 'China'), …

EVILEG → Refusal of advertising networks online EVILEG (Google Adsense, YAN Yandex, etc.)
So, perhaps the most joyful moment has come for many users of the EVILEG website. Namely, disabling advertising networks on the site.
Perhaps you would like to know the reasons for such an interesting behavior of the site owner, who, …

Qt → Qt Design Studio 1.5 Beta Released
Qt developers are happy to announce the beta version of Qt Design Studio 1.5
Qt Design Studio is a user interface design and development tool that allows designers and developers to rapidly prototype and develop complex user interfaces. Both designers …
Read
Python 3 → How to check list is empty in python
Hello guys, today we going to learn how to check if a list is empty
Read#empty list list_1 = [] #checking if list is empty by using len() if not llist_1: print('yes! the list is empty.') #output #yes! the list …
Career and business in IT field → Path to Programmers (C ++)
стать программистом с нуля, C++, Qt, карьера в IT
Hello. I am with you. I liked boxing and long-distance running, and I only thought about sports, but I trained as a sailor. I worked in aviation and became a C++ programmer at 29. I'll tell you how it happened. …
Read- Mikhael Bykov
- June 6, 2023, 7:15 a.m.
C++ - Test 001. The first program and data types
- Result:60points,
- Rating points-1
- Gulnur Kadyrbek
- June 2, 2023, 6:10 p.m.
C++ - Test 005. Structures and Classes
- Result:0points,
- Rating points-10


