2026-02-24, Tuesday
Work
Today
- Major focus was on benchmark.
- I spent some time translating 3 benchmarks into English. One of them is really interesting because the data is embedded in the code. So it’s a bit tricky to translate.
- Also spent some time looking into how the metrics are computed.
Tomorrow
- Spend some time reading Rabimba’s draft.
- Generate evaluation results in English and compare with the Chinese results.
Blocker
- H100 card; Model weights;
My Backlog
- Deploy MCP server inside PayPal Internal network
- Deploy Webapp inside Paypal internal network
Life
A good amount of time is spend wristling with USPS. The 51 lbs box sent from home is still at large.
Learning
Enable edit-command-line using three lines
autoload -Uz edit-command-linezle -N edit-command-linebindkey '^x^e' edit-command-lineThis is useful in editing long command. Once finished editing, simply :wq (assuming using vi). zle stands for zshell line editor. -U stands for Unaliased. z stands for zhsell style.
Some keyboard shortcut might be useful to improve typing:
- Delete one word in CLI ---
C-W - Undo ---
C-_ - Prepend the previous command ---
!!- If you don’t know what’s the previous command --- press
<SPC>or<TAB>
- If you don’t know what’s the previous command --- press
jless is a very nice JSON viewer.
-
Suffix alias ---
alias -s {SUFFIX}="{COMMAND}"- Useful for only type the file name and open the file automatically.
-
Global alias ---
alias -g {ONE_ALIAS}="{COMMAND}"- Useful for short hand
- Example:
alias -g NE='2>/dev/null'
-
zmvcan batch move files- Enable ---
autoload zmv - No exec ---
-n - e.g.
zmv -W *.txt *.log(-Wstands for Wildcard)
- Enable ---