Wednesday, December 3, 2014

MyGUI mit now

It was LGPL. Now there is one more option other than librocket.

Wednesday, November 19, 2014

smoothmouse is so cool, making mac playable

http://smoothmouse.com/forum/
This guy fixes mac mouse lag. Now mac is playable.

Sunday, November 9, 2014

blender video editor, adding without scaling

blender video editor will try to scale and fit the output size default. To turn this off, chose image offset or image crop in strip input.

Saturday, November 8, 2014

hostname got overridden

My hostname got overridden by dhclient on archlinux. The hostname might cause some Xauthority fail. NetworkManager wiki on arch explains how to setup static host name. However, it does not work for me. keyfile setting, dhclient conf, switching to dhcpd. Nth worked. Finally I added post script in /etc/NetworkManager/dispatcher.d/ to reset my hostname manually.

Friday, October 31, 2014

hp chromebook 14 and archlinux

1. Replace a larger ssd. (It is complicated. You have to remove everything under hood to replace the ssd.)

2. Install archlinux by following the wiki.

3. 3G sim card work out of box with networkmanager its plugins.

4. Use tlp and acpid for power management.

5. Disable power button in systemd.

6. Closing lid suspends it but opening lid does not resume some usb devices with default usb auto suspend setting. Removing xhci_hcd and re-modprobing it solves the problem for me. (I added these to handler.sh of acpid but it crashed my machine. I removed them then and re-add module manually.)

Monday, August 11, 2014

mibox install/uninstall apps

./adb install <-r> blablabla

./adb shell
pm list packages|grep <your app keyword>

./adb shell am start -a android.intent.action.DELETE -d package:<your package name>

Sunday, August 3, 2014

msysgit ssh mintty hang when password required

It works find in windows cmd, but not in mintty. I change the following config.
git config --global core.askpass "git-gui--askpass"

This workaround makes git-gui prompt.