在rstudio-server中使用R包的不同版本 2022-12-29 字数统计: 1.1k | 阅读时长≈ 4 分钟 阅读更多... conda使用教程 2022-12-29 字数统计: 1.7k | 阅读时长≈ 7 分钟 阅读更多... conda的安装和卸载 2022-12-29 字数统计: 730 | 阅读时长≈ 3 分钟 阅读更多... 用户和用户组 2022-12-29 字数统计: 709 | 阅读时长≈ 2 分钟 阅读更多... 搭建博客小技巧 2022-12-29 字数统计: 189 | 阅读时长≈ 1 分钟 插入视频视频插件hexo-tag-aplayer 使用方法12345678COPY# 插入网络视频{% dplayer "url=https://cdn.jsdelivr.net/gh/Shen-Yu/cdn/mp4/mp4_demo.mp4" %}# 插入acfun 视频<iframe src="https://www.acfun.cn/player/ac12945786" style="width:100%;height:500px;min-width:375px;min-height:200px" id="ACPlayer-re" scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true"></iframe># 插入 B 站视频<iframe src="//player.bilibili.com/player.html?aid=606228531&bvid=BV1y84y1t7Y9&cid=922973653&page=1" style="width:100%;height:500px;min-width:375px;min-height:200px"scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true"> </iframe> 阅读更多... bash练习 2022-12-29 字数统计: 3k | 阅读时长≈ 17 分钟 适用于 ubuntu 20.04ubuntu 20.04 是 “西柚云” 主要使用的操作系统 西柚云官网 1.统计文件的行数12345678910111213141516171819COPY# 方法 1wc -l nowcoder.txt | awk '{print $1}'# 方法 2-1cat nowcoder.txt | wc -l# 方法 2-2wc -l < nowcoder.txt# 方法 3-1cat -n nowcoder.txt | awk '{print $1}' | tail -n 1# 方法 3-2cat -n nowcoder.txt | tail -n 1 | awk '{print $1}'# 方法 4i=0while read p; do i=$((i + 1))done < nowcoder.txtecho $i 阅读更多...
搭建博客小技巧 2022-12-29 字数统计: 189 | 阅读时长≈ 1 分钟 插入视频视频插件hexo-tag-aplayer 使用方法12345678COPY# 插入网络视频{% dplayer "url=https://cdn.jsdelivr.net/gh/Shen-Yu/cdn/mp4/mp4_demo.mp4" %}# 插入acfun 视频<iframe src="https://www.acfun.cn/player/ac12945786" style="width:100%;height:500px;min-width:375px;min-height:200px" id="ACPlayer-re" scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true"></iframe># 插入 B 站视频<iframe src="//player.bilibili.com/player.html?aid=606228531&bvid=BV1y84y1t7Y9&cid=922973653&page=1" style="width:100%;height:500px;min-width:375px;min-height:200px"scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true"> </iframe> 阅读更多...
bash练习 2022-12-29 字数统计: 3k | 阅读时长≈ 17 分钟 适用于 ubuntu 20.04ubuntu 20.04 是 “西柚云” 主要使用的操作系统 西柚云官网 1.统计文件的行数12345678910111213141516171819COPY# 方法 1wc -l nowcoder.txt | awk '{print $1}'# 方法 2-1cat nowcoder.txt | wc -l# 方法 2-2wc -l < nowcoder.txt# 方法 3-1cat -n nowcoder.txt | awk '{print $1}' | tail -n 1# 方法 3-2cat -n nowcoder.txt | tail -n 1 | awk '{print $1}'# 方法 4i=0while read p; do i=$((i + 1))done < nowcoder.txtecho $i 阅读更多...