What is a now page? It's a page where I write about the things I am currently focusing on. This cool idea was launched by Derek Silvers, you can find more info here
I just figured a neat trick for my bash aliasrc. It's a way of having defaults for a command. Say you want the default format for `date` to be `date -R`, use this:
default_date() {
if [[ $# == 0 ]]; then
date -R
else
date "$@"
fi
}
alias date=default_date
I have been working on a little program for the town. Almost finished! I learned a lot about c.
Currently switching from neovim to emacs. neovim cheated on me.
last edited: 2024-10-25
PS: if this was last edited a long time ago, please feel free to bug me for an update via email :)