- 博客(6)
- 收藏
- 关注
转载 Python AWS S3
Iteration of Buckets and Keys# Boto 3for bucket in s3.buckets.all(): for key in bucket.objects.all(): print(key.key)Downloading a F...
2018-02-04 12:35:00
128
转载 Upgrade Nginx to latest stable version on Ubuntu 14.04
1. Display current ubuntu version> lsb_release -aNo LSB modules are available.Distributor ID: UbuntuDescription: Ubuntu 14.04.2 LTSRelease:...
2018-01-14 13:25:00
148
转载 Python2 Python3 String problem
在 python2 中 str 存的是 bytes 数据,unicode 存的是 unicdoe 编码后的二进制数据,在 python3 中 str 存的是 unicode 数据,bytes 存的是 bytes 数据在 python2 中混淆了 bytes 和 unicode 数据,u'h...
2017-12-08 14:00:00
76
转载 PPT技巧
Master the contentWhy are you presenting?Who will you be speaking to?How much does your audience know?How do you find out?Aks Question!Deve...
2017-11-30 23:15:00
133
转载 Char and String Object
Charchar name[20];char name[20] = "Joe";strcpy(name, "Jack");String ObjectString name;String name = "Joe";name = "Jack"; ...
2017-11-30 22:38:00
88
转载 How to hide certain files from the sidebar in VScode
Add a new property "files.exclude" : {...} to the User Settings of VScode.For example to hide all pyc files for python project:"files.exclude": {...
2016-10-27 16:17:00
118
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人