[Hugo] 官方稱之為世界最快的架站框架?「Hugo」

前言 現今的架站平台種類很多,除了常見的WordPress、Wix、weebly等架站平台外,若想體驗輕量化、快速的部屬,不妨可以試試看Hugo這個平台,官網號稱該產品是「The world’s fastest framework for building w...

August 29, 2022 · 2 分鐘 · 502 字 · Mars

[Java] 輕鬆理解字串記憶體分配

String中equals與==的差異? equals 比較物件裡的值(屬性)是否相同。 == 比較物件(實體、記憶體空間)是否相同。 舉例 : String s1 = new String("restful") ; String s2 = new String("restful") ; String s3 = new String("peaceful") ; String s4 = s1 ; String s5= "restful" ; String s6= "restful" ; System.out.println(s1.equals(s2)) ; System.out.println(s1.equals(s3)) ; System.out.println(s1 == s2) ; System.out.println(s1...

August 29, 2022 · 1 分鐘 · 267 字 · Mars

[Git] GitFlow是什麼?

何謂GIT Flow? 當多人開發同一個專案的時候,若沒有制定好共同的規矩,將導致專案版控上的問題。 因此有人提出一套流程讓大家遵循。 各分支應用情境 Master 分支 主要是用來放穩定、可上線的版本。這個分支的來源只能從別的分支...

August 28, 2022 · 1 分鐘 · 399 字 · Mars

[Git] 三分鐘了解Git基本指令

Git版本查詢、更版 確認目前電腦 Git 的版本 git version 更新到最新版 git update-git-for-windows Git相關指令 1. git config: $ git config --global user.name "Mars" $ git config --global user.email "mars@xxx.com" 2. git init 新建一個local repository 3. git add 將files加入git 單一檔案加入索引: git add <檔案名稱&g...

August 28, 2022 · Mars

[hardware]如何透過指令對SD卡進行格式化?

啟動 CMD 輸入 diskpart 輸入 list disk 查看當前有哪些磁碟 輸入 select disk 1 假如欲選擇之磁碟為1 輸入 clean 輸入 create partition primary 輸入 acitve 輸入 format fs=fat32 quick 用fat32格式化磁碟分區

August 28, 2022 · 1 分鐘 · 63 字 · Mars

[Leetcode][C#] 2114. Maximum Number of Words Found in Sentences

Example 1: Input: sentences = [“alice and bob love leetcode”, “i think so too”, “this is great thanks very much”] Output: 6 Explanation: The first sentence, “alice and bob love leetcode”, has 5 words in total. The second sentence, “i think so too”, has 4 words in total. The third sentence, “this is great thanks very much”, has 6 words in total. Thus, the maximum number of words in a single sentence comes from the third sentence, which has 6 words. Example 2: Input: sentences = [“please wait”, “continue to fight”, “continue to win”] Output: 3 Explanation: It is possible that multiple sentences contain the same number of words....

August 25, 2022 · Mars