
tools
libra0
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Markdown 快速索引
Markdown 快速索引#表示标题语法,有多少个#就表明标题多少级。1级最大,6级最小。同时,HTML语法规则也可以直接引用而无需区别是否符合Markdown语法。因为Markdown兼容HTML。 例:©可以用来表示 ©; 用>表示类似email 的段落区块。列表排序: 无序列表用 * + - 这三原创 2017-09-07 17:27:02 · 2057 阅读 · 0 评论 -
#python项目小谈
python项目小谈项目结构. ├── docs │ ├── conf.py │ ├── index.rst │ └── quickstart.rst ├── foobar │ ├── cli.py │ ├── __init__.py │ ├── storage.py │ └── tests │ ├── __init__.py │ ├── test原创 2017-12-10 23:16:13 · 276 阅读 · 0 评论 -
#make及makefile
make及makefilemake命令简介:要使用make,首先需要写一个makefile文件. 描述了软件包中各文件的关系,提供更新每个文件的命令。 如:gcc module1.o module2.o -o exel 可以这样写Makefile文件:exel:module1.o module2.o gcc module1.o module2.o -o exel 复杂化为:module1.原创 2017-12-10 23:32:52 · 193 阅读 · 0 评论 -
git笔记
git笔记如果从来没有git的使用经验,请参照廖雪峰的教程在这里我仅仅将常用的几个命令记录下来,形成一个完整的流程,实现较好的复习和巩固。git init echo "First always goes as a readme file" > readme.md git add readme.md git commit -m "create a readme file" git remote add原创 2017-12-10 23:34:02 · 196 阅读 · 0 评论 -
#ubuntu上OpenCv安装及范例
ubuntu上OpenCv安装及范例Talk is cheap. Show you the code!#!/bin/bash # author: Cheng sudo apt-get update sudo apt-get upgrade sudo apt-get install build-essential cmake git pkg-config #开发包 sudo apt-get in原创 2017-12-10 23:14:58 · 254 阅读 · 0 评论 -
imagemagick整理
文章目录ubuntu安装 ubuntu安装 Ubuntu上默认使用IM6,使用convert而非magick。 更新使用到IM7,请看 https://www.tecmint.com/install-imagemagick-on-debian-ubuntu/ 代码如下: 2021 sudo apt update 2023 sudo apt-get install build-essenti...原创 2019-03-25 17:13:48 · 393 阅读 · 0 评论 -
文档的管理方式
文档的管理方式 tool iter category and anchor pics table refer 摘要 这里只对手写文档的管理进行个人方式的总结。包括文档的书写和存储等。 以下部分基于假设:你使用Markdown书写文档。 tool Markdown, VScode, MPE1, markdownlint, Git, GitHub 2 iter 理论上,应使用mar...原创 2019-04-18 18:24:45 · 447 阅读 · 0 评论