Loosely ordered with the commands I use most towards the top. Sublime also offer full documentation.
Ctrl+C | copy current line (if no selection) |
Ctrl+X | cut current line (if no selection) |
Ctrl+⇧+K | delete line |
Ctrl+↩ | insert line after |
Loosely ordered with the commands I use most towards the top. Sublime also offer full documentation.
Ctrl+C | copy current line (if no selection) |
Ctrl+X | cut current line (if no selection) |
Ctrl+⇧+K | delete line |
Ctrl+↩ | insert line after |
I hereby claim:
To claim this, I am signing this object:
Gandi.net ssl certificate working with haproxy | |
In one file concatenate the certifcate with the private key (domain.pem in the example) | |
In other file just the intermediate ceritificate (gandi.ca.pem in the example) then in your haproxy.cfg | |
bind *:443 ssl crt /home/.ssh/domain.pem ca-file /home/.ssh/gandi.ca.pem | |
frontend https-in | |
bind *:443 ssl crt /home/.ssh/domain.pem ca-file /home/.ssh/gandi.ca.pem | |
timeout client 1h |
#!/bin/bash | |
#On RaspberryPi run | |
#wget http://goo.gl/QaXLfr -O btsync-install | |
#sudo chmod +x btsync-install | |
#sudo btsync-install | |
cd /home/bananapi | |
mkdir BTSync | |
chown bananapi:bananapi BTSync |
/** | |
* This script allows sending emails with Amason SES (you should already have an account). | |
* | |
* It can be useful, for instance, when you want to distribute a survey done with Google Forms, | |
* but Google keeps on telling you: | |
* "You've temporarily exceeded your email quota. Please wait for a while and try sending again." | |
* | |
* Before running the script, install nodemailer and lodash: | |
* `$ npm install nodemailer` | |
* `$ npm install lodash` |