Monday, July 04, 2022
The new wave of React state management
I don't quite understand why react's state management needs to be so complicated, maybe I'm not doing many crud apps?
I did read the book it mentioned: Micro State Management with React Hooks
and I found valtio is the most simple one: mutable and provides snapshot and tracking, makes it very easy to understand
I also learned using WeakMap to optimize memory usage
and use Proxy to detect mutation to object properties
I was writing a rules engine before reading this, I used _.cloneDeep
to guard mutation but I know memory usage could be an issue.
Tuesday, July 05, 2022
gonna read some new books:
Core Kubernetes, my main focus will be on this book.
In-Memory Analytics with Apache Arrow
I'm not using Apache Arrow, but Chapter 4: Format and Memory Handling is interesting
Network Programming with Go Language
just see is there anything new inside
I'm always interested in otp, try read it this time
Friday, July 15, 2022
I think since vim8, it displays Vim: Reading from stdin...
when using vim -
, to hide it add --not-a-term
argument
vim added a shortcut to execute current line by a command (using echo
as example):
nnoremap <leader>e :r !echo <C-r>=getline('.')<CR><CR>
or dangerously, pass current line to bash
: :.w !bash
, sudo
version: :.w !sudo bash
an alias to pass current tmux pane visible content to vim:
tmux capture-pane -p | sed '/^$/d' | vim --not-a-term -c "setlocal buftype=nofile bufhidden=hide noswapfile" -
the sed
removed empty lines
this one is useful for testing api call timeout or simulate slow connection:
json-server db.json --port 3001 --delay 3000
to support git push
in tig
, add this line to ~/.tigrc
:
bind status P !git push origin
Saturday, July 16, 2022
to grep project files anywhere in a git repo, add :/
, it's same as git rev-parse --show-toplevel
:
git grep pattern -- :/
the nice thing of it is it's using relative path, which is shorter and you can still open files at pointer
previously I have to use realpath --relative-to . filename
to convert absolute path to relative
Monday, July 25, 2022
I love Semantic UI, sad that it is not under development anymore, luckily there's a community fork: Fomantic-UI
some interesting ideas here: Non-Obvious Docker Uses
also this talk: Lightning Talk: OCI Images for More Than Containers
like using docker as make, also some existing tools that have the similar approach:
- Earthly - Better Builds
- stepchowfun/toast: Containerize your development and continuous integration environments.
- google/dagger: A fast dependency injector for Android and Java.
Blog Archive
- Newer Entries
- 2022 August
- 2022 September
- 2022 October
- 2022 November
- 2022 December
- 2023 January
- 2023 February
- 2023 March
- 2023 April
- 2023 July
- 2023 August
- 2023 September
- 2023 October
- 2023 November
- 2023 December
- 2024 January
- 2024 February
- 2024 March
- 2024 April
- 2024 May
- 2024 June
- 2024 August
- 2024 September
- 2024 October
- 2024 November
- Older Entries
- 2022 June
- 2022 May
- 2022 April
- 2022 March
- 2021 December
- 2021 September
- 2021 August
- 2021 June
- 2021 May
- 2021 April
- 2021 March
- 2021 February
- 2021 January
- 2020 December
- 2020 November
- 2020 October
- 2020 September
- 2020 August
- 2019 December
- 2019 November
- 2019 October
- 2019 July
- 2019 May
- 2019 April
- 2019 March
- 2019 February
- 2019 January
- 2018 December
- 2018 November
- 2018 October
- 2018 September
- 2018 August
- 2018 July
- 2018 June
- 2018 May
- 2018 April
- 2018 March
- 2018 February
- 2018 January
- 2017 December
- 2017 November
- 2017 October
- 2017 September
- 2017 August
- 2017 July
- 2017 June
- 2017 May
- 2017 April
- 2017 March
- 2017 February
- 2017 January
- 2016 December
- 2016 November
- 2016 October
- 2016 September
- 2016 August
- 2016 July
- 2016 June
- 2016 May
- 2016 April
- 2016 March
- 2016 February
- 2016 January
- 2015 December
- 2015 November
- 2015 October
- 2015 September
- 2015 August
- 2015 July
- 2015 June
- 2015 May
- 2015 April
- 2015 March
- 2015 February
- 2015 January
- 2014 December
- 2014 November
- 2014 October
- 2014 September
- 2014 August
- 2014 March
- 2014 February
- 2014 January
- 2013 December
- 2013 October
- 2013 July
- 2013 June
- 2013 May
- 2013 March
- 2013 February
- 2013 January
- 2012 December
- 2012 November
- 2012 October
- 2012 September
- 2012 August