0%

SSH Key生成

在通过ssh-keygen命令生成Key的时候,当提示Enter file in which to save the key时,为不同的Key添加不同的后缀名,例如:

  • 用于GitHub的Keyid_rsa_github
  • 用于Bitbucket的Keyid_rsa_bitbucket
Read more »

前提

SSH Key已经正常生成,并已经成功配置到GitHub上。

问题

通过SSH连接GitHub时出现错误提示:

1
Permission denied (publickey).

原因

可能是因为在生成Key的时候,采用了自定义文件名,没有采用默认的id_rsa文件名,导致系统在本地找不到与publickey相对应的privatekey

未做进一步测试,所以这个原因只是猜测。

解决

执行ssh-add命令,添加自定义文件名的privatekey

1
ssh-add ~/.ssh/FileNameofYourPrivateKey

Dictionary

Python uses {} to represent dictionary:

1
2
3
4
5
>>> scores = {'Rick':98,'Bob':78,'Tom':92}
>>> scores['Rick']
98
>>> source.get('Rick')
98

Read more »

打开方式

可以通过以下几种方式打开VBA编辑器:

  • 快捷键ALT+F11。
  • DEVELOPER菜单下点击Visual Basic图标。
  • DEVELOPER菜单下点击Macros图标,然后在列表中选择一个Macro,点击右侧的Edit。
Read more »

Version

There are 2 existing versions of Python: Python 2.7.x and Python 3.5.x, I don’t know the detailed discrepancies between the two versions but I think the newer is the future, so this note is all about Python 3.5.x and above.

Read more »

前一段时间把自己的主力电脑从Win迁移到了Ubuntu,对中途所做的一些配置做简要记录,以为后续参考。

Read more »

缘由

工作了几年,写了些许VBA,提升了一些效率,也积累了一些写VBA的经验,身边也会有些人向我请教一些VBA的问题,本着在记录自己学习过程的同时也能给别人些许参考的目的,给自己挖了这么一个坑。

Read more »