01 2019 档案

Java 中12个原子操作类
摘要:从JDK1.5 开始提供了 java.util.concurrent.atomic 包,该包提供了一种用法简单、性能高效、线程安全的更新一个变量的方法 原子更新基本类型类 AtomicBoolean:原子更新布尔类型 AtomivInteger:原子更新整型 AtomicLong:原子更新长整型 原 阅读全文

posted @ 2019-01-31 01:25 0820LL 阅读(229) 评论(0) 推荐(0) 编辑

Java中的4个并发工具类 CountDownLatch CyclicBarrier Semaphore Exchanger
摘要:在 java.util.concurrent 包中提供了 4 个有用的并发工具类 CountDownLatch 允许一个或多个线程等待其他线程完成操作,课题点 Thread 类的 join() 方法 CyclicBarrier 可以用于多线程计算数据,最后合并计算结果的场景 Semaphore 用来 阅读全文

posted @ 2019-01-31 01:05 0820LL 阅读(265) 评论(0) 推荐(0) 编辑

python 数据可视化 -- 清理异常值
摘要:中位数绝对偏差(Median Absolute Deviation, MAD)用来描述单变量(包含一个变量)样本在定量数据中可变性的一种标准。常用来度量统计分布,因为它会落在一组稳健的统计数据中,因此对异常值有抵抗能力。 阅读全文

posted @ 2019-01-30 17:31 0820LL 阅读(573) 评论(0) 推荐(0) 编辑

Eclipse 中打开 python 交互窗口
摘要: 阅读全文

posted @ 2019-01-29 17:04 0820LL 阅读(532) 评论(0) 推荐(0) 编辑

SQLite 安装
摘要:Windows 平台安装 下载地址:https://www.sqlite.org/download.html 下载预编译的安装包 将下载的安装包=解压到一个文件夹,有三个重要文件: sqlite3.exe sqlite3.dll sqlite3.def 然后将该路劲添加环境变量中 测试,在命令行输入 阅读全文

posted @ 2019-01-29 16:30 0820LL 阅读(171) 评论(0) 推荐(0) 编辑

python requests 模块
摘要:requests 是第三方 python 库,用于处理 url 资源 requests 项目官网:http://www.python-requests.org/en/master/ 安装方式:pip install requests 如果遇到权限问题,使用管理员账户运行 cmd 阅读全文

posted @ 2019-01-29 14:03 0820LL 阅读(146) 评论(0) 推荐(0) 编辑

python 数据可视化 -- 读取数据
摘要:从 CSV 文件中读取数据(CSV) 读取 tab 分隔的文件(csv) 也可以通过传统的 split("\t") 来进行分隔 从 Excel 中读取数据 www.python-excel.org 项目提供的软件包可以方便 python 处理 excel 文件。 该项目提供的 package 有:o 阅读全文

posted @ 2019-01-28 16:22 0820LL 阅读(688) 评论(0) 推荐(0) 编辑

python 数据可视化(matplotlib)
摘要:matpotlib 官网 :https://matplotlib.org/index.html matplotlib 可视化示例:https://matplotlib.org/gallery/index.html matplotlib 教程:https://matplotlib.org/tutori 阅读全文

posted @ 2019-01-28 14:49 0820LL 阅读(2458) 评论(0) 推荐(0) 编辑

Eclipse Python 开发环境搭建 pydev 插件
摘要:已安装: python 3.6 JDK Eclispe 在 Eclipse 中安装 pydev Pydev 的下载网址 http://www.pydev.org/download.html 安装完成后重启 配置 python 解释器 安装 numpy scipy matpltlib 使用管理员权限打 阅读全文

posted @ 2019-01-25 21:22 0820LL 阅读(573) 评论(0) 推荐(0) 编辑

PyCharm 安装package matplotlib为例
摘要:File --> settings --> Project Interpreter --> 搜索 matplotlib 如果觉得官网下载的速度慢,可以添加阿里云的 repository(http://mirrors.aliyun.com/pypi/simple/) 阅读全文

posted @ 2019-01-25 16:02 0820LL 阅读(523) 评论(0) 推荐(0) 编辑

Julia 下载 安装 juno 开发环境搭建
摘要:Windows平台 Julia 的官网 (https://julialang.org) 下载链接(https://julialang.org/downloads) 下载完成后,如果想安装在 C 盘,则需要管理员的权限,进行安装 安装完成后,会在桌面生成快捷方式图标,双击即可进入 Julia 交互界面 阅读全文

posted @ 2019-01-24 13:19 0820LL 阅读(2478) 评论(0) 推荐(0) 编辑

进程 线程 协程
摘要:进程 Process 线程 Thread 协程 Coroutine 阅读全文

posted @ 2019-01-23 17:01 0820LL 阅读(102) 评论(0) 推荐(0) 编辑

Eclipse Golang 开发环境搭建 GoClipse 插件
摘要:Windows平台 下载完成后,直接双击安装即可 默认情况下,.msi文件会安装在 C:\Go 目录下。可以将 C:\Go\bin 目录添加到环境变量 PATH 中,方便调用命令。 Go 里面有两个非常重要的环境变量 GOROOT 和 GOPATH 。 GOROOT 是 安装 go 的路径;GOPA 阅读全文

posted @ 2019-01-21 10:45 0820LL 阅读(2846) 评论(0) 推荐(0) 编辑

TaxonKit - A cross-platform and Efficient NCBI Taxonomy Toolkit
摘要:https://github.com/0820LL/taxonkit Usage: https://bioinf.shenwei.me/taxonkit/usage/ 阅读全文

posted @ 2019-01-18 16:31 0820LL 阅读(309) 评论(0) 推荐(0) 编辑

tar: Removing leading `/' from member names
摘要:解决办法使用 -P 参数 注意 -f 参数后面跟压缩后的文件名 阅读全文

posted @ 2019-01-07 13:32 0820LL 阅读(141) 评论(0) 推荐(0) 编辑

Linux 只列出目录的方法
摘要:1. ls -d 2. find -type d -maxdepth 1 3. ls -F | grep "/$" 4. ls -l | grep "^d" 阅读全文

posted @ 2019-01-07 10:21 0820LL 阅读(862) 评论(0) 推荐(0) 编辑

unbuntu 安装 teamviewer
摘要:下载 teamviewer 安装包 使用 dpkg 安装 deb 安装包 使用 sudo apt-get install -f 解决依赖问题 阅读全文

posted @ 2019-01-03 11:13 0820LL 阅读(151) 评论(0) 推荐(0) 编辑

ubuntu 设置静态IP
摘要:首先查看网卡信息 enp0s31f6 是网卡 lo 不是网卡 设置静态IP 需要修改文件 /etc/network/interfaces 然后重启即可 阅读全文

posted @ 2019-01-03 10:39 0820LL 阅读(120) 评论(0) 推荐(0) 编辑

Spring 配置文件中 元素 属性 说明
摘要:<beans /> 元素 <bean /> 元素中的属性 <constructor-arg /> 元素 当被指定的方法是无参方法时,不需要使用该属性。 当被指定的方法有一个参数时,可以直接在 <constructor-arg /> 中嵌套一个 <value />元素或者 <ref />元素等,用来指 阅读全文

posted @ 2019-01-02 00:35 0820LL 阅读(391) 评论(0) 推荐(0) 编辑

导航

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

统计

点击右上角即可分享
微信分享提示