2017年6月20日 星期二

讓記事本預設是 UTF-8

相信會找到這篇文章來的朋友一定是有這方面的困擾,一般來說,微軟內建的記事本的預設編碼是 ANSI,然而當我們需要存成 UTF-8 時,還要特地另存新檔(Save as)才能轉換,萬一忘記會造成一些無法預期的錯誤,不如就直接將記事本設成 UTF-8 吧!

首先隨便新增一個文字檔,可看到原本的格式是 ANSI



我們在桌面上建一個檔案,將檔案命名為 TXTUTF-8.txt,並且不要輸入任何東西。在存檔時將檔案編碼選擇 UTF-8,接著將這個檔案放到 C:\WINDOWS\SHELLNEW 路徑下。



完成後打開 regedit ,移到 HKEY_CLASSES_ROOT\.txt\ShellNew 下,創建一個字串值並命名為 FileName,接著給予字串值為 TXTUTF-8.txt


將所有記事本關掉後,之後新增的純文字檔預設都變成 UTF-8 囉!



2017年3月24日 星期五

Google Play download pending. 下載卡住的問題

Sometimes we stuck in Google Play with a message "download pending".

Here's an easy to guide you how to solve it.

At first, going to [Setting] - [Apps], then find out "Google Play Store" and get in.
Tap [Storage], then clear data and clear cache might be success.

Good Luck.

2016年11月24日 星期四

Android Studio JAVA_HOME problem 問題

When compile a Android project in Android Studio encounter JAVA_HOME setting problem, you might modify this as following:
當使用 Android Studio 編譯時若遇到 JAVA_HOME 設定錯誤的問題,你可以試著以下操作:

Error message:
錯誤訊息會是像這樣:
Cannot find System Java Compiler. Ensure that you have installed a JDK (not just a JRE) and configured your JAVA_HOME system.

Step 1. [Other Settings] → [Default Project Structure]
一、  其它設定 → 專案預設結構



Step 2. Uncheck [Use embedded JDK] then redirect to your JDK path.
二、 取消勾選 [Use embedded JDK] 並且重新指定你的 JDK 位置


Ref from
參考以下
http://stackoverflow.com/questions/16913397/running-gradle-project-via-eclipse-errors-system-cannot-find-system-java-compil

2016年8月16日 星期二

Can not open Android Studio? bad UseParallelGC

One day, I want to increase my Android Studio performance, I add some parameters in studio64.exe.vmoptions

-Xms2048m

-Xmx4096m

-XX:MaxPermSize=512m

-XX:ReservedCodeCacheSize=768m

-XX:+UseConcMarkSweepGC

-XX:SoftRefLRUPolicyMSPerMB=50

-XX:+UseParallelGC

Then, I can not open Android Studio again!


So! what magic parameter make it wrong?
I google the message for that but all about JAVA_HOME environment issue.

Finally, I found that is ONE bad parameter on that:

-XX:+UseParallelGC

Remove it and restart Android Studio, it work again!

2016年7月13日 星期三

在 Bash Terminal 中要使用 Proxy 連線

在任何 terminal 中(git-bash, cygwin-bash, bash),需要透過 proxy 連線時,卻出現:
cURL error 60: SSL certificate problem: unable to get local issuer certificate


之類的問題的話,代表 bash 環境裡的 proxy 未設定,透過下面的方法可在 bash 裡走 proxy 出去:

1. 編輯 bashrc 檔
matt@matt-pc ~ vi ~/.bashrc

2. 在文檔中加入
export htttp_proxy="http://<name>:<password>@<proxy_address>":"port"

例如:
export http_proxy="http://matt:1234@matt-proxy":"80"

export https_proxy="http://matt:1234@matt-proxy":"80"

export ftp_proxy="http://matt:1234@matt-proxy":"80"

export ssh_proxy="http://matt:1234@matt-proxy":"80"

2016年6月21日 星期二

在 windows 下 ssh 遇到 diffie-hellman-group1-sha1 問題時

在 windows上裝 cygwin 或是 git-bash 後要 git clone 時發生下面的問題:

$ git clone ssh://123.45.67.89:29418/Code/MyApp.git
Cloning into 'MyApp'...
Unable to negotiate with 123.45.67.89: no matching key exchange method found.
Their offer: diffie-hellman-group1-sha1

fatal: Could not read from remote repository.
Please make sure you have the correct access rights and the repository exists. my_name@my_host

或是在連線時發生:
$ ssh -p 29418 123.45.67.89
Unable to negotiate with 123.45.67.89: no matching key exchange method found. 
Their offer: diffie-hellman-group1-sha1

首先要檢查是否有設定 ~/.ssh/config 這個檔案


檔案內容可能如下:
HOST 123.45.67.89
PORT 29418
USER my_name

但因為是 windows 上使用模擬的 console (cygwin or git-bash ...etc) ,或是 ssh 的版本有問題,出現上述的 error 時,建議在下方加入這行

HOST 123.45.67.89
PORT 29418
USER my_name
KexAlgorithms +diffie-hellman-group1-sha1


再次執行
$ ssh -p 29418 123.45.67.89
==========================================================
  ****    Welcome to Gerrit Code Review    ****

  Hi matt, you have successfully connected over SSH.

  Unfortunately, interactive shells are disabled.
  To clone a hosted Git repository, use:

  git clone ssh://my_name@123.45.67.89:29418/REPOSITORY_NAME.git

Connection to 123.45.67.89 closed.
==========================================================

這樣就代表你連成功了!


如果是使TortoiseGit + ssh 又不想打帳密,還可以參考這篇 PuTTYgen
http://floatfrog.blogspot.tw/2015/06/tortoisegitssh-keygitlab.html



2016年4月18日 星期一

一個不錯的網頁 介紹 Android / ADB / Commands


Android / ADB / Commands ::
http://imsardine.simplbug.com/note/android/adb/commands/commands.html#shell

寫的很不錯