(C-x means ctrl+x, M-x means alt+x)
The default prefix is C-b. If you (or your muscle memory) prefer C-a, you need to add this to ~/.tmux.conf:
| #!/bin/bash | |
| # This hook is run after a new virtualenv is activated. | |
| # ~/.virtualenvs/postmkvirtualenv | |
| libs=( PyQt4 sip.so ) | |
| python_version=python$(python -c "import sys; print (str(sys.version_info[0])+'.'+str(sys.version_info[1]))") | |
| var=( $(which -a $python_version) ) | |
| get_python_lib_cmd="from distutils.sysconfig import get_python_lib; print (get_python_lib())" |
| #!/usr/bin/python | |
| # -*- coding: utf-8 -*- | |
| __author__ = 'efrenfuentes' | |
| MONEDA_SINGULAR = 'bolivar' | |
| MONEDA_PLURAL = 'bolivares' | |
| CENTIMOS_SINGULAR = 'centimo' |
| #!/usr/bin/env sh | |
| ioreg -l | grep -i capacity | tr '\n' ' | ' | awk '{printf("%.2f%%\n", $10/$5 * 100)}' |
| #!/bin/bash | |
| ### Author: Benedykt 'b3niup' Przybyło | |
| USAGE="Usage: ./$0 [options as for regular cp]" | |
| #*****************************************************************************# | |
| #** Helpers **# |
Hi Nicholas,
I saw you tweet about JSX yesterday. It seemed like the discussion devolved pretty quickly but I wanted to share our experience over the last year. I understand your concerns. I've made similar remarks about JSX. When we started using it Planning Center, I led the charge to write React without it. I don't imagine I'd have much to say that you haven't considered but, if it's helpful, here's a pattern that changed my opinion:
The idea that "React is the V in MVC" is disingenuous. It's a good pitch but, for many of us, it feels like in invitation to repeat our history of coupled views. In practice, React is the V and the C. Dan Abramov describes the division as Smart and Dumb Components. At our office, we call them stateless and container components (view-controllers if we're Flux). The idea is pretty simple: components can't