环境: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。
解决方法: 设置->应用程序->存储(在最下端)->立即清理
量化自我和极简主义的窝藏点
技术
环境: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。
解决方法: 设置->应用程序->存储(在最下端)->立即清理
安装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
环境: MacOS, Ubuntu, Clion
在做C语言开发的时候经常要涉及Linux中的库,因此在MacOS上用VirtualBox安装Ubuntu环境,通过terminal直接登入上去。但有时要用Ubuntu上的Clion,所以安装XQuartz这个支持图形界面的登入工具。使用登入如下:
ssh -Y jerry@192.168.56.101
(注:-Y 代表启用信任的X11 forwarding)
环境: MacOS 10.11.6, Clion 2019
由于C语言自带的ANSI lib内容库不太丰富,所以直接使用linux自带的glibc库。主程序直接引用 glibc头文件
#include <glib.h>
CMakeLists.txt如下:
cmake_minimum_required(VERSION 3.14) project(untitled C) set(CMAKE_C_STANDARD 99) add_executable(untitled main.c) find_package(PkgConfig) pkg_check_modules(GLIB2 REQUIRED glib-2.0) target_include_directories(untitled PUBLIC ${GLIB2_INCLUDE_DIRS}) target_link_libraries(untitled ${GLIB2_LIBRARIES})
但编译是老是发现无法找到libintl库,最后发现home-brew没有link到gettext,执行如下: brew link –force gettext 即可
date -d @$(date -u +%s)
环境: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
之前忘了给服务器续费,有过短信提醒,但一直拖着,拖延的老毛病又犯了。后来服务商直接就停了,再也找不回之前的写作的日记。泪奔。。。 玩数据的,竟然还丢失数据,锥心的疼。要吸取这次教训,数据库及时备份,文件拷贝到至少两个地方!!!
环境: 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>
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