管線命令 ( Pipe )
管線命令是用 "|" 去連接,只要前一資料能變成 standard input。管線命令僅會處理 standard output,而不會處理 standard error output。下面用時下最夯的 MBTI 作的假資料。
index name MBTI
1 JunYe ISTJ
2 JunYe ISTP
3 JunYe ESTP
4 JunYe ESTJ
5 Mario ISFJ
6 Mario ISFP
7 ...
2020年7月20日 星期一
2020年7月16日 星期四
Linux - Shell Scripts (2)
sh vs bash
我有時候用 sh 會讓 shell script 執行不過,通常會報 Bad substitution 之類的錯誤。其實是因為我用 ubuntu,ubuntu 的 sh 其實是指到 dash 而非 bash。dash 在這不作多介紹,
把它想像成輕量型的 bash,所以支援的功能有限,所以有機會報錯。
ubuntu: cd /bin/
ubuntu: /bin$ ls -l
lrwxrwxrwx 1 root root 4 4月 9 16:36 sh -> dash
shell 字串操作
#!/bin/bash
...
2020年7月14日 星期二
Linux - Shell Scripts (1)
sh v.s source
如果直接用 sh 執行 script,基本上就是開一個子程序去執行 script。所以父程序要獲得子程序的結果,通常都是靠著 export 解決 scope 的不同。若是使用 source 去執行 script,則是直接用本身程序去執行,所以本身與腳本享有共同 scope。更多請參考 : 鳥哥私房菜。
基本的 variable & operator
基本上 shell 的語法網路上有很多相關資料,這邊我想紀錄的是那些對於菜鳥不怎麼直觀的 variable & operator。而且其實我認為...
2020年7月11日 星期六
英文歌詞翻譯 Rudimental - These Days feat. Jess Glynne, Macklemore & Dan Caplen
I know you moved onto someone new
我知道你已經開始尋找新對象
Hope life is beautiful
希望你過得很好
You were the light for me to find my truth
你曾經是我追尋自我的燈塔
I just wanna say, thank you
現在我只想說 謝謝你
Leaving to find my soul
為了找尋真正的自我
Told her I had to go
告訴她我必須走了
And I know it ain't pretty
我知道這一點都不美好
When our hearts get...
讀書心得 - C++ Primer (5th Edition) - Chapter 2 (3) - Type Aliases

Type Aliases
創造資料型態的同義詞,通常是用 typedef 來去實現。
typedef double wages; // wages is a synonym for double
typedef wages base, *p; // base is a synonym for double, p for double*
auto
...
2020年7月9日 星期四
讀書心得 - C++ Primer (5th Edition) - Chapter 2 (2) - Const

修飾詞 : Const
如果我們想要一個不可被改變的參數,這時就會需要這個修飾詞 ( Qualifier ) const。
const int bufSize = 512; // input buffer size
bufSize = 1024; // error: attempt to write to const object
Const...
2020年7月3日 星期五
讀書心得 - C++ Primer (5th Edition) - Chapter 2 (1) - Primitive Types

C++ 原生內建的資料型態 ( Primitive Types )
C++ 定義了一些算術用的資料型態 ( Arithmetic Types ) 和一個特殊的資料型態 void。Arithmetic Types : Integer, Character, Boolean, Floating Point, Double Floating Point, Wide Character。
...
Popular Posts
-
lvalue 、rvalue 基本概念 左值 (lvalue) : 一個佔據某個特定記憶體的值。 右值 (rvalue) : 一個 expression 結束後就消失的值。 基本上這兩個定義包含了全部的值,非左即右,非右即左。 int var = 4; // v...
-
You try to hold me down so I became a soldier 你想要控制所以我成為了戰士 Built up all theses walls and now I'm climbing over 監牢般的城牆如今我已越過 Thos...
-
Ooh, don't we look good together? 我們看起來是不是很棒? There's a reason why they watch all night long 這就是為何他們整晚都看著我們的原因 Yeah, kn...
-
Job Company : Houzz Job : Back-End Software Engineer Source : Recruiter on LinkedIn Result : 止步二面 Summary 1. 英文程度不佳 :...
-
Don't lie, I know you've been thinking it 別說謊了,我知道你一直很渴望 And two times, you let it slip from your lips 兩次了,你那不想讓人聽見的低語 You...
-
報告在製作時,一定會遇到要字串轉數字 在 BCB 裡有方便的函式 常見的有 String str = "123" int x = StrToInt(str); float y = StrToFloat(str); 但有時候...
-
BCB 選擇路徑(資料夾) 工作關係要將各式各樣的資料彙整並輸出 各式各樣的資料都放在同一目錄下 所以在設計程式就必須設計可以給使用者選擇目錄 但BCB10似乎沒有這種元件 (其實有 DirectoryListBox 但我駕馭不了) 於是Google發現大家用的...
-
BCB TDateTime 時間操作及應用 在 BCB 裡有關時間的操作幾乎都是與 TDateTime 這個 Class 相關 若找不到相關資料可以用 BCB 的 HELP ( 游標移到要查詢的函式或Class 並按 F1 ) 介紹幾個個人有在用的函式 TDate...
-
Python Google API - Python 學習筆記 Google API - Python 學習筆記 - Upload post
-
warning: left shift count >= width of type 一般來說,就是 shift 的 bit 大於資料型態的 bit 數。但有時使用 unsigned long 仍然會出錯,因為 unsigned long 會依照系統的不同,有...