yamako

django

Customize Django Admin: record name, order, search box and editable field

A central feature of Django is the Admin Panel.In this article, I will describe how to customize the Admin Panel and mak...
django

Django: How to Route Multiple Apps in 1 project

Folder structureWhen routing Django's website, always needs to be aware of the location of the templates you have placed...
django

AbstractBaseUser is Flexible and Not So Complicated

Define AbstractBaseUser before first migrationBefore you migrate for the first time, I recommend that you consider which...
PHP

Basics to Practice of PHP in A Week -3

We'll cover #9 to #10#1 to #6 is HERE: Basics to Practice of PHP in A Week -1#7 & #8 is HERE: Basics to Practice of PHP ...
PHP

Basics to Practice of PHP in A Week -2

We Cover #7 and #8 todayFor #1 to # 6, please visit: Basics to Practice of PHP in A Week -1What is PHPEnvironment SetupB...
PHP

Basics to Practice of PHP in A Week -1

We Cover #1 to #6 todayWhat is PHPEnvironment SetupBasic Structure of the ProgramExecution MethodVariablesData typesArra...
python

Typing Game using pygame

Display the Typing Game boardThe first step is to learn the basics of pygame.import pygame as pgimport syspg.init()BOARD...
python

Pillow, OpenCV for watermarking an image

I learned two ways to watermark an image in pythonWatermarking with PIllowWatermarking with OpenCV Watermarking with PIl...
Flask

Authentication with Flask

Search for Authentication with Flask and refer to blogs and videos to implement registration, login, and logout function...