diff --git a/041a1acc.html b/041a1acc.html index 65c4272..2b7a6f1 100644 --- a/041a1acc.html +++ b/041a1acc.html @@ -1,63 +1 @@ -!DOCTYPE html>
!
shell command filtersSpecifying a range when running a !
shell command filters the range through the specified shell command by piping the range’s content into the shell command via stdin and replacing the range with the shell command’s stdout.
Running
:1,10!sort -r
on
2
+3
+7
+1
+9
+4
+0
+8
+5
+6
results in:
9
+8
+7
+6
+5
+4
+3
+2
+1
+0
The expression register (=
) can be used to evaluate expressions, like 2+3
. If this register is used while in Insert mode (<C-r>=
), the results of the expression will be inserted after the expression is evaluated.
The expression register (=
) can be used to evaluate expressions, like 2+3
. If this register is used while in Insert mode (<C-r>=
), the results of the expression will be inserted after the expression is evaluated.
<C-d>
in command mode presents an auto-completion listIn command mode you can specify a range of lines to operate on, based on patterns, rather than absolute (or relative line numbers). This can be a great way to isolate changes without looking up the individual line numbers.
:/start/,/end/cmd<CR>
On a Python file, this might look like:
def main():
+ foo = do_something()
+ bar = do_something_else(foo)
+ return bar
:/def main/,/return/s/foo/baz/g<CR>
results in:
def main():
+ baz = do_something()
+ bar = do_something_else(baz)
+ return bar
x
into the top of each roll*2
x
into the top of each roll*2
:read
allows piping shell stdout into a buffer:read !ls<CR>
for example:
041a1acc.md
+56653cb1.md
+73dcbcc7.md
+82ded935.md
+9227847e.md
+92598822.md
+96fc3093.md
+9b74f625.md
+9db45ab6.md
+aab45963.md
+acc60422.md
+b364352b.md
+b926d9bd.md
+c4e96daf.md
+d2e178e0.md
+da69e0f5.md
+dc879f80.md
+ec21e3f5.md
+ec672cb5.md
+fa6a31b4.md
+index.md
+neuron.dhall
+static
Balancing many disparate tasks is good for my morale (“Wow! If I get bored with this one thing, I can just do something else!”), but feeling “behind” is most decidedly not good for my morale. Timeblocking and scheduling are great, but they require discipline. I like to think that I am effectively entering into a short-term contract with myself. If the terms aren’t clear, the chances of failure go up (significantly). Interestingly, I think this scenario represents a conflict of interest: I am basically the party responsible for monitoring that contract, as well as the one actually executing the work.
Besides having a clear plan (a statement of work) I think the next biggest concern involves distractions. In my experience, you can’t get rid of distractions, but you can be judicious about what distractions you choose to entertain. That gets to the same end-goal of choosing when to focus on distractions, but puts a different emphasis on the problem.
The “hard” part (to me) is that developing the intuition of what to do (and when) is much easier said than done. Maybe because it is a constantly moving target?
Balancing many disparate tasks is good for my morale (“Wow! If I get bored with this one thing, I can just do something else!”), but feeling “behind” is most decidedly not good for my morale. Timeblocking and scheduling are great, but they require discipline. I like to think that I am effectively entering into a short-term contract with myself. If the terms aren’t clear, the chances of failure go up (significantly). Interestingly, I think this scenario represents a conflict of interest: I am basically the party responsible for monitoring that contract, as well as the one actually executing the work.
Besides having a clear plan (a statement of work) I think the next biggest concern involves distractions. In my experience, you can’t get rid of distractions, but you can be judicious about what distractions you choose to entertain. That gets to the same end-goal of choosing when to focus on distractions, but puts a different emphasis on the problem.
The “hard” part (to me) is that developing the intuition of what to do (and when) is much easier said than done. Maybe because it is a constantly moving target?
Put your static files (images, pdf, etc.) here.
c
instead of deleting and inserting in visual modeUsing the c
change action in visual mode is very convenient! For some reason I often neglect that action when operating in visual mode, instead opting for two actions: delete and insert. This seems like a habit worth breaking!
adduser $USER
-usermod -aG sudo $USER
-# if account requires password-less elevation:
-sudo visudo # add an entry like: $USER ALL=(ALL) NOPASSWD:ALL
-# confirm that the account works as expected
-su - $USER
-
adduser $USER
+usermod -aG sudo $USER
+# if account requires password-less elevation:
+sudo visudo # add an entry like: $USER ALL=(ALL) NOPASSWD:ALL
+# confirm that the account works as expected
+su - $USER
:normal
command runs normal commands on multiple linesThe :normal
command is a useful way to run the same Normal mode command on multiple lines.
:%normal i# <CR>
The command above will comment out an entire Python source file.
<C-r><C-w>
in command mode will insert the word under the cursor in the cmdRight now this is just a draft outline, ideally I will circle back on this some time this year to fill in some more details.
Right now this is just a draft outline, ideally I will circle back on this some time this year to fill in some more details.
copy
command doesn’t use a registerThe copy
command doesn’t use a register. This is useful for not overwriting the current value in the default register - you might not need to run the copy
command, but it might help keep your registers clean.
q:
opens the command history windowq:
opens the command history window. When this window is open, it maintains exclusive focus.
From Normal mode, R
activates Replace mode, which behaves a lot like Insert mode, except that it allows you to effectively type over existing content. This is different from r
, which is a single character replacement (ending back in Normal mode) - R
requires you to deliberately exit back to Normal mode.
From Normal mode, R
activates Replace mode, which behaves a lot like Insert mode, except that it allows you to effectively type over existing content. This is different from r
, which is a single character replacement (ending back in Normal mode) - R
requires you to deliberately exit back to Normal mode.
The notebook has 23 notes and 25 links. It has 3 clusters in its folgezettel graph. Each cluster's folgezettel heterarchy is rendered as a forest.
experiment(s) with a public notebook.
experiment(s) with a public notebook.
Notes without any folgezettel relationships
The zettelkasten has 13 zettels and 16 links. It has 2 clusters in its folgezettel graph. Each cluster's folgezettel heterarchy is rendered as a forest.