Two ways to create timed tasks under ubuntu and solutions to common problems

The goal of creating a timed task is to get rid of human-made repetitive running of the program. 0. First check whether you install crontab with the following instructions. crontab -l If it does, the following instructions appear LC_CTYPE="zh_CN.utf-8" # Edit this file to introduce tasks to be run by cron. # # Each task to run h ...

Posted by cesar_ser on Thu, 22 Aug 2019 01:44:51 -0700

NLP Course - Notes-01

Article Directory Lesson-01 Pre-class TIPS AI Paradigm Graph 1.Rule Based Model Task Requirements: ==STEP1:== ==STEP2==: ==STEP3==: ==STEP4==: ==STEP5==: ==STEP6==: 2.Probability Based Language Model Task Requirements: ==PRE:== ==STEP1:== ==STEP2:== ==STEP3:== ==STEP4:== ==STEP5:== ==STEP6:== P ...

Posted by Dan_Mason on Thu, 01 Aug 2019 18:29:17 -0700

[Python] wxPython Edit Box Component Learning Summary (Original)

1. Summary 1. Constructions of four common edit boxes 1. Normal Edit Box        Simple edit box with one-line input (? For the object in the box, the same below)       self.textBox = wx.TextCtrl(parent = ?) 2. Password edit box        Asterisk masks the password box of the input character       self.textBox = wx.TextCtrl ...

Posted by EXiT on Sat, 01 Jun 2019 10:19:21 -0700

less Learning Notes 3 - Language Extension

I really don't know how to explain this part of extend. No wonder there is no translation in this part of less. Looking at a part of it, I feel like I can't get down to it. In many places, I feel that it's against each other and I can't explain clearly. So all the extends used in this article are in English. In the third reading, I suddenly fou ...

Posted by n8w on Mon, 27 May 2019 13:17:40 -0700

Essence and usage of asterisks in Python

Translator: Python Developer - Yiting, English: Trey Hunner http://blog.jobbole.com/114655/ Python Developer   There are many places to see * and ** in Python. In some cases, both operators can be a bit mysterious for novice programmers or for people migrating from many other programming languages that do not have exactly the same ope ...

Posted by helpmeplease1234 on Sun, 12 May 2019 01:49:06 -0700

JS Common Regular Expression Memo

Summary: Play with regular expressions. Original: JS Common Regular Expression Memo Author: Front end wit Fundebug Copyright shall be owned by the original author when authorized to reproduce. Below the parts of a regular expression or "regex" used to match strings is my memo for creating regular expressions. Matching Regular Usin ...

Posted by bigfunkychief on Sat, 04 May 2019 21:40:39 -0700

Skills for configuring lightweight Alpine Linux versions

Alpine Linux is a lightweight Linux distribution that focuses on security applications. The latest version is Alpine Linux 3.8.0 with a Linux 4.14 kernel.Alpine Linux uses musl libc and busybox to reduce system volume and runtime resource consumption, and it also provides a unique package management tool, apk. Alpine Linux has b ...

Posted by Jewbilee on Sat, 27 Apr 2019 23:20:37 -0700

Blue Bridge Cup

Title Description Problem description As shown in the figure below, some integers are filled in the grid of 3x 3. +–*–+–+ |10* 1|52| +–**–+ |20|30* 1| *–+ | 1| 2| 3| +–+–+–+ We cut along the asterisk line in the figure to get two parts, each of which has a sum of 60 digits. The requirement of this question is that you program to de ...

Posted by Pyro on Sun, 14 Apr 2019 19:15:32 -0700

npm script command learning notes

What is npm script? In the package.json file, script commands defined using scripts fields { // ... "scripts": { "build": "node build.js" } } How to execute npm scripts? $ npm run build # Equivalent to implementation $ node build.js Do you know any npm scripts? #View all npm script commands for the current project #(Actually, you can ...

Posted by GameMusic on Sun, 14 Apr 2019 12:45:32 -0700

Write maintainable javascript>> note 2 (notes)

Annotations are the most common part of code. They are another form of document that programmers are willing to spend their time writing at last. However, for the overall maintainability of code, annotations are a very important part. Opening a file without any annotations is like a fun adventure, but if you have limited time, the task becomes ...

Posted by kokomo310 on Tue, 08 Jan 2019 09:39:09 -0800