My favorite #MultiLing Keyboard for #Android now with new layout.

image

Based on Android 2.3 Gingerbread keyboard with extra features

Features:
★ Small apk size
★ Inherit all the features from Gingerbread keyboard
★ T9, compact qwerty, Emoji, smiley faces, Edit Mode, Num Pad …
★ Voice input
★ Fast switching languages (Swipe or long-press space bar)
★ Hide keyboard with swipe out gesture (with gesture option enabled)
★ For bigger space bar, hide the settings key
★ Touch word correction
★ Qwerty / Azerty / Qwertz / Dvorak / Left Hand / Right Hand / Colemak under Latin settings
★ Themes, keyboard size, font size…
★ Auto correction: Type approximately and let MultiLing correct it
★ User dictionary
★ Word learning
★ Gestures:
↓: Hide IME/Keyboard
→: Toggle handwriting/keyboard
←: Toggle keyboard mode (T9/compact/fullsize)
↗: Delete or clear writing pad for Handwriting mode
↑: Toggle Keyboard Sizes
★ Accents key (for certain language only):
a+[key]⇒á,à
n+[key]⇒ñ
and so on…
★ 나랏글
★ 手寫識別
★ Thai compact layout

Installing #VtigerCRM 5.2.1 in MySQL 5.5

In MySQL 5.5, “Type=InnoDB” paramaters in CREATE TABLE routing was deprecated. So you have to use “ENGINE=InnoDB” instead.

And to make your VtigerCRM proceed to installation using MySQL 5.5, you just have to do the following:

  • edit DatabaseShema.xml
     $ vim schema/DatabaseSchema.xml
  • Replace all  “Type=InnoDB” to “ENGINE=InnoDB”
    :%s/Type=InnoDB/ENGINE=InnoDB/c
  • Save the file and proceed to installation.

hope it helps.