Docker introduction private notes build docker private warehouse VMware's open source warehouse Harbor

Two common image warehouses:Docker official warehouse registryVMware's open source warehouse harbor (built-in registry)harbor Address:https://github.com/goharbor/h...Download address:https://github.com/goharbor/h...harbor is started using docker compose by default. To install docker compose, use Python PIP:yum install python-pip perhaps yum in ...

Added by jnutter on Thu, 10 Mar 2022 13:25:20 +0200

C # call external exe (2021.4.15)

C # call external exe In the development process of C#Windows form application, for example, to make a large system and integrate the functions of many other applications, we can use the existing executable exe program to enrich and improve the system. 1. Call external exe (no parameters passed in) QQ.exe 1.1 call QQ by CMD Exe (no ...

Added by Dustin013 on Mon, 07 Mar 2022 17:07:13 +0200

Teach you how to realize pynq-z2 bar code recognition

I am xuetianyu, an FPGA enthusiast. My research direction is FPGA Architecture Exploration and SOC design. Focus on official account [integrated circuit design course], pull you into "IC design exchange group". 1. Preface It took nearly a week to realize a two-dimensional code recognition alone. In this article, I will introduce in ...

Added by nitram on Wed, 16 Feb 2022 09:22:09 +0200

python virtual environment

For Python development projects, using a virtual environment is the recommended best practice. By creating a virtual environment, you can isolate project tools and avoid version conflicts with other project tools. For example, you may be maintaining an old Web project that requires Django 1.2 Web framework, but then you will work on a new proje ...

Added by ironman32 on Tue, 01 Feb 2022 19:48:20 +0200

PyInstaller tutorial and using PyInstaller to package PySide6 program

1. Installation and use Use the following command to install pip install pyinstaller Basic commands: # Syntax: pyinstaller option source file pyinstaller -F main.py Common options: optioneffect-F,-onefileGenerate a single executable-D,--onedirGenerate a directory (containing multiple files) as an executable program-a,--asciiDoes not ...

Added by shibbi3 on Fri, 19 Nov 2021 14:54:46 +0200

Python Read and Write excel Part1

background There are many friends who are interested in Python handling excel, although I am not an expert in this field. Python is completely unfamiliar if you use C# openxl to do things in minutes or Npoi again.   target Since learning is the goal to accomplish this, it doesn't have to be complicated (neither can I do it), let's assume we ...

Added by ephmynus on Tue, 16 Jun 2020 03:21:27 +0300

Python foundation-15 module package library

15. Module package library 15.1 basic concepts                      . To solve this problem, we will split it and put similar functions in the same file. Each file contains relatively little code. In Python, a. py file is called a module The ...

Added by maest on Sun, 31 May 2020 16:39:12 +0300

Python easy map visualization (with detailed source code)

preface The text and pictures of this article are from the Internet, only for learning and communication, not for any commercial purpose. The copyright belongs to the original author. If you have any questions, please contact us in time for handling. Python has a lot of map visualization libraries. Although Matplotlib library is very power ...

Added by dannyluked on Thu, 21 May 2020 09:54:45 +0300

Python efficiency revolution processing Excel tables

Excel is a powerful spreadsheet application running in Windows environment. An Excel spreadsheet is called a workbook, and a workbook is saved in a file with the extension. xlsx. Each workbook can contain multiple tables (worksheets) the table currently viewed by the user (or the last table viewed before closing) is called the active table. ...

Added by saadatshah on Tue, 19 May 2020 10:10:42 +0300

python monitor, operate keyboard and mouse library pynput detailed tutorial

Section 0.0.0 preface Monitor, operate mouse and keyboard are shortcut to realize automation, such as me Automatic check in Analog keyboard operation is used. pynput is a cross platform third-party python library that monitors and controls mouse and keyboard. You can install it through pip insnall pynput. The dependent libraries are downloaded ...

Added by pvraja on Sun, 17 May 2020 09:07:55 +0300