Now you can Subscribe using RSS

Submit your Email

2017/10/29

Golang fmt print 使用

asd
Golang fmt 包中的 print 是一個常用的 func
尤其要觀察某個數值或是狀態得時候非常好用
相關連結 Package fmt
print 得相關 func 有以下三個
  1. func Print(a ...interface{})(n int,err error)
  2. func Println(a ...interface{})(n int,err error)
  3. func Printf(format string,a ...interface{})(n int,err error)

回傳值

  • n int :
  • 代表在 Terminal 打印多少字符,由於打完一個變數它會多幫你家空白 所以你打印文字得到的數值會比你的問字長度多1
  • err error :
  • 發生錯誤時回傳的錯誤訊息,通常是不會有任何錯誤

2017/10/24

Golang http 使用

asd
Golang 中的 http 包非常的完善
想要使用 Golang 來架設網站也非常的方便
我們只需要使用到 net/http 與 io 包就可以達成一個 web app 的實現

2017/10/19

Golang dep 使用

asd
目前 golang 上可以使用的套件管理工具之一 dep Github
使用方法如下
$go get -u -v github.com/golang/dep/cmd/dep
先把 dep 用go get 抓下來
抓下來後使用以下指令確認一下
$ dep version
dep:
 version     : devel
 build date  : 
 git hash    : 
 go version  : go1.9.1
 go compiler : gc
 platform    : linux/amd64

2017/10/17

Linux Ubuntu 操作 MySQL

asd
安裝好 MySQL 並且登入
使用以下指令可以查看目前有哪些數據庫
mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| sys                |
+--------------------+
4 rows in set (0.00 sec)

2017/10/15

Linux ubuntu apt-get

asd
apt-get 是在 ubuntu  下蠻常使用的指令
稍微做一下筆記

Ubuntu Install MySQL

asd
MySQL 安裝方法很簡單
在 Terminal 下指令進行安裝
$sudo apt-get install mysql-server
*安裝過程會要你輸入 root 預設密碼
安裝完後 mysql 服務就會自動開啟
使用以下指令可以確認 mysql 狀態
查看 mysql 進程
$ps -aux|grep mysql
mysql     1015  0.0  1.7 1246820 145988 ?      Ssl  08:26   0:10 /usr/sbin/mysqld
jrtou    11971  0.0  0.0  21572  1088 pts/1    S+   15:33   0:00 grep --color=auto mysql
檢查 mysql 佔用 port 狀態,預設是3306
$netstat -nlt|grep 3306
tcp        0      0 0.0.0.0:3306            0.0.0.0:*               LISTEN 

2017/10/08

GreenDao 使用 Generator 建立表結構

asd
使用 Generator 方式建立數據庫表,是GreenDao 的另一種方式
個人也比較喜歡使用這種方式建立表
使用 Generator 與 註解方式建立表有蠻大的差異
所需要導入的方式也不太一樣

2017/10/07

GreenDao 使用教學

asd
使用 GreenDao 可以方便我們在 Android 上操作 Sqlite 資料庫
以下是 GreenDao 官網與 GitHub 位置
如何在專案中導入 GreenDao
跟著 GitHub 上的教學依序的在 Gradle 上添加依賴

Coprights @ 2016, Blogger Templates Designed By Templateism | Templatelib