编程技术 第5页
JavaScript状态数据-拾光赋

JavaScript状态数据

JavaScript状态数据,最近需要做一个三维场景切换的功能,切换场景后,还可以进行二三维模式的切换,二三维切换时,要定位到当前场景视角,那么场景的视角参数信息就需要保存到状态数据中,以供...
Lee的头像-拾光赋Lee7个月前
0150
5分钟搞定vue3函数式弹窗-拾光赋

5分钟搞定vue3函数式弹窗

5分钟搞定vue3函数式弹窗,前言 最近接到一个需求,需要在一些敏感操作进行前要求输入账号和密码,然后将输入的账号和密码加到接口请求的header里面。如果每个页面都去手动导入弹窗组件,在点击...
Lee的头像-拾光赋Lee1年前
0110
Inspecting in-memory HSQLDB-拾光赋

Inspecting in-memory HSQLDB

Inspecting in-memory HSQLDB,Sometimes, for automatic testing of your Java application, you need to configure a DB connection. Most of the time the decision is to go for an in-memor...
kity的头像-拾光赋kity4年前
0435
C# 开发的环境监测上位机应用-拾光赋

C# 开发的环境监测上位机应用

C# 开发的环境监测上位机应用,前言 在工业和科研领域,环境监测系统的重要性日益凸显。上位机软件作为环境监测系统的关键组成部分,负责数据采集、处理和显示,对提高监测效率和准确性起着至关...
Lee的头像-拾光赋Lee2个月前
0536
Machine Learning and Java: Let’s pick the best library-拾光赋

Machine Learning and Java: Let’s pick the best library

Machine Learning and Java: Let’s pick the best library,We all know Java for it’s amazing compatibility with all Operating systems and overall stability. It’s a fantastic languag...
我的Office Outlook插件开发之旅(二)-拾光赋

我的Office Outlook插件开发之旅(二)

我的Office Outlook插件开发之旅(二),下面将完成的展示,使用MAPI接口操作Outlook完成通讯录更新。 using Microsoft.Office.Interop.Outlook; using Microsoft.VisualBasic; using System; us...
Lee的头像-拾光赋Lee7个月前
0458
【scikit-learn基础】--『监督学习』之 支持向量机分类-拾光赋

【scikit-learn基础】–『监督学习』之 支持向量机分类

【scikit-learn基础】--『监督学习』之 支持向量机分类,支持向量机也是一种既可以处理分类问题,也可以处理回归问题的算法。关于支持向量机在回归问题上的应用,请参考:TODO 支持向量机分类广...
Lee的头像-拾光赋Lee1年前
0170
Checkstyle-拾光赋

Checkstyle

Checkstyle, Java Developer Toolbox (3 Part Series) 1 Introduction 2 ArchUnit 3 Checkstyle Hello there! This is the second tool I encountered in my search journey and it looks like ...
Criando várias threads em Java-拾光赋

Criando várias threads em Java

Criando várias threads em Java,Conceito: É possível criar múltiplas threads em um programa Java. Cada thread é uma instância independente de execução que compartilha os rec...
kity的头像-拾光赋kity2个月前
02312
Dependency Hell-拾光赋

Dependency Hell

Dependency Hell, Traditional Best Practices It is typically accepted that any code that is needed in more than one place should be abstracted away somewhere. Classes with repeated ...
Python安装及包管理-拾光赋

Python安装及包管理

Python安装及包管理,本文将主要就Windows操作系统和Linux操作系统中python的安装以及包管理相关操作进行说明。 Windows操作系统的Python安装 Python安装 安装纯Python是个人相对来说更推荐的方...
Lee的头像-拾光赋Lee7个月前
080
十行python代码实现文件去重,去除重复文件的脚本-拾光赋

十行python代码实现文件去重,去除重复文件的脚本

十行python代码实现文件去重,去除重复文件的脚本,1.导入依赖 '''导入依赖''' from pathlib import Path import filecmp 2.函数说明 filecmp.cmp(path1, path2, shallow=True) path1/path2:待...
Lee的头像-拾光赋Lee1年前
060