台灣國稅局的14種必查條件

網路看到的,不確定是否真實。(原出處不明)

不過看這些條件確實有需要查的可能性。

台灣國稅局提出十四種必查條件

通常稽徵機關在選案比例最高的情況至少有十四種,重點如下:

  1. 全年財富增減達10%以上,而且與年度申報所得明顯不相當者。
  2. 房屋或土地移轉屬於25歲以下的子女或二等親內的財產移轉買賣。
  3. 同一筆土地一年以內兩次移轉,第二次移轉之買受人與前次出售人姓氏、住址雷同,移轉之限款在300萬以上者。 (即所謂的三角移轉)
  4. 主管機關蒐集房屋貸款資料,瞭解借款資金之用途及流向,通常此部份須具贈與稅起徵的金額才列入。
  5. 因繼承或受贈農地連續五年未從事農業耕作五年以上。
  6. 收取大額的土地徵收補償金追查資金流向。
  7. 當年度薪資所得成長幅度不高,但財產較以往急遽增加。
  8. 無薪資所得但擁有數十萬元以上利息所得者。
  9. 無固定收入但擁有三棟以上房屋者。
  10. 未滿25歲但在金融機構存款超過500 萬元,25歲以上到30歲之間存款金額超過千萬者。
  11. 特定人士或知名的演藝人員。
  12. 假交易真贈與之情況,如贈予公設地予子女再用現金買回等。
  13. 個人帳戶短期內以連續用現金方式提領或存款。
  14. 購買外幣轉匯到其子女在國外的銀行帳戶。

PHP 使用 SimpleXML 遇到冒號「:」的解法

PHP 使用 SimpleXML 來解析 XML 很方便,解析 RSS 也是輕鬆愉快,不過要解析 WordPress 的 RSS 時,遇到 XML Tag 的名稱有「:」,造成解析不到,要怎麼解決呢?

閱讀全文〈PHP 使用 SimpleXML 遇到冒號「:」的解法〉

Vim 8.0 於 Linux 使用滑鼠選取自動複製的快速鍵

Vim 8.0 於 Linux 的 CLI 環境,使用滑鼠選取文字的話,預設不是 Xwindow 的選取方式,而是 Vim 內部的選取方式(v),所以文字要複製沒辦法使用 Ctrl + c 等等複製到系統的記憶體。

  • 註1:預設為 set mouse=a 的模式
  • 註2:Debian stretch 目前安裝就是 Vim 8.0,就會遇到此情況

想要複製到系統的記憶體,可以使用下述兩種方式:

  • 按住 Shift 後,在用滑鼠選取,可以使用 Ctrl + c 複製,或 此時用滑鼠中間就可以貼上。(再按一下 Shift 選取反白才會消失)
  • :set mouse= 或 :set mouse=r 或 :set mouse=v (設定不要為 a 就可以使用標準系統的選取、複製模式)

相關說明

*'mouse'* *E538*
'mouse'         string  (default "", "a" for GUI, MS-DOS and Win32)
            global
            {not in Vi}
    Enable the use of the mouse.  Only works for certain terminals
    (xterm, MS-DOS, Win32 |win32-mouse|, QNX pterm, *BSD console with
    sysmouse and Linux console with gpm).  For using the mouse in the
    GUI, see |gui-mouse|.
    The mouse can be enabled for different modes:
        n   Normal mode
        v   Visual mode
        i   Insert mode
        c   Command-line mode
        h   all previous modes when editing a help file
        a   all previous modes
        r   for |hit-enter| and |more-prompt| prompt
    Normally you would enable the mouse in all four modes with:
        :set mouse=a
    When the mouse is not enabled, the GUI will still use the mouse for
    modeless selection.  This doesn't move the text cursor.

    See |mouse-using|.  Also see |'clipboard'|.

    Note: When enabling the mouse in a terminal, copy/paste will use the
    "* register if there is access to an X-server.  The xterm handling of
    the mouse buttons can still be used by keeping the shift key pressed.
    Also see the 'clipboard' option.

林金宏 講解 火災發生的「火場求生」注意事項

火場求生的正確觀念,跟以前教得不太一樣,遇到火災不是要快逃,而是要關起門來等待救援。

  • 「遇到火災,關門大吉」「克服心魔、等待救援」

閱讀全文〈林金宏 講解 火災發生的「火場求生」注意事項〉

tail 遠端多台機器 Log 檔的工具

遠端機器很多,或者機器有多台,但是想要將 Log 檔靠 tail 一起持續觀看(ex: 看每台的 syslog.. 等),可以使用下述程式:

  • monkeytail - tail variant designed for web developers monitoring logfiles

閱讀全文〈tail 遠端多台機器 Log 檔的工具〉