- 博客(35)
- 收藏
- 关注
原创 Java Iterator 总结
1. 使用方法import java.util.Iterator;import java.util.ArrayList;import java.util.Iterator;public class RunoobTest {public static void main(String[] args) { // 创建集合 ArrayList<String> sites = new ArrayList<String>(); sites.add("Googl
2022-02-25 16:53:34 221
原创 Java知识点
1. 序列化SerializationDeserializationimport java.io.Serializable;implements Serializableimport java.io.Fileimport java.io.FileOutputStream;import java.io.ObjectOutputStream;oos = new ObjectOutputStream(new FileOutputStream(new File(“xxx.txt”)));oos
2022-02-25 12:01:28 135
原创 Java 序列化和反序列化总结
1.背景序列化:将对象写入到IO流中, serialization反序列化:从IO流中恢复对象, deserialization2.实现2.1 接口Serializablejava.io.Serializable系统自动存储必要的信息transient 关键字@Transient 注解2.2 接口Externalizablejava.io.Externalizable程序员决定存储哪些信息必须实现writeExternal和readExternal方法类似:publi
2022-02-24 11:24:28 158
原创 Java Scheduled注解
1. 功能介绍应用中的定时任务,SpringBoot的内置任务,一个注解可以开启定时任务。2.用法maven依赖 pom.xml 文件<dependencies> <dependency> <groupId> org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency>
2022-02-22 15:18:05 265
原创 Mysql 数学函数笔记
1. formatformat(x,y) 函数,功能是将一个数字x,保留y位小数,并且整数部分用逗号分隔千分位,小数部分进行四舍五入返回是字符串,使用需要注意2.absabs(); 求一个数的绝对值;absolute3.sqrtsqrt(); 求一个数的平方根。sqrt是sqruar(平方,矩形) ,root(根)的缩写4.modmod(x,y) x除数,y被除数。结束是余数。5.ceilceil() 进一取整6.floorfloor()舍一取整7.randrand()
2022-02-09 11:18:03 529
原创 Mysql count/avg/sum笔记
1. 背景在select中使用count,avg,sum等只返回一条记录count为统计行数avg为统计平均值sum统计和2.用法select count(column_name) from table_name;select avg(column_name) from table_name;select sum(column_name) from table_name;3.特殊用法当字段为NULL时,可使用ifnull函数select sum(ifnull(column_name,
2022-02-09 11:13:19 801
原创 Mysql distinct笔记
1.背景distinct是select语句中选择唯一的字段方式:select distinct columns_name from table_name;注意事项:distinct必须在select 字段中的第一个2.多列select distinct column1, column2 from table_name;表示选择column1和column2的组合去重。...
2022-02-09 11:00:01 531
原创 MSSQL数据库分析
1. 库管理1.1 登录数据库mssql-cli -S 100.1.1.1,1433 -U userName -P password1.2 查看数据库列表通过mssql-cli 工具查看\ld 查看数据库列表\ld xxx 查看包含xxx字符串的数据库select name from master…sysdatabases order by name通过DQL查看是否添加master均可select name from master…sysdatabases order
2022-01-26 10:20:11 495
原创 SQLServer数据库
1. 创建数据库use mastergoif exists(select * from sysdatabases where name='dscbase1')begin select '该数据库已存在' drop database dscbase1 --如果该数据库已经存在,那么就删除它endelsebegin create database dscbase1 on primary --表示属于 primary 文件组 (
2022-01-07 00:55:19 195
原创 Mysql的存储、视图、自定义函数分析
1. 存储过程mysql> delimiter // 定义//作为结束标记符号mysql> create procedure spinsertuserinfo( -> puserid int,pusername varchar(10),puserbirthday date) -> begin -> insert into myuserinfo values(puserid,pusername,puserbirthday); ->
2022-01-06 16:02:11 314
原创 深度学习相关入门资料
1. numpy参考资料https://www.runoob.com/numpy/numpy-binary-operators.html2.scipy参考资料https://www.runoob.com/scipy/scipy-tutorial.html3. matplotlibhttps://www.runoob.com/w3cnote/matplotlib-tutorial.html4. tensorflowhttp://c.biancheng.net/view/1881.html
2022-01-06 15:23:50 188
原创 python3 numpy学习
1.引用import numpy as np核心功能:任意同类项的数组对象数组上的快速数学运算线性代数、傅立叶变换、随机数生成2. 帮助获取方式1python3import numpyhelp(numpy)方式2from numpy import dochelp(doc)he following topics are available:basicsbroadcastingbyteswappingconstantscreationglossaryind
2021-12-30 13:48:47 697
原创 NLP相关技术名词
1. word2vec词嵌入的方法2.Embedding嵌入3.BERThttps://jalammar.github.io/illustrated-bert/Pre-training of Deep Bidirectional Transformers for Language Understanding官方代码和预训练模型Github: https://github.com/google-research/bert第三方代码https://blog.csdn.net/jiaowosh
2021-12-29 10:53:06 224
原创 MathCSS 数学公式
Mathjax公式教程https://blog.csdn.net/dabokele/article/details/79577072LATEX数学公式https://www.cnblogs.com/sddai/p/12046242.html让web前端支持Latex数学公式https://blog.csdn.net/winter2121/article/details/105576380样例https://www.cnblogs.com/mqingqing123/p/12711372.html
2021-12-28 19:35:00 195
原创 curl命令行 界面
1. 命令行界面curl wttr.in/beijingWeather report: beijing \ / Sunny .-. 42 °F― ( ) ― ↗ 4 mph `-’ 6 mi / \ 0.0 in ┌─────────────┐┌──────────────────────────────┬──────────
2021-12-28 14:58:51 162
原创 中文BERT模型学习
1. 开源中国基于Google BERT训练中文全词Mask,源数据5.4B,Google源数据才0.4Bhttps://www.oschina.net/p/chinese-bert2.Bert入门介绍https://blog.csdn.net/hwblittlebird/article/details/106138305
2021-12-28 11:30:33 288
原创 有道获取单词读音api
https://blog.csdn.net/humanking7/article/details/88630856为什么用有道的发音API?一方面,我是没去试几个;另一方面,有道的发音真不错(比微软的TTS标准好听多了)调用有道词典的在线发音库:美音:http://dict.youdao.com/dictvoice?type=0&audio=英音:http://dict.youdao.com/dictvoice?type=1&audio=api仅有两个参数,就是发音类型和单词,
2021-12-27 14:01:22 3202
原创 Python 机器学习编程
1.python时间import timetime.perf_countertime.timetime.process_timehttps://blog.csdn.net/qq_27283619/article/details/89280974
2021-12-27 11:41:56 196
原创 Python Collentions
collections是Python内建的一个集合模块,提供了许多有用的集合类。用namedtuple可定义一种数据类型,可以根据属性来引用.1.使用from collections import namedtuple// namedtuple(‘名称’, [属性list]):Response = namedtuple(‘Response’, [‘x’, ‘y’, ‘z’])a=Response(4,5,6)print(a)print(a.x)result:Response(x=4, y
2021-12-22 10:57:39 471
原创 python zmq分析
1.相关资料https://blog.csdn.net/kaikai136412162/article/details/873642572. 使用context = zmq.Context()
2021-12-22 10:54:42 477
原创 自然语言处理
1.自然语言处理基本入门https://www.cnblogs.com/loubin/p/13669279.html2. 文本处理流程https://www.cnblogs.com/loubin/p/13675909.htmlhttps://www.cnblogs.com/loubin/p/13680684.html常见分词工具:jieba分词,snowNLP,LTP,HanNLP常见分词算法:前向最大匹配算法、后向最大匹配算法、维特比算法3. 纠错算法https://www.cnblogs
2021-12-21 10:15:35 247
原创 Github配置
1.参考基础git命令https://zhuanlan.zhihu.com/p/1115488332.添加私钥http://t.zoukankan.com/wsq-qq-p-13279572.htmlhttps://blog.csdn.net/szw_yx/article/details/120841335
2021-12-17 21:24:34 78
原创 Tensorflow学习目录整理
1.tensorFlow教程该教程基础和实用https://developer.aliyun.com/article/69852?spm=a2c6h.14164896.0.0.57212fd4vuvg0R
2021-12-17 17:12:11 124
原创 产品价值和客户价值
1.平衡需求价值----分为 用户价值和产品价值成本和收益2.用户价值衡量解决客户什么问题,满足客户什么需求用户的这个需求是必须满足的3.产品价值衡量做这个需求给我带来什么价值不做这个需求给我带来什么损失...
2021-12-17 11:34:29 390
原创 磁盘和目录空间查看
df可以查看一级文件夹大小、使用比例、档案系统及其挂入点,但对文件却无能为力。du可以查看文件及文件夹的大小。df -h du -h -d 1
2019-05-12 10:54:55 240
原创 github配置ssh 访问
1. 生成公钥和私钥使用ssh-keygensteven$ ssh-keygen -t RSA -f github_rsasteven$ lsgithub_rsa github_rsa.pub生产了github_rsa和github_rsa.pub2. 拷贝pub内容到github上
2019-05-11 12:50:14 148
原创 Docker镜像相关操作
1. docker下载命令docker pull reg.docker.alibaba-inc.com/yundun-waf/ware-apsara@sha256:f8eb73163de7b13368acfc5f82aaddd04721502dcae6eddeb61cce13216ce2d92. docker修改名称docker tag 4ec1dfd78f5d reg.docke...
2018-09-11 10:16:11 187
原创 Centos增加路由
增加路由配置: route add -net 192.168.1.0/24 gw 192.168.2.247 dev eth2 删除路由配置 route del -net 192.168.1.0/24 gw 192.168.2.247 dev eth2 增加接口配置 ip addr add 192.168.1.100/24 dev eth2删除接口配置 ip addr del ...
2018-09-10 14:08:56 2502
原创 python 大数据基础编程
1. 随机数组 from numpy import * random.rand(4,4)输出array([[ 0.81273873, 0.93985098, 0.72256469, 0.83294612], [ 0.06087078, 0.85160009, 0.88331584, 0.8634025 ], [ 0.328648 , 0....
2018-09-09 20:42:31 1509
原创 grep使用
排除相应的字符tail -f /usr/loca/apache/logs/access.log | grep -v ‘songhaibin’
2018-09-09 18:07:49 130
原创 Python的环境基本配置
1. Python的环境基本配置1.1 查看版本查看当前python版本,在任意终端输入: python --version1.2 查看当前python位置 在任意终端输入:which python1.3 查看系统存在的所有python路径在任意终端输入:whereis python1.4 将特定的python版本加入系统路径PATH...
2018-09-09 17:59:57 715
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人