Skip to content

Commit

Permalink
Try a few more things
Browse files Browse the repository at this point in the history
  • Loading branch information
utensil committed Dec 15, 2024
1 parent f124576 commit eb6b0b8
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
14 changes: 14 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -547,4 +547,18 @@ prep-p2t:
pip install pix2text[multilingual]>=1.1.0.1
python setup.py py2app -A
# https://github.com/Byaidu/PDFMathTranslate
pzh:
uvx pdf2zh -i

prep-date:
which git-backdate || (curl https://raw.githubusercontent.com/rixx/git-backdate/main/git-backdate > /usr/local/bin/git-backdate && chmod +x /usr/local/bin/git-backdate)
which gdate || brew install coreutils
alias date=gdate

date: prep-date
#!/usr/bin/env zsh
alias date=gdate
git backdate origin/main "7 days ago..today" --no-business-hours

4 changes: 3 additions & 1 deletion trees/uts-0018.tree
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@
- read [Playground Wisdom: Threads Beat Async/Await](https://lucumr.pocoo.org/2024/11/18/threads-beat-async-await/), and learn that in imperative programming, structured concurrency might be better than async/await, we don't always need to introduce functional programming concepts
- read [From where I left](https://antirez.com/news/144) by antirez, the author of Redis, and learn that he likes the new license, and he does more work but better work by using AI to proofread and help testing the work instead of replace what he does better
- read [Fermat’s Last Theorem — how it’s going](https://xenaproject.wordpress.com/2024/12/11/fermats-last-theorem-how-its-going/), and enjoy the story of finding the right work for fixing a fixable proof
- read [Dude, where's my main?](https://samwho.dev/blog/dude-wheres-my-main/) and learn that executables can be position-independent just like libraries
- read [Dude, where's my main?](https://samwho.dev/blog/dude-wheres-my-main/) and learn that executables can be position-independent just like libraries, and wonder if I can implement chaos engineering in Rust to learn more about low-level system design
- read [post-mortems](https://github.com/danluu/post-mortems) for massive IT outage in recent years, and wish to keep a track of inspiring ones of them
- learn about [git-backdate](https://github.com/rixx/git-backdate), which can help me date unpushed commits better
}

\mdblock{12-12}{
Expand Down

0 comments on commit eb6b0b8

Please sign in to comment.