emacs --daemon to run in the background.
emacsclient.emacs24 <filename/dirname> to open in terminal
NOTE: "M-m and SPC can be used interchangeably".
- Undo -
C-/ - Redo -
C-? - Change case: 1. Camel Case :
M-c2. Upper Case :M-u
- Lower Case :
M-l
emacs --daemon to run in the background.
emacsclient.emacs24 <filename/dirname> to open in terminal
NOTE: "M-m and SPC can be used interchangeably".
C-/C-?M-c
2. Upper Case : M-uM-l| import Text.Printf | |
| import Control.Exception | |
| import System.CPUTime | |
| time :: IO t -> IO t | |
| time a = do | |
| start <- getCPUTime | |
| v <- a | |
| end <- getCPUTime | |
| let diff = (fromIntegral (end - start)) / (10^12) |