草料二维码 https://cli.im/
分类:其它
Mac OS brew更新卡住
在使用mac笔记本安装软件时需要更新brew update,但一直卡住。
解决方法1: 在/usr/local/bin/brew
添加 HOMEBREW_NO_AUTO_UPDATE=1
或者 HOMEBREW_NO_AUTO_UPDATE=1 brew install somepackage
方法2: brew update –debug –verbose ,然后 brew update –force
三星galaxy s7 edge手机无法拷贝文件
环境:macOS, 三星galaxy s7 edge, Android File Transfer
之前使用Android File Transfer拷贝文件到手机后发现后续无法再使用此功能,目前在 https://android.stackexchange.com/questions/46315/not-all-files-are-visible-over-mtp 发现是android的bug。
解决方法: 设置->应用程序->存储(在最下端)->立即清理
Linux如何设置时区和时间
安装zonetime包
apt install ztdata
选择时区的命令:
tzselect
设置timezone的时区
sudo timedatectl set-timezone ‘Asia/Shanghai’
或者
echo “Asia/Shanghai” > /etc/timezone
设置时间
rm -rf /etc/localtime
ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
linux 时间戳转换
date -d @$(date -u +%s)
error: Unable to find vcvarsall.bat
环境:Windows 10, python 3.5
问题:pip install numpy
出现错误提示error: Unable to find vcvarsall.bat
解决:安装vs 2015 community,注意一定要勾选 Programming Languages -> Visual C++ -> Common Tools for Visual C++ 2015
泪奔–数据丢失
之前忘了给服务器续费,有过短信提醒,但一直拖着,拖延的老毛病又犯了。后来服务商直接就停了,再也找不回之前的写作的日记。泪奔。。。 玩数据的,竟然还丢失数据,锥心的疼。要吸取这次教训,数据库及时备份,文件拷贝到至少两个地方!!!
使用 Shadowsocks 自建翻墙服务器,实现全平台 100% 翻墙无障碍
Erlang 安装使用rfc4627
环境: Ubuntu 14.04
编译
git clone git://github.com/tonyg/erlang-rfc4627.git
cd erlang-rfc4627/
make all
获取erlang library路径
jerry@iZ28ktvewfwZ:~$ erl
Erlang R16B03 (erts-5.10.4) [source] [64-bit] [async-threads:10] [kernel-poll:false]
Eshell V5.10.4 (abort with ^G)
1> code:get_path().
[“.”,”/usr/lib/erlang/lib/kernel-2.16.4/ebin”,
“/usr/lib/erlang/lib/stdlib-1.19.4/ebin”,
“/usr/lib/erlang/lib/xmerl-1.3.5/ebin”,
“/usr/lib/erlang/lib/wx-1.1.1”,
[…]|…]
2>
将文件夹拷贝到相应目录下
sudo cp -R erlang-rfc4627/ /usr/lib/erlang/lib/
测试使用
jerry@iZ28ktvewfwZ:~$ erl
Erlang R16B03 (erts-5.10.4) [source] [64-bit] [async-threads:10] [kernel-poll:false]
Eshell V5.10.4 (abort with ^G)
1> O = rfc4627:encode({obj, [{name, hideto}, {age, 23}]}).
“{\”name\”:\”hideto\”,\”age\”:23}”
2>
红米4A ROOT步骤
1. 下载开发版,刷入这个版本
http://www.miui.com/download-325.html
http://www.miui.com/shuaji-329.html
使用命令行
adb push miui_HM4A_7.4.27_e52ef2df2a_6.0.zip /sdcard/
或者在这图形界面上拷贝
2.申请解锁权限
注册小米帐号后进入申请解锁http://www.miui.com/unlock/
3.按音量下+电源键进入Fastboot模式
4.http://www.miui.com/unlock/done.html下载解锁工具(miflash_unlock)解锁并重启手机
5.进入安全中心-》授权管理-》开启root
6.重启完就好了
链接:
http://www.miui.com/thread-3852678-1-1.html
http://www.miui.com/thread-6297807-1-1.html