Thursday, June 29, 2017

Notepad++ tips

17/6/29

1. Notepad++ 80 character line maker
https://superuser.com/questions/414209/notepad-80-character-line-marker

2. Notepad++ manually highlight selected text like Microsoft Word does
https://stackoverflow.com/questions/15179057/notepad-manually-highlight-selected-text-like-microsoft-word-does
Set
Settings > Shortcut mapper > Using 1st Style: Ctrl + 1, 2, 3, 4, 5
Clear
Settings > Shortcut mapper > Clear 1st Style: Ctrl + + Shift + 1, 2, 3, 4, 5

Tuesday, September 6, 2016

Android OS vs. Android System

Android OS is based on Linux Kernel. It is low level kernel.
Android System is based on Android Platform. It is high level System.


Android System Arcitecture

+- Application Framework
+- Binder IPC Proxies
+- Android System Services (Media Server, System Server)
+- HAL
+- Linux Kernel

Android System controlls hardware with HAL interface. And HAL interface conncted with Linux Kernel. That is Android OS is Linux Kernel (low level kernel), Android System is Android platform.

1. http://forum.xda-developers.com/showpost.php?p=10922010&postcount=3
2. http://android.stackexchange.com/questions/11985/what-is-the-difference-between-the-android-os-and-android-system
3. https://source.android.com/devices/

Wednesday, November 18, 2015

In gvim, how can I set or change font size and type?

If you use vim, copy .vimrc to .gvimrc
1. cp .vimrc .gvimrc
2. open .gvimrc
3. add
 set fgn=Monospace\ Regular\ 12

After executing gvim, you can find changed font type and size.

http://www.troubleshooters.com/linux/vifont.htm