Day 430
German - Geburtsname
Geburtsname: Vorname oder Nachname - Das versteht man darunter - FOCUS Online
Müssen Sie in einem Formular Ihren Geburtsnamen angeben, handelt es sich um Ihren Nachnamen, den Sie bei Ihrer Geburt erhalten haben. Sofern Sie nicht geheiratet und den Namen Ihres Ehemanns oder Ihrer Ehefrau angenommen oder eine Namensänderung beantragt haben, können Sie hier Ihren aktuellen Nachnamen angeben.
Bash/terminal command with a certain percent chances of running
[ $[$RANDOM % 10] = 0 ] && do_this || do_that
“s gives roughly a 1 in 10 chance of do_this
running, and a 9 in 10 chance of do_that
running. You can omit ||
do_that
to just have a 10 percent chance of do_this
running.” (seen here: Clear Your Terminal in Style - Adam.)
Vim vimmotion plugin in visual mode
The vim vim-easymotion plugin (easymotion/vim-easymotion: Vim motions on speed!) also works in select/visual mode!
EDIT: there’s an intellij idea plugin! Just wow
Intellij Idea / Ideavim / Easymotion plugin
I’m very very very glad about this, this is one thing that I missed from vim! AlexPl292/IdeaVim-EasyMotion: EasyMotion emulation plugin for IdeaVim
To activate I had to add set easymotion
after setting the leader key in .ideavimrc
.
I just to not-forget about it.