Python flask learning notes

Flask Foundation Flash overview What is the Web Framework Web Application Framework (Web Application Framework) or simple web framework (Web Framework) represents a collection of libraries and modules, enabling web application developers to write applications without worrying about low-level details such as protocols and thread manageme ...

Posted by Sherman on Tue, 08 Mar 2022 00:25:07 +0100

[rookie training] 714 The best time to buy and sell stocks includes handling charges

Title Description: Given an integer array prices, where the i-th element represents the stock price on the i-th day; The nonnegative integer fee represents the handling fee for trading stocks. You can complete transactions indefinitely, but you need to pay a handling fee for each transaction. If you have bought a stock, you can't continue to b ...

Posted by ruddyu78 on Tue, 08 Mar 2022 00:22:25 +0100

Network debugging assistant: Android APP integrates TCP, UDP, classic Bluetooth and low-power Bluetooth debugging demo

1. Preface I finally don't need to debug a hardware device and install an APP. If I download someone else's network debugging assistant in the APP store and have advertisements, I might as well write a relatively complete network debugging assistant directly. At present, the supported functions include tcp client and server, udp, low-power Blu ...

Posted by rowman on Tue, 08 Mar 2022 00:18:17 +0100

815 text classification example

Today is 815 tut7 Relevant contents of coursework part 2!!! Let's start with the code The first is the package introduced # -*- coding: utf-8 -*- """ Created on Mon Mar 7 19:01:54 2022 @author: Pamplemousse """ #Set picture size import matplotlib as mpl mpl.rcParams['figure.figsize'] = [9.0, 6.0] import nltk from sklearn.datasets import l ...

Posted by sniperscope on Tue, 08 Mar 2022 00:16:58 +0100

How to use icon gracefully in Vue project

Before we begin to understand how to standardize the use of icon in Vue projects, we need to understand some of the most basic knowledge points of icon - sprite technology. Sprite Technology Currently, SVG sprite's best practice is to use the symbol element. What is the symbol element? In simple translation, it means "symbol". Howev ...

Posted by Arrow on Tue, 08 Mar 2022 00:15:35 +0100

Temporal Convolutional Network (TCN)

Basic structure of TCN The time-domain convolution data proposed by temporal. Network in 2018 can be seen in detail paper. 1. Causal Convolution Causal convolution is shown in the figure above. For the value of t-Time of the upper layer, it only depends on the value of t-Time of the lower layer and its previous value. The difference from ...

Posted by devinemke on Tue, 08 Mar 2022 00:13:50 +0100

ArcGIS API for JavaScript learning -- MapView and SceneView (not finished)

MapView MapView displays a 2D view of the Map instance. You must create a MapView instance to render the Map (and its operation and base layers) in 2D. To render the Map and its layers in 3D, see the documentation for SceneView. To make the map visible to users in the DOM, you must create a MapView and reference at least two objects: a map in ...

Posted by jini01 on Tue, 08 Mar 2022 00:08:40 +0100

Vue3 study notes

Vue3 study notes setup = data + methods + computeds Report component: transfer its internal content to the target element Suspend component: load asynchronous component createApp(): create a new instance Do not use the arrow function on the option property or callback, because it does not have this, resulting in an error v-once: when the ...

Posted by foochuck on Tue, 08 Mar 2022 00:03:26 +0100

Unity_ Aircraft war games

preface This article mainly records the whole process of making Star Wars games. Sets the movement of the background First create two board planes, and then move the stars behind them. Notes: the original planet has a border. How to make the border disappear? – set transparency: in the Matrial setting: Move the background stars: It' ...

Posted by TitanKing on Mon, 07 Mar 2022 23:54:07 +0100

Redis learning notes

NoSQL getting started overview MySQL database application history The beautiful era of stand-alone MySQL In the 1990s, the number of visits to a website was generally small, which could be easily handled with a single database. At that time, there were more static pages and less dynamic interactive websites. DAL: abbreviation of databa ...

Posted by nrerup on Mon, 07 Mar 2022 23:52:20 +0100