100 Days of Code: Day 05
100 Days of Code: Day 04
100 Days of Code: Day 03
100 Days of Code: Day 02
100 Days of Code: Day 01
100 Days of Code: Day 00
Intermediate Sed Usage
If you’ve been using Linux for any small length of time,
you’ve likely used sed
before.
Most of the time, you’ve seen it in the form of sed "s/find/replace/g"
,
so you simply go to it whenever there’s a replacement you want to do.
But sed
stands for stream editor,
and as a tool it can do more than just find and replace.
Neodots
Ah, dotfile management… Tools like GNU Stow for symlink management and tools like Chezmoi for templating.
Everyone has their own solution, and none of them are for me.
[Read More]Creating an Asynchronous Zsh Theme
Pure bliss
I converted to Zsh a while back, when I first saw the Oh-My-Zsh framework.
OMZ is really just a long chain of source
calls
with some logic to turn groups of features on or off.
I’ve since changed to Zplugin
(not to be confused with a similar framework, zplug),
a wonderful framework which supports asynchronous plugin loading.
This has better than halved the load time for Zsh on my Pi and phone (Termux).
However, my theme had not changed, it still has to wait until (relatively)
expensive git
calls have completed before redrawing the prompt.
Now is the time to change this.