240 发简信
IP属地:新北
  • shell 小技巧 - 像是vi/emacs操作

    本篇使用bash shell 其他的shell基本上也有相對應的方式感謝denny在sitcon台南聚的分享 introduction 假設有一...

  • double dash in bash shell

    開場 今天在活動裡看到一個問題, 如何刪除名為-q的資料夾, 當別人創建出奇怪的資料夾名稱, 你又沒有GUI使用右鍵->刪除的時候, doub...

  • Resize,w 360,h 240
    Parallels Desktop + Ubuntu 解析度問題

    Introduction 一開始將Ubuntu灌好之後, 只有600x480的解析度, 看了網路上都是用xrandr解決, 但是我無法使用這種方...

  • 巴斯卡三角形

    Problem 印出巴斯卡三角形, 使用者輸入n則輸出n層巴斯卡三角形, 不使用array.假設使用者輸入為5, 則輸出: Solution 這...

  • 數字位移

    以下是朋友的段考題, 朋友來問我我就幫他解了一下. Problem 假設使用者輸入3, 電腦會印出: 現在使用者輸入5, 則電腦會印出這些東西:...

  • Final Keyword In Java

    Introduction final keyword can be used along with variables, methods and...

  • Singleton Pattern (Java)

    This article is part of Reference 1 and Reference 2. I just organize th...

  • java Iterable and for each

    Java api public interface Iterable<T>Implementing this interface allows ...