I use the Gmail as my personal primary email, at the same time, my company using Exchange 2010 as email server, one of the feature I'm quite missing from my gamil is the calendar auto push similar to Exchange server. But I suddenly found in fact Gmail also provide the Exchange Active Sync support and here is how to enable it, I using Android account as example.
Install Android SDK Drivers on HTC Incredible S/G11
I use the Windows 7 and after you install Android SDK Tools, you can locate the USB driver at [C:\Program Files\Android\android-sdk\extras\google\usb_driver](file://C:\Program Files\Android\android-sdk\extras\google\usb_driver)
You need to modify the file android_winusb.inf (may need to save to Desktop and move to original folder due to Windows 7 protection), Add below line after section [Google.NTx86]
;HTC Incredible
%SingleAdbInterface% = USB_Install, USB\VID_0BB4&PID_0CAC
%CompositeAdbInterface% = USB_Install, USB\VID_0BB4&PID_0CAC&MI_01
If you use the x64 version, Also add below line after [Google.NTamd64]
;HTC Incredible
%SingleAdbInterface% = USB_Install, USB\VID_0BB4&PID_0CAC
%CompositeAdbInterface% = USB_Install, USB\VID_0BB4&PID_0CAC&MI_01
After you modify the file, you can in Device Manager and update the Andriod Device driver by manually click the button "Update Driver Software" and point to the folder of android_winusb.inf by install it.
Set Google Search in HTTPS Protocol in Firefox
This is the hint from liulanmi.com, Open the search.json file in %USERPROFILE%\AppData\Roaming\Mozilla\Firefox\Profiles\nxs3k2nz[is may differ via machine].default
Search ‘google.com/’ and replace the ‘http://’ with ‘https://’ in the file, then you done.
Sublime 2 Installation Guide in Windows
- Install Sublime Text as normal way in Windows
- Add Sublime Text Path to Path in System->Advanced System settings
- Download Exuberant Ctags and put ctags.exe to Sublime 2 installation folder
- Startup the Sublime Text in first time and pin it in Windows 7 Taskbar
- Open cmd and locate your Sublime User profile folder, %USERPROFILE%\AppData\Roaming\Sublime Text 2\Packages\User
- git clone https://github.com/Eric-Guo/sublime-user-folder.git .
- Open the Sublime Text again and install Sublime Package Control by running below code in console line (Ctrl+`)
|
- Close and Reopen the Sublime Text Editor, Ctrl+Shift+P and type 'Upgrade/Overwrite All Packages'
- Waiting enough time to let Package Control download all the relative package.
- Remove line '{ "keys": ["ctrl+b"], "command": "build" },' in Default (Windows).sublime-keymap file (bug for Build 2210? won't allow ctrl+k ctrl+b to toggle side bar if not remove it)
Evernote as My GTD Tools and All My Shared Notes List
GTD is a new cult for the info age, so I just starting using Evernote today as my GTD tools, I also share a rails tech notes as start, maybe latter, I will share more notes, but please notices those notes is not well written compare to my blogs, it's become public just because I think I should be an open mind person.
All public Evernote:
Rails 3.2 Bootstrap Startup Site at Github
60 days passed since I decide to learn Ruby & Rails after I attended the Cloud Foundry 2012 tour. I'm now somewhat familiar with Rails 3.2, I following the learning roadmap proposed by huacnlee and found most useful resource for Rails is still the official Ruby on Rails Guide. So if you also want to learn the Rails, I recommend you only read that.
Install Simple Node.js Based TCP Socket Proxy Server in Windows by Batch File
In my working Semiconductor factory, some of the machine is heavily protected by network isolate (You can image those machine a very frangible PC which have no windows update turn on), the network is so isolate that only certain bridge PC can connect in both inside intranet and outside - still intranet. To make things even worse, the isolated network is nested; the real machine need cross two level bridge PC to reach the application server.
One Line to Convert ePub File Into the Mobi File in PowerShell
|
Silverlight Poker Game Calculate 24 Points
It's is required by my college as a part of party game, based on Bishoy Labib's version on CodeProject, I make a large picture version base on the blogs started something. the source code can be folked at github.com.