2024年1月30日 星期二

oracle 日期常用函數 (SYSDATE、日期格式)

 SYSDATE

--◎ 可得到目前系統的時間 

ex.
select sysdate from dual;

sysdate
----------
20-SEP-07

常用之日期格式

kex error : no match for method server host key algo: server [ssh-rsa,ssh-dss]

 解釋錯誤訊息 “[ERROR] could not connect to ssh://172.16.65.210:22 - kex error : no match for method server host key algo: server [ssh-rsa,ssh-dss], client [ssh-ed25519,ecdsa-sha2-nistp521,ecdsa-sha2-nistp384,ecdsa-sha2-nistp256,rsa-sha2-512,rsa-sha2-256]” 的含義以及如何解決。

錯誤分析:

  • [ERROR] could not connect to ssh://172.16.65.210:22:表示無法連接到 SSH 伺服器 172.16.65.210 的 22 埠。
  • kex error : no match for method server host key algo:表示金鑰交換(Key Exchange,KEX)階段出現問題,客戶端和伺服器無法就伺服器主機金鑰演算法達成一致。
  • server [ssh-rsa,ssh-dss]:表示伺服器僅支援 ssh-rsa 和 ssh-dss 演算法。
  • client [ssh-ed25519,ecdsa-sha2-nistp521,ecdsa-sha2-nistp384,ecdsa-sha2-nistp256,rsa-sha2-512,rsa-sha2-256]:表示客戶端支援的演算法列表,但不包含伺服器支援的 ssh-rsa 和 ssh-dss。

zero-width space

 zero-width space: 就是沒有寬度的空白,字元碼 \u200b , 或是 urlencode = %e2%80%8b

當你從 word , excel ,PDF 複製文字貼到記事本,網頁textbox, 或是 visual studio
有時候會把這個碼也一起貼上,重點是: 你肉眼根本看不出來

branching-strategy CASE1

以下是供不同協同作業型態客製,重新定義各分支 目的:達到不同需求不同上線時間,可進行開發與測試,需求上線可調整。 Master 分支、Develop 分支為主要分支: 不會刪除、不允許刪除,若有發生誤刪、遺失、受污染無法救回: Develop 分支 重新從Master開出分支 依...