start
-
在启动mysql时,执行service mysqld start报错,不能进入Mysql
在启动mysql时,执行service mysqld start报错,不能进入Mysql执行systemctl restart mysqld.service 成功进入!
-
PowerShell教程 – 异步处理(Asynchronous Processing)
更新记录转载请注明出处。2022年8月29日 发布。2022年8月29日 从笔记迁移到博客。 异步处理(Asynchronous Processing) 休眠(Sleep)指定时间…
-
Redis常用命令
字符串string 能够存储字符串、整数、浮点数3种类型的值。 基本命令 + get key //读取 + set key value // 写入 + del key // 删除 …
-
C/C++中利用汇编incbin来包含二进制文件
https://gist.github.com/mmozeiko/ed9655cf50341553d282 #include <stdio.h> #define S…
-
获取单个基因的fst信息
#!/bin/bash echo “par1 is gene,par2 is fst_file” #awk ‘{(if ($3==gene) print $0}’ $2>ge…
-
力扣——剑指 Offer 38. 字符串的排列(全排列)
题目描述 输入一个字符串,打印出该字符串中字符的所有排列。 你可以以任意顺序返回这个字符串数组,但里面不能有重复元素。 示例: 输入:s = “abc”…
-
linux split
linux split split 语法 // -a X 指定后缀名的长度,默认为2位 -a, –suffix-length=N generate suffixes of len…
-
API 应用程序编程接口 (Unity)
Unity 5.6.0f3 1,如何查看API Help ——> Unity Manual ——> Scripting Reference 模块化下载安装 2,…
-
python 多线程的使用
在开发etl的过程中,之前串行执行sql脚本速度有点慢,计划转换成并行,这里需要使用py的多线程模式核心在于py的 multiprocessing 模块,下面是我抄过来别人的代码:…
-
javascript实现前端sleep
一、定义 //第一种,使用while循环 function sleep(delay) { var start = (new Date()).getTime(); while((ne…