aliquote.org

Latest micro-posts

You can also also view the full archives of micro-posts. Longer blog posts are available in the Articles section.

2026-08-08 22:29 #

img

2026-08-08 20:15 #

Two very useful applicationss with stunning Apple design! Expect some quick review soon.

2026-08-08 19:17 #

Thing is: BibDesk insists in transforming your clean BibTeX file into a mess. I already use bibclean to format my database:

if executable("bibclean")
  setlocal formatprg=bibclean\ -align-equals\ -brace-protect\ -delete-empty-values\ -fix-accents\ -quiet
endif

Now, I need to resort to bibtool to remove extra stuff added by BibDesk on the fly:

nnoremap <silent> <buffer> g= :!bibtool -q -s -r ~/Documents/notes/clean-bibdesk.rc % -o %<cr>

In my case, clean-bibdesk.rc actually reads:

delete.field { bdsk-file-1 }
rename.field { bdsk-url-1=url }
key.generation = off
preserve.key.case = on
preserve.keys = on
print.line.length = 9999999

I guess it will evolve over time with the new surprises Bibdesk has in store for me.

2026-08-07 15:59 #

An ever-changing collection of command line tools that I find useful on a daily basis or just fun to play with from time to time.

2026-08-07 15:58 #

Making ASCII art in Vim: Learn you some effective Vim motions. #vim

2026-08-07 15:44 #

htop explained. We need more review like that. #unix

2026-08-05 13:04 #

That’s what it looks like when you’re transfering a whole Maildir to a new HD. RIP my old Time Capsule (2nd gen, 2 To) which will no longer be supported after upgrading to macOS 27.

img

2026-08-04 20:21 #

/me is listening to “What You Were” by The Cranberries

2026-08-04 20:16 #

Thanks to Armin Briegel, it is easy to replace Google translation cli tool with a proper Swift utility that relies on builtin Apple Translate and local language assets.

img

Bonus: Put this in your Vim Markdown plugin and you can replace a visual selection with its translation to the appropriate language (here, English):

xnoremap <buffer> <silent> grN :!translate --to en<cr>