今天下午两点左右在附近的工行办理手机号更改业务,几乎等了一个多小时都没弄好。效率奇低!这样的银行存在真是浪费纳税人的金钱。
Chrome上的sqlite在windows 7位置
环境: Windows 7
Chrome浏览器会把浏览记录信息等放在sqlite数据库上,它的位置在C:\\Users\\{username}\\AppData\\Local\\Google\\Chrome\\User Data\\Default目录下,有一个命名为History的文件就是浏览记录。
备案,拜拜
前一段时间弄了一下备案,麻烦透啦,而且还没通过。只好再租了香港的服务器把Wordpress部署上去,这样万恶的备案滚一边去。
喜欢的音乐
How to use WiringPi2 for Python on the Raspberry Pi in Raspbian part 1
http://raspi.tv/2013/how-to-use-wiringpi2-for-python-on-the-raspberry-pi-in-raspbian
http://wiringpi.com/wp-content/uploads/2013/03/pins.pdf
http://www.element14.com/community/docs/DOC-73950/l/raspberry-pi-2-model-b-gpio-40-pin-block-pinout
https://www.sparkfun.com/datasheets/Sensors/Temperature/DHT22.pdf
http://www.cnblogs.com/sn-dnv-aps/p/4390899.html
聚焦物联网,立身于创客
感冒
这周一直感觉不舒服,可能是晚上睡觉受凉了,没精打采的,头晕晕沉沉!
ubuntu add-apt-repository command not found
环境: Ubuntu 14.04
使用add-apt-repository增加某个repository时出现如下问题:command not found
解决方法如下:
sudo apt-get remove software-properties-common python-software-properties
sudo apt-get install python-software-properties
apt-get update 问题
环境:Ubuntu 14.04
使用apt-get update出现如下问题:
Fetched 11.8 MB in 26s (448 kB/s)
W: GPG error: http://security.debian.org wheezy/updates InRelease: The following signatures couldn’t be verified because the public key is not available: NO_PUBKEY 9D6D8F6BC857C906 NO_PUBKEY 8B48AD6246925553
W: GPG error: http://http.debian.net wheezy-updates Release: The following signatures couldn’t be verified because the public key is not available: NO_PUBKEY 8B48AD6246925553 NO_PUBKEY 7638D0442B90D010
W: Failed to fetch http://packages.couchbase.com/ubuntu/dists/trusty/InRelease Unable to find expected entry ‘precise/main/binary-amd64/Packages’ in Release file (Wrong sources.list entry or malformed file)
W: Failed to fetch http://http.debian.net/debian/dists/wheezy/Release.gpg Connection failed
解决方法,增加公共的key:
sudo apt-key adv –keyserver keyserver.ubuntu.com –recv-keys 9D6D8F6BC857C906 8B48AD6246925553 7638D0442B90D010 6FB2A1C265FFB764
数据仓库ETL中注意两项
1. 不要使用update操作,这个对数据库影响极大。用delete和insert操作来替换,
2. 对于源数据的字符类型,不能确认的类型一律采用varchar类型