This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | # 取得裝置的解析度 | |
| # Physical size: 2880x1600 | |
| adb shell wm size | |
| # 查看裝置的 dpi | |
| # Physical density: 320 | |
| adb shell wm density | |
| # 將裝置的 dpi 恢復為預設值 | |
| adb shell wm density reset | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #### tag 相關的指令 #### | |
| # 取得所有 remote 的 tag | |
| git fetch --tags origin | |
| # 列出所有的 tag | |
| git tag | |
| # 在 id 為 123456 的 commit 標上 tag | |
| git tag -a v1.1.1 123456 -m "v1.1.1" | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | package com.kddi.android.UtaPass.data; | |
| import org.junit.Test; | |
| import static junit.framework.Assert.*; | |
| public class TryCatchTest { | |
| /* | |
| * https://stackoverflow.com/a/30575991/4789876 | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | digraph FlowChartName { | |
| graph [ | |
| label = "FlowChartName" | |
| rankdir = TB; | |
| compound = true; | |
| splines = ortho; | |
| ]; | |
| // Start, End | |
| node [ |