
工具
文章平均质量分 61
师从小白
这个作者很懒,什么都没留下…
展开
-
service和systemctl以及supervisorctl
程序路径/usr/bin/supervisorctl和配置目录/etc/systemd/system/chkconfig <service> on/off 加入/禁止开机启动。service <service> start/stop 服务启动/停止。程序路径/sbin/service和配置目录/etc/init.d。原创 2023-03-28 10:49:43 · 348 阅读 · 0 评论 -
autohotkey
autohotkey script原创 2023-03-08 11:38:48 · 316 阅读 · 0 评论 -
docker基本使用
获取mac:https://download.docker.com/mac/static/stable/x86_64/操作原创 2022-04-17 16:44:36 · 701 阅读 · 0 评论 -
python
python安装和配置信息原创 2021-12-17 11:41:07 · 665 阅读 · 0 评论 -
curl和tcpdump以及wireshark
curl# -X 指定http方法( GET POST )curl -X POST "127.0.0.1:2021/interface"# -d 参数用于发送POST请求的数据体curl -d '{"test":1}' "127.0.0.1:2021/interface"tcpdumptcpdump src host 10.1.85.19 and src port 48565 and dst host 10.1.85.21 and dst port 5090 -i anytcp..原创 2021-10-25 11:24:33 · 592 阅读 · 0 评论 -
idea基本使用
配置服务maven安装(以mac和maven3.6.3为例)- 将解压的apache-maven-3.6.3放到/usr/local目录下- .bash_profile中把/usr/local/apache-maven-3.6.3/bin加入到PATH中- mvn -v- mvn help:system(默认会在用户目录下生成.m2文件夹)配置- co...原创 2020-04-11 19:08:20 · 503 阅读 · 0 评论 -
Android Studio基本使用
以android 3.5.2为例安装卸载说明 c/c++使用cmake构建,CMakeLists.txtcmake_minimum_required(VERSION 3.4.1)add_library(native-lib SHARED native-lib.cpp)find_library(log-lib log)target_link_libraries(n...原创 2020-01-17 10:51:18 · 1161 阅读 · 0 评论 -
xcode基本使用
xcode的基本使用原创 2019-04-28 11:56:20 · 3651 阅读 · 1 评论 -
codeblocks基本使用
使用项目右键属性Project settingsProject's dependencies设置项目依赖项Project's build options设置编译、链接参数、宏定义、运行脚本Selected compiler指定编译器Compiler settings> Compiler Flags 选择编译选项> ...原创 2019-04-28 11:56:16 · 2204 阅读 · 0 评论 -
Visual Studio自动生成
命令行基于cl(代码编译器)、rc(资源编译器)和link(链接器)后台软件的脚本编译工程Visual Studio 2013用法: cl [ 选项... ] 文件名... [ /link 链接选项... ]用法: rc [ 选项... ] .rc输入文件名// test.cpp#include <windows.h>int APIENTRY wWinMain...原创 2019-12-31 16:56:04 · 979 阅读 · 0 评论 -
Visual Studio基本使用
安装软件下载关联地址(老版本要求登录,新版本是在线安装)https://docs.microsoft.com/zh-cn/visualstudio/releasenotes/配置安装选项VS2008按下选项 > X64编译器和工具 - VS2008配置x64平台,即64位编译器,如下:默认安装根目录:VS2013:C:\Program Files (x86)\Mi...原创 2019-04-28 11:56:10 · 39143 阅读 · 1 评论 -
Visual Studio Code基本使用
切换显示语言快捷键【Ctrl+Shift+P】在弹出的搜索框中输入【configure language】,然后选择搜索出来的【Configure Display Language】选择zh-cn,没有就安装原创 2021-04-08 20:15:30 · 1552 阅读 · 0 评论 -
CMake基本语法
操作数* 类型分类BOOL STRING LIST转换推导* 具名 声明周期:set 声明,${具名},unset取消# 定义一个变量 判断是否定义用DEFINEDset(<变量名> <变量值>)# 引用一个变量${变量名}# 取消一个变量unset(<变量名>)内部变量: 系统环境变量 $ENV{<...原创 2019-07-09 19:09:22 · 3260 阅读 · 1 评论 -
CMake使用特点
cmake string list install file原创 2019-07-09 19:09:36 · 1807 阅读 · 0 评论 -
git服务器搭建
略原创 2019-04-28 11:53:14 · 124 阅读 · 0 评论 -
git忽略和模块
.gitignore说明:提交忽略规则文件位置项目各个目录 .git/info/exclude git config --global core.excludesfile ~/.gitignore优先级git检查忽略规则的时候有多个来源,它的优先级如下(由高到低):从命令行中读取可用的忽略规则; 当前目录定义的规则; 父级目录定义的规则,依次递推; $GIT_DIR...原创 2019-04-26 09:14:07 · 1227 阅读 · 0 评论 -
git基本使用
github打开git bash(右键菜单Git Bash Here)// 生成rsa公钥和私钥 - Enter到底 -C 后面是备注信息>> ssh-keygen -t rsa -C "your_email@youremail.com"/* . 找到C:\Users\[用户名]\.ssh目录下id_rsa和id_rsa.pub; . 用文本工具打开id...原创 2019-04-26 09:13:25 · 817 阅读 · 1 评论 -
git项目分享到github和gitee
分享条件安装git github账号 配置github账号到git分享步骤git初始化项目 git提交 github上新建仓库 git添加仓库地址 git合并 git推送代码 验证git初始化项目找到项目根目录,右键选择git bash here菜单,键入>> git initgit提交>> git add .>>...原创 2019-04-26 09:13:56 · 1156 阅读 · 0 评论 -
网站集合
seleniumhttp://selenium-release.storage.googleapis.com/index.htmlchromedriver:http://chromedriver.storage.googleapis.com/index.html阿里镜像http://npm.taobao.org/mirrors/chromedriver/开源软件镜像站清华大...原创 2019-12-12 11:07:19 · 204 阅读 · 0 评论 -
google构建工具gn 三子命令
常用命令# 生成ninja文件# gn gen [--check] [<ide options>] <out_dir>gn help gengn gen out/debuggn gen --ide=vs2013 --sln=test out/debug_testgn gen --ide=xcode --workspace=test out/de...原创 2019-04-28 11:55:57 · 2790 阅读 · 1 评论 -
google构建工具gn 二帮助
Commands (type "gn help <command>" for more help): analyze: Analyze which targets are affected by a list of files. args: Display or configure arguments declared by the build. check: Check ...原创 2019-04-28 11:55:52 · 1180 阅读 · 0 评论 -
google构建工具gn 一入门
gn工具下载gn文档帮助gn入门例子根目录下.gn文件,指定gn配置文件buildconfig = "//gnconfig/BUILDCONFIG.gn"根目录下gnconfig文件夹BUILDCONFIG.gn,指定工具链set_default_toolchain("//gnconfig/toolchain:gcc")cflags_cc = ...原创 2019-04-28 11:55:44 · 8275 阅读 · 3 评论 -
markdown文本文件语法
语法标题# 一级标题## 二级标题### 三级标题#### 四级标题##### 五级标题###### 六级标题####### 七级标题列表无序列表* 列表一* 列表二+ 列表一+ 列表二- 列表一- 列表二* 头\t* 次头有序列表1. 列表一2. 列表一3. 列表一区块引用> 一级引用>&g...原创 2019-04-17 15:13:20 · 482 阅读 · 0 评论 -
Unicode字符
dec oct hex ch - 转义 dec oct hex ch dec oct hex ch dec oct hex ch 0 0 00 NUL(空) 32 40 20 (空格) 64 100 40 ...原创 2019-02-21 09:37:11 · 3307 阅读 · 0 评论