start new:
tmux
start new with session name:
tmux new -s myname
| #!/usr/bin/env python | |
| """ | |
| Interactive execution with automatic history, tries to mimic Mathematica's | |
| prompt system. This environment's main features are: | |
| - Numbered prompts (In/Out) similar to Mathematica. Only actions that produce | |
| output (NOT assingments, for example) affect the counter and cache. | |
| - The following GLOBAL variables always exist (so don't overwrite them!): | |
| _p: stores previous result which generated printable output. |
Roll your own iPython Notebook server with Amazon Web Services (EC2) using their Free Tier.
THIS GIST WAS MOVED TO TERMSTANDARD/COLORS REPOSITORY.
PLEASE ASK YOUR QUESTIONS OR ADD ANY SUGGESTIONS AS A REPOSITORY ISSUES OR PULL REQUESTS INSTEAD!
| # Install ARCH Linux with encrypted file-system and UEFI | |
| # The official installation guide (https://wiki.archlinux.org/index.php/Installation_Guide) contains a more verbose description. | |
| # Download the archiso image from https://www.archlinux.org/ | |
| # Copy to a usb-drive | |
| dd if=archlinux.img of=/dev/sdX bs=16M && sync # on linux | |
| # Boot from the usb. If the usb fails to boot, make sure that secure boot is disabled in the BIOS configuration. | |
| # Set swedish keymap |
| nnoremap <silent> <leader>gm :tab split<CR>:Glistmod<CR> | |
| nnoremap <silent> <c-s-j> :call g:DiffNextLoc()<CR> | |
| nnoremap <silent> <c-s-k> :call g:DiffPrevLoc()<CR> | |
| command! Glistmod only | call g:ListModified() | Gdiff | |
| function! g:ListModified() | |
| let old_makeprg=&makeprg | |
| let old_errorformat=&errorformat | |
| let &makeprg = "git ls-files -m" | |
| let &errorformat="%f" |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| from __future__ import unicode_literals | |
| from prompt_toolkit.contrib.completers import WordCompleter | |
| ## Almost exact copy of prompt_toolkit.shortcuts | |
| from prompt_toolkit.buffer import Buffer | |
| from prompt_toolkit.enums import DEFAULT_BUFFER | |
| from prompt_toolkit.eventloop.base import EventLoop | |
| from prompt_toolkit.filters import IsDone, HasFocus, Always, Never, RendererHeightIsKnown | |
| from prompt_toolkit.history import History |