(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:
| # The blog post that started it all: https://neocities.org/blog/the-fcc-is-now-rate-limited | |
| # | |
| # Current known FCC address ranges: | |
| # https://news.ycombinator.com/item?id=7716915 | |
| # | |
| # Confirm/locate FCC IP ranges with this: http://whois.arin.net/rest/net/NET-165-135-0-0-1/pft | |
| # | |
| # In your nginx.conf: | |
| location / { |
| from sqlalchemy.ext.declarative import declarative_base | |
| from sqlalchemy import Integer, Column | |
| from postgresql_json import JSON | |
| Base = declarative_base() | |
| class Document(Base): | |
| id = Column(Integer(), primary_key=True) | |
| data = Column(JSON) | |
| #do whatever other work |