好物分享
-
-
-
根据时间戳获取uuid
public getUuid(): string { let d = new Date().getTime(); if (window.performance && typeof window.performance.now === 'function') { …… -
django+bootstrap5+fileinput项目一些注意点
一.逻辑梳理 基于实际情况出发,要达到两点: 基于现有模板,进行OCR识别,拿到数据。(模板是PDF)将干净数据存储到excel中。 二.实现方式 django+bootstrap5…… -
golang数独问题
type Parser struct { Matrix [9][9]int Rows [9][9]bool Cols [9][9]bool Blocks [9][9]bool Stop bool } func (p *Parser) Init(matri…… -
Matlab学习——基本操作与矩阵输入
一、基础操作 1. 清除MATLAB里面的valuable clear valuable名字 2. MATLAB里面的keyword pi —— 圆周率π Inf —— ∞ NaN —— not a number eps —— 2.2204e-016(无…… -
Leon_数据挖掘-工具箱
前言 ----是使用Python实现的一些常见数据挖掘建模; ----对相关的必要的基础代码进行收集与改写后,可作为之后相关的数据工作的baseline; ----在Python 上跑…… -
源码分析——集合篇Collections.singleton(keys)
Collections.singleton(keys) public static Set singleton(T o) { return new Collections.SingletonSet(o); } SingletonSet(E e…… -
-
Linux(locate,find + grep)
find find /home -name 1.txt #在home目录下查找1.txt find /home -name 1.txt | more #可以更方便的显示,而不是全部显示不宜于操作 find /home -size +……

