2020年5月27日

摘要: sqlite3 test.dbcreate table tb_test_self_type(int_type integer primary key, real_type real, text_type text);insert into tb_test_self_type values(1,3.1 阅读全文
posted @ 2020-05-27 22:17 阮減显 阅读(110) 评论(0) 推荐(0) 编辑

2020年4月19日

摘要: github用户名 mygituser001github用户邮箱 myemailuser001@gmail.com.com 命令行生成ssh-keygen -t rsa -b 4096 -C "myemailuser001@gmail.com.com"打开生成的pub文件内容类似ssh-rsa AA 阅读全文
posted @ 2020-04-19 13:46 阮減显 阅读(421) 评论(0) 推荐(0) 编辑

2020年4月13日

摘要: 新建项目balabala左下角窗口右键-->导入-->选择文件确定-->选择素材拖入 本窗口右下角的 “新建项”图标 <拼接>中间的工具栏选择刀片,即可拆分视频 <尺寸>文件-->新建-->序列-->设置标签-->编辑模式自定义-->输入画面尺寸后ok-->将素材拖入右下角的序列窗口-->左下角窗口 阅读全文
posted @ 2020-04-13 19:07 阮減显 阅读(326) 评论(0) 推荐(0) 编辑

2019年6月2日

摘要: user1 01 spread code 0101 扩频码 XOR 01011010 异或 voltage +1 -1 +1 -1 -1 +1 -1 +1 转为电压0 => +1 1 => -1 user2 10 spread code 0011 XOR 11000011 voltage -1 -1 +1 +1 +1 +1 -1 -1 user3 11 sprea... 阅读全文
posted @ 2019-06-02 22:25 阮減显 阅读(153) 评论(0) 推荐(0) 编辑

2019年5月26日

摘要: #cd /usr/lib/systemd/system/xxx.service [Unit]Description=mysql#Wants=依赖起他unit,弱依赖,如果是Requires,强依赖#放在该服务启动后启动,如果是Before,则是之前After=network-online.targe 阅读全文
posted @ 2019-05-26 18:34 阮減显 阅读(247) 评论(0) 推荐(0) 编辑
摘要: C:\Users\liudong\.sshconfig文件##################host github.comhostname github.comuser gitidentityfile ~/.ssh/liudong ################生成指纹文件,并将该指纹文件放在C 阅读全文
posted @ 2019-05-26 16:42 阮減显 阅读(114) 评论(0) 推荐(0) 编辑

2019年4月22日

摘要: @echo off setlocal enabledelayedexpansion set /a num=000 rm ./*.txt rem 排序/o:? -代表逆序 rem n按名称的字母顺序 rem e按扩展名的字母顺序 rem d按日期和时间,最早的优先 rem s按大小,最小的优先 rem g在文件之前分组的目录 for /f "tokens=* delims=" %%i in ('... 阅读全文
posted @ 2019-04-22 22:27 阮減显 阅读(165) 评论(0) 推荐(0) 编辑

2019年2月20日

摘要: Failed requests: 537 (Connect: 0, Receive: 3, Length: 268, Exceptions: 266) Receive:当客户端connect成功后,并且服务端成功accept,并且没有开始recv,然后服务端close掉socket,就产生这个错误( 阅读全文
posted @ 2019-02-20 16:45 阮減显 阅读(229) 评论(0) 推荐(0) 编辑

2019年2月13日

摘要: groupadd dba groupadd oinstall useradd -g oinstall -G dba oracle passwd oracle mkdir -p /home/oracle/network/admin chown -R oracle:oinstall /home/oracle chmod -R 755 /home/oracle root用户下 xhost + su ... 阅读全文
posted @ 2019-02-13 09:03 阮減显 阅读(76) 评论(0) 推荐(0) 编辑

2019年1月10日

摘要: char* mstrncpy(char *dest, const char *src, size_t n){ size_t i; size_t j=n-1; for (i = 0 ; i < j && src[i] != '\0' ; i++) dest[i] = src[i]; dest[i] = '\0'; return de... 阅读全文
posted @ 2019-01-10 14:49 阮減显 阅读(134) 评论(0) 推荐(0) 编辑

导航