See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
Code is clean if it can be understood easily – by everyone on the team. Clean code can be read and enhanced by a developer other than its original author. With understandability comes readability, changeability, extensibility and maintainability.
| document.querySelector('[contenteditable]').addEventListener('paste', function (event) { | |
| event.preventDefault(); | |
| document.execCommand('inserttext', false, event.clipboardData.getData('text/plain')); | |
| }); |
| #!/bin/bash | |
| echo "Generating an SSL private key to sign your certificate..." | |
| openssl genrsa -des3 -out myssl.key 1024 | |
| echo "Generating a Certificate Signing Request..." | |
| openssl req -new -key myssl.key -out myssl.csr | |
| echo "Removing passphrase from key (for nginx)..." | |
| cp myssl.key myssl.key.org | |
| openssl rsa -in myssl.key.org -out myssl.key |
In Tools | Options | Keyboard...
CTRL+W as a Global shortcut for Window.CloseDocumentWindowCTRL+W shortcut for Edit.SelectCurrentWordThe caveat to this is if you are used to using CTRL+W to select the current word. If you do, find another shortcut that works for that.