用惯Windows系统再用Mac大多数人总是少不了的按错键盘…习惯性的按着fn+c去复制等等。远程桌面更是一个大问题,使用appstore里面的软件的话,更是几十块甚至上百块让人心疼,今天就给大家带来这个Mac里面的一款远程桌面,话不多说,下载地址:http://www.pc6.com/mac/11 ...
分类:
移动开发 时间:
2021-04-26 13:37:39
阅读次数:
0
1.json对象 JSON.parseObject(jsonObject.get("data").toString(), SettlementList.class); 2.json数组 List<DoctorAdviceRecords> doctorAdviceRecords = JSON.pars ...
分类:
数据库 时间:
2021-04-26 13:34:24
阅读次数:
0
将设备连接网线, 登录路由器,查看设备IP 打开Xshell进行连接 用户名:root 密码:fa 连接成功 执行 apt-get install xrdp apt-get install vnc4server tightvncserver reboot 启动xrdp #/etc/init.d/xr ...
分类:
其他好文 时间:
2021-04-22 16:12:52
阅读次数:
0
一、词频统计: 读文本文件生成RDD lines lines=sc.textFile("file:///usr/local/spark/mycode/rdd/word.txt") lines.foreach(print) 将一行一行的文本分割成单词 words flatmap() words=lin ...
分类:
其他好文 时间:
2021-04-20 14:04:55
阅读次数:
0
一、代码展示 <template> ... <div class="loading-animation-box" > <img class="loading-animation" width="26" height="28" src="../../../static/images/balabla.p ...
分类:
Web程序 时间:
2021-04-14 12:20:55
阅读次数:
0
打开vi /etc/selinux/config, 设置 SELINUX=disabled yum grouplist yum groupinstall "GNOME Desktop" "Graphical Administration Tools" 安装epel库 yum -y install e ...
我以前和你一样也是个vectorer,直到我膝盖中了一TLE. Invitation Cards 这道题目,8s的时限,1e6的数据,只不过是跑了两边DIjkstra,vector超时,而向前星只需要2s. 同样是邻接表存图,链式向前星虽然没有vector那么简洁,但是速度会有明显提升,并且许多操作 ...
分类:
其他好文 时间:
2021-04-08 14:03:54
阅读次数:
0
mAP https://jonathan-hui.medium.com/map-mean-average-precision-for-object-detection-45c121a31173 SVM https://towardsdatascience.com/https-medium-com-p ...
分类:
其他好文 时间:
2021-04-08 14:01:18
阅读次数:
0
·html hyper text markup language 超文本标记语言,一种描述性语言。 //结构 ·css cascading style sheet 层叠样式表,控制网页外观。 //外观 ·javascript JS,嵌入到HTML页面中的脚本语言,由浏览器便解释边执行。//行为 ·其 ...
分类:
其他好文 时间:
2021-04-07 10:42:19
阅读次数:
0
一、词频统计: 1.读文本文件生成RDD lines 2.将一行一行的文本分割成单词 words flatmap() 3.全部转换为小写 lower() 4.去掉长度小于3的单词 filter() 5.去掉停用词 6.转换成键值对 map() 7.统计词频 reduceByKey() 二、学生课程分 ...
分类:
其他好文 时间:
2021-04-06 15:15:03
阅读次数:
0