Shortcuts | Command |
---|---|
Tab | Auto complete |
^a | Beginning of line |
^e | End of line |
^f | Forward one character |
^b | Back one character |
^h | Delete one character (backwards) |
Emacs Settings for Inspiration
Name | Description |
---|---|
pucell-emacs.d | An Emacs configuration bundle with batteries included |
magnars-emacs.d | My personal emacs settings, and the ones used in @emacsrocks |
prelude-bbatsov | Prelude is an enhanced Emacs 24.4+ distribution that should make your experience with Emac |
Tips and Commands for development using emacs lisp
command | description |
---|---|
ielm | Open emacs lisp REPL |
import http.client | |
import logging | |
http.client.HTTPConnection.debuglevel = 1 | |
logging.basicConfig() | |
logging.getLogger().setLevel(logging.DEBUG) | |
requests_log = logging.getLogger("urllib3") | |
requests_log.setLevel(logging.DEBUG) | |
requests_log.propagate = True |
The following outlines how to setup Heroku + Cloudflare with a full SSL certificate. What this means is that communication between the browser and the Cloudflare CDN is encrypted as well as communication between Cloudflare and Heroku’s origin server. Follow these steps exactly and the setup is a breeze.
First you want to add the root domain and the www domain to heroku. You do this by clicking into your production application, then going to settings and then scrolling down to Domains and certificates.
Here you will add <your_domain>.com
and www.<your_domain>.com
. This will give you two CNAME records. They will look something like <your_domain>.com.herokudns.com
and www.<your_domain>.com.herokudns.com
.