自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(6)
  • 收藏
  • 关注

原创 Sorting function in Python

Basically there're 3 ways to sort.1. Make a sort function yourself. There're lots of algorithms that could sort an array. We're not gonna mention them at here. For details, please check the relative

2016-06-24 15:59:53 409

原创 Use VBA to update PPT from Excel

This is a journal recording my process of learning VBA to update PPT from Excel sheet. MS Office version: 2016.The first two things: 1. open VBA by alt+F11 in an opened office program. 2.[ If

2016-06-23 15:52:46 769

原创 Introduction of Python package: MySQL Connector

This is a simple introduction of MySQL Connector with some sample code. The code is from MySQL Connector Document. 1. Establish connection:import mysql.connectorcnx = mysql.connector.connect(u

2016-06-22 21:22:46 473

原创 Intro of VectorCast HTML File

1. Name of the fileFor example, ENV_ITSNETWORKPACKET_metrics.HTMLthe name of such file depends on the module. One file for one module.2. ContentsTesting result of different test cases. They

2016-06-22 09:23:54 246

原创 MySQL create users and grant privilege

1. create userCREATE USER 'username'@'host' IDENTIFIED BY 'password';  Here Identified by is actually by password. So just type in the passwordCREATE USER 'dog'@'localhost' IDENTIFIED BY '123456

2016-06-21 14:52:58 322

原创 Search Functions in Code

Finding functions in scripts, or code, is not easy. Here's some idea.For C++, because functions needs to be declared in the header file and every functions end with ");", we can search ");" in the c

2016-06-16 11:35:17 255

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除