2014年10月30日 星期四

Cancel Hangouts Event.

Ref: https://support.google.com/plus/answer/2660446?hl=en
Desktop computer:
  1. Open Google+. Place your cursor in the top left corner for the Google+ main menu. Click Events.
  2. Place your cursor over the event card and click the  dropdown arrow.
  3. Click Delete Event
The dropdown arrow is in the event page rather than the list page.
2-1) Entering events list page
2-2 Click into the selected event
2-3 The dropdown arrow and the delete option is on this page.

2014年10月5日 星期日

Android 懶人包

ref: http://www.inote.tw/adt-bundle-setup-tutorial
1. Download Java SDK
   
2. Download Android 懶人包 (http://developer.android.com/sdk/index.html#download)

3. Install Java SDK
4. Unzip 懶人包
5. 執行 Eclipse 

2014年10月4日 星期六

Google Go 2 -- for

Ref : http://www.golang-book.com/5/index.htm

Hardware ASUS X450J
OS : Windows 8.1 Prof

1. Edit ForEx.go
//------------
package main

import "fmt"

func main() {
    i := 1
    for i <= 10 {
        fmt.Println(i)
        i = i + 1
    }
}
//---------------
5. Run ForEx.go

Google Go -- 1 (Hello World)

Ref : http://golang.org/doc/install

Hardware ASUS X450J
OS : Windows 8.1 Prof
1. Download compile
http://golang.org/dl/
2. Install go

3. Reboot
4. Edit Hello.go
//------------
package main

import "fmt"

func main() {
    fmt.Printf("hello, world\n")
}
//---------------
5. Run Hello.go