命令行程序的艺术 作者: LiesAuer 时间: 2019-01-13 分类: 参考 评论 [Command-line interface description language](http://docopt.org/ "Command-line interface description language") [Command-Line Syntax Key](https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2012-R2-and-2012/cc771080%28v%3Dws.11%29 "Command-Line Syntax Key") [Utility Argument Syntax](http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap12.html#tag_12_01 "Utility Argument Syntax") [GNU Coding Standards](http://www.gnu.org/prep/standards/standards.html "GNU Coding Standards") [Command Line Standard](https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-powershell-1.0/ee156811%28v%3Dtechnet.10%29 "Command Line Standard")
reStructuredText 文章备忘录 作者: LiesAuer 时间: 2019-01-12 分类: 参考 评论 [Quick reStructuredText](http://docutils.sourceforge.net/docs/user/rst/quickref.html "Quick reStructuredText") [A ReStructuredText Primer](http://docutils.sourceforge.net/docs/user/rst/quickstart.html "A ReStructuredText Primer") [reStructuredText Markup Specification](http://docutils.sourceforge.net/docs/ref/rst/restructuredtext.html "reStructuredText Markup Specification") [Index of /docs/ref/rst](http://docutils.sourceforge.net/docs/ref/rst/ "Index of /docs/ref/rst") [reStructuredText Standard Definition Files](http://docutils.sourceforge.net/docs/ref/rst/definitions.html "reStructuredText Standard Definition Files") [reStructuredText Directives](http://docutils.sourceforge.net/docs/ref/rst/directives.html "reStructuredText Directives") [An Introduction to reStructuredText](http://docutils.sourceforge.net/docs/ref/rst/introduction.html "An Introduction to reStructuredText") [reStructuredText Interpreted Text Roles](http://docutils.sourceforge.net/docs/ref/rst/roles.html "reStructuredText Interpreted Text Roles")
15种常用ARGB颜色 作者: LiesAuer 时间: 2018-09-07 分类: 开发,参考 1 条评论 |中文名| 英文名 | ARGB | 示例 | | ---- | -------- | ---------- | :--------------------------------------: | | 黑色 | black | 0xFF000000 | ▇▇▇ | | 深灰 | darkGray | 0xFF555555 | ▇▇▇ | | 浅灰 | lightGray | 0xFFAAAAAA | ▇▇▇ | | 白色 | white | 0xFFFFFFFF | ▇▇▇ | | 灰色 | gray | 0xFF7F7F7F | ▇▇▇ | | 红色 | red | 0xFFFF0000 | ▇▇▇ | | 绿色 | green | 0xFF00FF00 | ▇▇▇ | | 蓝色 | blue | 0xFF0000FF | ▇▇▇ | | 青色 | cyan | 0xFF00FFFF | ▇▇▇ | | 黄色 | yellow | 0xFFFFFF00 | ▇▇▇ | | 洋红 | magenta | 0xFFFF00FF | ▇▇▇ | | 橙色 | orange | 0xFFFF7F00 | ▇▇▇ | | 紫色 | purple | 0xFF7F007F | ▇▇▇ | | 棕色 | brown | 0xFF996633 | ▇▇▇ | | 透明 | clear | 0x00000000 | ▇▇▇ |
NET Core系列文章备忘录 作者: LiesAuer 时间: 2018-09-05 分类: 参考 评论 1. [Creating and editing solution files with the .NET CLI](https://andrewlock.net/creating-and-editing-solution-files-with-the-net-cli/ "Creating and editing solution files with the .NET CLI") 2. [Creating NuGet packages in Docker using the .NET Core CLI](https://andrewlock.net/creating-nuget-packages-in-docker-using-the-net-core-cli/ "Creating NuGet packages in Docker using the .NET Core CLI")
深入了解UserAgent 作者: LiesAuer 时间: 2017-12-15 分类: 参考 评论 最近在做爬虫相关的项目,对UA有一定的要求,所以到网上找了几篇描述UA较详细的文章分享给大家。 1. [认识User-Agent - CSDN博客](http://blog.csdn.net/rj042/article/details/6991441 "认识User-Agent - CSDN博客") 2. [User agent - Wikipedia](https://en.wikipedia.org/wiki/User_agent "User agent - Wikipedia") 3. [History of the user-agent string - NCZOnline](https://www.nczonline.net/blog/2010/01/12/history-of-the-user-agent-string/ "History of the user-agent string - NCZOnline")