Skip to content

Instantly share code, notes, and snippets.

@hongyangqin
hongyangqin / 1.html.md
Created January 5, 2018 15:29
(C++)UrlEncode的标准实现

(C++)UrlEncode的标准实现

from : http://blog.csdn.net/gemo/article/details/8468311

2013年01月05日 14:12:07

    关于UrlEncode的实现(C++),网上有很多不同的版本,对需要编码的字符集的选取并不统一。那么到底有没有标准呢?答案是有的,参见wiki

    绝对不编码的,只有字母、数字、短横线(-)、下划线(_)、点(.)和波浪号(~),其他字符要视情况而定,所以一般性的urlencode只需保留上述字符不进行编码。

@hongyangqin
hongyangqin / 1.html.md
Created January 5, 2018 15:25
DOS中切换盘符(直接CD不行)
@hongyangqin
hongyangqin / 1.html.md
Created January 5, 2018 15:17
如何在CMD下运用管理员权限

如何在CMD下运用管理员权限

from : http://blog.csdn.net/zyw_anquan/article/details/7756499

2012年07月17日 18:36:30

方法一:鼠标右键

这个方法比较比较普通,点开开始找到cmd,右击鼠标“以管理员身份运行(A)”这样调用就是管理员的权限;

@hongyangqin
hongyangqin / 1.html.md
Created January 5, 2018 14:30
Matlab How to create bar graph with categorical data
@hongyangqin
hongyangqin / 1.html.md
Created January 5, 2018 12:16
Python这些问题你会吗?

Python这些问题你会吗?

xiaochao 2017-12-18 10:15

Python这些问题你会吗?

@hongyangqin
hongyangqin / 1.html.md
Created January 5, 2018 12:03
Advantages of SSH

Advantages of SSH

Written by Scott Mitchell

Views: 5,428

Published: Oct 8, 2014

@hongyangqin
hongyangqin / 1.html.md
Created January 5, 2018 11:59
Business Benefits Of An SFTP Server

Posted by John Carl Villanueva on Thu, Dec 11, 2014 @ 12:20 AM

Overview

In today's data-driven world, the accuracy, integrity, speed, confidentiality, and availability of data matters a lot to businesses. That's why it's imperative for file transfer systems to be capable of meeting the highest standards in regards to those aforementioned qualities. In this post, we examine the typical SFTP server and point out what kind of benefits you'll get from it as a method for delivering business critical data.

@hongyangqin
hongyangqin / 1.html.md
Created January 5, 2018 11:33
LaTeX 中改变目录章节的编号为中文
@hongyangqin
hongyangqin / 1.html.md
Created January 5, 2018 11:29
[ latex ] 用 LaTeX 写文档,如何使 \section 的编号数字从 1 开始?

用 LaTeX 写文档,如何使 \section 的编号数字从 1 开始?

from : https://www.zhihu.com/question/20200256

在前面加这个语句,章节序号就可以统一自动加1(经评论区指正,答案已修改)

\setcounter{section}{1}
@hongyangqin
hongyangqin / 1.html.md
Created January 5, 2018 11:27
【LaTeX入门】04、设置行间距、段间距