Python code todo comments, folder naming conventions, and bit operation principles

Table of Contents Summary and supplement of day08 knowledge points 1. Knowledge summary 1.1 Name 1.2 Notes 1.3 todo 1.4 Conditional nesting 1.5 Simple logic is dealt with first 1.6 Loop 1.7 Variables and values 2. Knowledge supplement 2.1 pass 2.2 is comparison 2.3 Bit operations 3. Stage summary (mind map version) Summary and supplement […]

ToDoList based on Vue

The Vue-based ToDoList project is a common exercise project used to learn the basic concepts and practices of Vue.js. Here is a summary of the project: 1. **Project Goal**: The main goal of the ToDoList project is to create a simple web application that allows users to list to-do items and add, delete, and mark […]

Implement a todoList that can directly manipulate data (move up, move down, top, bottom)

Demo HTML part <!DOCTYPE html> <html> <head> <title>Table example</title> </head> <body> <table border=”1″> <thead> <tr> <th>Update time</th> <th>Operation</th> </tr> </thead> <tbody id=”tableBody”> <!– Here are dummy data rows, you can add more as needed –> <tr> <td>2023-10-13 10:00 —- PM</td> <td> <button onclick=”moveUp(this)”>Move Up</button> <button onclick=”moveDown(this)”>Move down</button> <button onclick=”moveToTop(this)”>Pick to top</button> <button onclick=”moveToBottom(this)”>Move to bottom</button> […]

Vue(8): TodoList case 1.0

1. Idea analysis 1. Requirements: (1) Enter text in the input box to add agency options. (2) Completed options can be checked. (3) Completed options can be deleted. (4) All interactions can be selected at the bottom to display the total number of completed events. (5) All completed tasks can be cleared in the lower […]

JavaScript jQuery ToDoList

Code implementation: ToDoList.html (copy and save as html file, open to see the effect): <!DOCTYPE html> <html> <head> <meta http-equiv=”Content-Type” content=”text/html; charset=utf-8″ /> <meta name=”viewport” content=”width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no” /> <title>ToDoList-the simplest to-do list</title> <link rel=”stylesheet” href=”https://blog-static.cnblogs.com/files/jacklzx/ToDoList.css”> <script src=”//i2.wp.com/blog-static.cnblogs.com/files/jacklzx/jquery.min.js”></script> <script src=”//i2.wp.com/blog-static.cnblogs.com/files/jacklzx/ToDoList.js”></script> </head> <body> <header> <section> <label for=”title”>ToDoList</label> <input type=”text” id=”title” name=”title” placeholder=”Please enter ToDo” required=”required” […]

Front-end song – Lesson 9 – About the original typescript implementation of todolist

Foreword I am a ballad. The best time to plant trees was ten years ago, followed by now. Today, I will continue to bring you an explanation of original typescript. Environment configuration npm init -y yarn add vite -D Modify page.json configuration port { “name”: “demo1”, “version”: “1.0.0”, “description”: “”, “main”: “index.js”, “scripts”: { “dev”: […]

Install AutoDockTools, AutoGrid and AutoDock on Linux system and implement molecular docking. Molecular docking software CentOs is suitable for Ubuntu system (detailed explanation)

linux system Centos7 | Ubuntu system installs the molecular docking software AutoDockTools and implements molecular docking 1. Install AutoDockTools (MGLTools) on Linux Follow the steps below to install AutoDockTools (MGLTools) Download the installation package, link (https://ccsb.scripps.edu/mgltools/downloads/), my Linux system is 64-bit, download the red mark, copy it to the Linux target folder (it is recommended […]

AutoDock Vina Multiple Ligand Docking (Simultaneous Multiple Ligand Docking)

1. Introduction to multi-ligand molecular docking Simultaneous Multiple Ligand Docking (SMLD) or Multiple Ligand Simultaneous Docking (MLSD) is a molecular docking technology used to dock multiple ligands (small molecule drug candidates) to a protein molecule simultaneously. binding site. Unlike traditional molecular docking techniques, traditional methods usually only consider the interaction between one ligand and one […]

Kotlin+MVVM build todo App application

Author: Yike Project introduction Todo app implemented using Kotlin + MVVM, the functional interface refers to Microsoft’s Todo software (only core functions are implemented, and some functions are not implemented). Function module introduction Project module: add/delete projects, the project is responsible for managing todo tasks Task module: add/delete tasks, mark task completion, mark tasks as […]

AutoDock Vina docking calculation (large batch)

AutoDock Vina 1.2.0 docking calculation (large batch) Example applications of AutoDockVina 1.2.0: A) docking of multiple ligands (PDB 5×72); B) docking with water molecules using the hydration docking protocol of AutoDock4 (PDB 4ykq); C) using the AutoDock4Zn force field in the presence of zinc ( PDB 1s63); D) Flexible macrocycles. 1. AutoDock Vina 1.2.0 Introduction […]