Open a file for editing :e path/to/file.txt
Return to Normal mode ESC or <CTRL>+C
Navigating around text
As configured in my dotfiles.
start new:
tmux
start new with session name:
type git # get the type of any command. Great for | |
# seeing if a command exists. | |
ls -t # sort by time, newest first | |
ls -tr # sort by time, oldest first | |
grep -r "test" FILE_OR_DIR # recursive full text search | |
grep -i "test" FILE # case insensitive | |
grep -c "pattern" FILE # count | |
grep -n "pattern" # show line numbers |
$ gpg --gen-key | |
# 1) RSA and RSA (default) | |
# RSA keys may be between 1024 and 8192 bits long. | |
# You can set 'default-key $ID' in ~/.gnupg/gpg.conf | |
$ gpg --list-keys | |
$ gpg --list-secret-keys | |
$ gpg --export -a $ID > gpg-pubkey.asc | |
$ gpg --keyserver keys.gnupg.net --send-keys $ID |
#README:
This script for mpv intends to offer the fastest and simplest way to convert parts of a video—while you’re watching it and not really more work intensive than making a screenshot. A short demonstration: https://d.maxfile.ro/omdwzyhkoa.webm
##Installation:
You need:
The email address from which Okabe received the static video ([email protected]
) replies
to blank mails with the following message:
Your mail concerning "[the subject of your email]"
[email protected] はこの世界線に存在していません. [It does not exist in this world line.]
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
Commit type | Emoji |
---|---|
Initial commit | 🎉 :tada: |
Version tag | 🔖 :bookmark: |
New feature | ✨ :sparkles: |
Bugfix | 🐛 :bug: |
// Copyright (c) 2015-2021, bacondither | |
// All rights reserved. | |
// | |
// Redistribution and use in source and binary forms, with or without | |
// modification, are permitted provided that the following conditions | |
// are met: | |
// 1. Redistributions of source code must retain the above copyright | |
// notice, this list of conditions and the following disclaimer | |
// in this position and unchanged. | |
// 2. Redistributions in binary form must reproduce the above copyright |