nekopara ep 2

pique sb’s curiosity, interest
exquisite
up to
quitting time
bummer
sling
lure
count on me
not a chance
exhilarating
irresistible
squeaky
squeaky-clean
matted
rinse
fluffy
minty
tuck sb in

pique sb’s curiosity, interest 引起某人的興趣
exquisite 完美,卓越,強烈(感覺)
up to 從事 ,忙於
quitting time 下班時間
bummer 令人不快的事情;帶來不便的事
sling 扔,丟 , 掛上
lure 引誘
count on me 信任我,算我一份
not a chance 不同意/沒機會
exhilarating 使人興高采烈的
irresistible 不可抵抗的
squeaky 吱吱響的;發尖叫聲的,險勝的
squeaky-clean 乾乾淨淨的,一塵不染的 品行完美無瑕的
matted 亂糟糟 ,結成一塊
rinse (用清水)沖洗,涮洗
fluffy 毛茸茸的
minty 有薄荷香味的
tuck sb in 給(孩子)掖好被子

up to 用法:

  1. “up to “意為”多達”。例如:
    I can take up to four people in my car. (我的車能載4 個人。)
繼續閱讀

nekopara ep 1

wiggle
patisserie
utmost
knead
confess
hound
dig in
pounce
pounce on sth
emulate
mean to/meant to
sear
ponza vinegar
slap sth on

wiggle (使)扭動;(使)擺動
patisserie 法式糕餅店
utmost 最大的
knead 揉,捏
confess 說服
hound 追趕
dig in 開始吃
pounce 猛撲
pounce on sth 立即批評(錯誤),欣然接受
emulate 模仿,努力趕上
mean to/meant to 打算要
sear 燒灼,煎
ponza vinegar 橘子醋
slap sth on 沾,塗上

書摘 - Kurbernete: Up and Running-Introduce-1

書摘 - Kurbernete: Up and Running-Introduce - 1

Kurbernete 是一個開源的應用容器部屬自動化管理工具(orchestrator),它提供成功建置與部署可擴展可依賴分布是系統的軟體需求。
人們有許多理由使用像Kurbernete這樣的 容器和容器 API服務,但仍可追溯回下列以下原因:

  • Velocity(速度)
  • Scaling (of both software and teams) 擴展性
  • Abstracting your infrastructure 抽象化基礎設施
繼續閱讀

打包異動檔案和列出刪除檔案

打包異動檔案和列出刪除檔案

打包異動檔案

可以打包上一個commit異動檔案 成一個zip檔案

1
git archive --format=zip --output=changedFiles.zip HEAD $(git diff-tree -r --no-commit-id --name-only --diff-filter=ACMRT HEAD^ HEAD)

列出刪除檔案

列出刪除的檔案

1
git diff-tree -r --no-commit-id --name-only --diff-filter=D HEAD^ HEAD > deletedFileList.txt

Linux共用與Windows資料夾建立軟連結

[筆記] Linux共用與Windows資料夾建立軟連結

前言

最近在玩Linux時
在本機Win 10 上裝了CentOS 7
mount 共用資料夾 讓CentOS7 nginx
可以讀到在win 10裡 開發時的Project Folder
但npm和yarn 在install時 碰到了以下的問題:
EROFS: read-only file system, symlink ‘../../../parser/bin/babel-parser.js’ -> ‘/media/web/webpack-practice/node_modules/@babel/core/node_modules/.bin/parser
調查了一下 發現是因為VM mount了資料夾後
卻沒有權限建立link連結

環境

主機: Windows 10
VM: VituralBox 6.0.2r2 -CentOS

解法

首先是Virtual Box的設定
開啟Cmd 執行:

繼續閱讀

[框架簡介]Symfony

什麼是Symfony?

對於有使用Laravel開發過的工程師來說,想必對Symfony這個名詞應該不陌生,在安裝和開發的過程中,都會看到這個名詞。

那麼什麼是Symfony呢?

看看官網的定義:

Symfony is a set of PHP Components, a Web Application framework, a Philosophy, and a Community-all working together in harmony.
Symfony 是 一套php的組件,一個框架,一個哲學,一個社群- 這些元素一起和諧的運作

繼續閱讀