
tools
Laney.W
风往北吹,雁南飞
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
图像标注相关记录
在网页上拖拽鼠标画一个矩形,并将该矩形的坐标打包成json格式传递。 参考下面链接中提供的jquery图片标注插件imageLabel: https://github.com/codingdogs/imageLabel http://www.jq22.com/jquery-info18745 https://www.lanrenzhijia.com/jquery/5204.html ...转载 2019-03-05 16:43:48 · 253 阅读 · 0 评论 -
git的使用
首先在github上创建仓库,创建成功后可以看到仓库地址。 git config --global user.name "Your Real Name" git config --global user.email you@email.address //first commit git init //把这个目录变成Git可以管理的仓库 git add README.md //文件添加...原创 2019-04-25 22:52:58 · 139 阅读 · 0 评论 -
linux服务器上传及下载文件
//upload scp filename username@ip:destination_dir //download scp username@ip:filename destination_dir原创 2019-04-26 17:09:47 · 1624 阅读 · 0 评论