2023年12月22日

如何在捷徑(Shortcut )步驟加入「設定螢幕鎖定時間」

Add Action → Open URLs

url:

prefs:root=DISPLAY&path=AUTOLOCK


ref:Use This Shortcut to Change Auto-Lock Timer on Your iPhone Anytime - MashTips

https://mashtips.com/shortcut-to-change-auto-lock-settings-on-iphone/

2023年10月18日

[IntelliJ IDEA]「new UI」如何讓ctrl + click 開新Tab

 在切成「new UI」前,ctrl + click 會是另開editor tab


要回復這效果的設定是 關掉「Enable Preview Tab 」

(click the gear icon in the Project view)

2023年7月28日

myBatis update and return

 public interface SystemParameterDAO {

/**

* @see SystemParameterSqlBuilder#update

*/

@UpdateProvider(type = SystemParameterSqlBuilder.class, method = "update")

@Options(statementType= StatementType.CALLABLE)

void update( SystemParameter systemParameter);


class SystemParameterSqlBuilder {

public String updateById() {

return "BEGIN "

+ "        UPDATE system_parameter"

+ "        SET system_param_value = #{systemParamValue},"

+ "            update_time = current_timestamp"

+ "        WHERE  system_param_name = #{systemParamName}"

+ "            RETURNING CREATE_TIME, UPDATE_TIME INTO #{createTime, mode=OUT, jdbcType=TIMESTAMP}, #{updateTime, mode=OUT, jdbcType=TIMESTAMP};"

+ "   END;     ";


}

}

}

2023年4月9日

如何在notion 中 於文字上標注假名

 很久以前寫過 「利用 tag 幫文字標注音 假名」可以在網誌裡達成 在漢字上面標示假名的效果

但在notion中 要如何做到

今日 きょう あつ いですね

可以例用插入數學公式方式

/math

選擇「Inline equation」

輸入:

\overset{きょう}{今日} は\overset{あつ}暑いですね

\overset 讓字在上面,若漢字不只一個字 需要大括號括起來,才不會全都在第一個字上面

註:在這模式下,無法用一般的字形格式變粗體,但可在前面加上

\bf 

整段就能是粗體字了!