自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 How to execute the command with root jurisdiction in pyCharm

Today I just want to install a python library in pyCharm with the bottom Alt+Enter but it failed without the root jurisdiction.What i am doing is to change the authority with the command:sudo chmod -R

2017-11-28 20:08:52 210

转载 Pycharm编辑器功能之自动导入模块-(轉)

转自:http://blog.csdn.net/u013088062/article/details/50252295  1、导入模块  我们在编程过程中经常会不经意的使用到一些尚未导入的类和模块,在这种情况下Pycharm会帮助我们定位模块文件位置并将其添加到导入列表中,这也就是所谓的自动导入模块功能。  为了研究这个功能,我们借用之前已经编写好的Solver类,输入以下代码:  在输入math.

2017-11-28 20:02:05 1588

原创 How to reprint the blogs from BoKeYuan to CSDN

Print the F12 in the blog’s webpage. Choose the one named post_detail,right click->copy HTML,got it !

2017-11-23 16:40:12 213

转载 Merkle Tree-(transshipment)

Merkle Tree学习 /*最近在看Ethereum,其中一个重要的概念是Merkle Tree,以前从来没有听说过,所以查了些资料,学习了Merkle Tree的知识,因为接触时间不长,对Merkle Tree的理解也不是很深入,如果有不对的地方,希望各位大神指正*/Merkle Tree概念    Merkl

2017-11-23 16:30:56 426

原创 Interrupts and Interrupt Handlers

We need a mechanism for the hardware to signal to the kernel when attention is needed.This machanism is called * interrupt*,with special functions called interrupt handlers.Interruptsinterrupts enable

2017-11-23 15:32:30 484

原创 System call in Linux

Some aspectsSystem calls provide a layer between the hardware and user-space processes. - provide an abstracted hardware interface for use-space - ensure system security and stability - allows for t

2017-11-23 14:11:14 473

原创 Somethings about the Process scheduler in Linux

Some conceptsThe process scheduler decides which process runs and for how long.it is responsible for best utilizing the system and giving users the impression that multiple processes are executing simu

2017-11-21 17:37:46 252

原创 Some basic tips about 'git stash'

the command ‘git stash’ is to save the modification in workspace and staged status in the stack. The basic command is:##save the modification to the stackgit stashIf you want to add some comments:git

2017-11-21 10:08:32 272

原创 Somethings about the Process in the Linux

Some aspectsProcess is one of the fundamental abstractions in the Linuxprocess: a process is a program in the midst of execution,not only including executing program code but also includes a set of rel

2017-11-20 17:33:21 357

原创 How to execute the script automatically without the authority of /etc

I don’t have the right of modifing the files in the directory /tec but I want to execute some scripts/commands whenever I open a new shell.So I find a way to fix this problemcd ~vim .cshrc.userjust a

2017-11-17 10:46:11 360

原创 How to find the log I want when using 'git log'

Usually we use the * git log* without any parameters,just like:git log##or make the number of the log that need to be showgit log -3But sometimes I just want to search some specific logs I want.So ho

2017-11-16 10:29:29 170

原创 Somethings about the coding in Python

In python3,the words will be coded in Unicode,so python3 support many languages. - ord():output the int number of a charactor:ord('a')ord('中')chr():output the charactor of a specific codeing number:

2017-11-15 16:01:23 192

原创 Some things about the ASCII,Unicode and UTF-8

ASCII: 1 byte,just can cover 255 characters,usually used in pure English text.Unicode:ASCII can’t cover many other type’s words. Unicode uniform all of the words to the same rule.Usually it is consist

2017-11-15 15:37:04 161

原创 How to install the Guake Terminal

sudo add-apt-repository ppa:webupd8team/unstablesudo apt-get updatesudo apt-get install guakeThen you can set the performance in the guake –preferences

2017-11-15 15:09:39 299

原创 How to revert the code/files that have been merged to the remote Repo

I pushed the wrong code to the remote Repo and just want to back out the merge.The common way is to use git revertgit revert [the commit you want to back out]But sometimes I just want to back out sever

2017-11-15 14:41:35 225

原创 How to merge/cover specific file using git

Some times I just want to merge several specific files and want to check the merge result in real time,you can use:git checkout --patch [the branch name/the commit id] [the file path]Then the shell wil

2017-11-15 11:24:53 178

原创 How to install the pycharm in my ubuntu

Firstly add the source:sudo add-apt-repository ppa:mystic-mirage/pycharmthen if you want to install the professional version:sudo apt updatesudo apt install pycharmor you are a loser and just want the

2017-11-10 18:35:08 302

原创 How to uninstall/update/ your python in Linux

If you want to uninstall your python,input:sudo apt-get remove pythonif you want to install python3:sudo apt-get install python3but it just installs the python3.4,so if you want to update it to3.5:sudo

2017-11-10 18:10:48 756

空空如也

空空如也

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

TA关注的人

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