Skip to content

Instantly share code, notes, and snippets.

@r-ryantm
Created April 10, 2020 01:06
Show Gist options
  • Save r-ryantm/b537cfd6f1f115bcda3660f3a9f24efc to your computer and use it in GitHub Desktop.
Save r-ryantm/b537cfd6f1f115bcda3660f3a9f24efc to your computer and use it in GitHub Desktop.
/nix/store/l281qim8wslbg0gfpppfxcnm2hyayc3j-python3.7-magic-wormhole-0.12.0
├── bin
│   └── wormhole
├── lib
│   └── python3.7
│   └── site-packages
│   ├── magic_wormhole-0.12.0.dist-info
│   │   ├── entry_points.txt
│   │   ├── INSTALLER
│   │   ├── LICENSE
│   │   ├── METADATA
│   │   ├── RECORD
│   │   ├── top_level.txt
│   │   └── WHEEL
│   └── wormhole
│   ├── _allocator.py
│   ├── _boss.py
│   ├── cli
│   │   ├── cli.py
│   │   ├── cmd_receive.py
│   │   ├── cmd_send.py
│   │   ├── cmd_ssh.py
│   │   ├── __init__.py
│   │   ├── public_relay.py
│   │   ├── __pycache__
│   │   │   ├── cli.cpython-37.pyc
│   │   │   ├── cmd_receive.cpython-37.pyc
│   │   │   ├── cmd_send.cpython-37.pyc
│   │   │   ├── cmd_ssh.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── public_relay.cpython-37.pyc
│   │   │   └── welcome.cpython-37.pyc
│   │   └── welcome.py
│   ├── _code.py
│   ├── _dilation
│   │   ├── connection.py
│   │   ├── connector.py
│   │   ├── encode.py
│   │   ├── inbound.py
│   │   ├── __init__.py
│   │   ├── manager.py
│   │   ├── _noise.py
│   │   ├── outbound.py
│   │   ├── __pycache__
│   │   │   ├── connection.cpython-37.pyc
│   │   │   ├── connector.cpython-37.pyc
│   │   │   ├── encode.cpython-37.pyc
│   │   │   ├── inbound.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── manager.cpython-37.pyc
│   │   │   ├── _noise.cpython-37.pyc
│   │   │   ├── outbound.cpython-37.pyc
│   │   │   ├── roles.cpython-37.pyc
│   │   │   └── subchannel.cpython-37.pyc
│   │   ├── roles.py
│   │   └── subchannel.py
│   ├── errors.py
│   ├── eventual.py
│   ├── _hints.py
│   ├── __init__.py
│   ├── _input.py
│   ├── _interfaces.py
│   ├── ipaddrs.py
│   ├── journal.py
│   ├── _key.py
│   ├── _lister.py
│   ├── _mailbox.py
│   ├── __main__.py
│   ├── _nameplate.py
│   ├── observer.py
│   ├── _order.py
│   ├── __pycache__
│   │   ├── _allocator.cpython-37.pyc
│   │   ├── _boss.cpython-37.pyc
│   │   ├── _code.cpython-37.pyc
│   │   ├── errors.cpython-37.pyc
│   │   ├── eventual.cpython-37.pyc
│   │   ├── _hints.cpython-37.pyc
│   │   ├── __init__.cpython-37.pyc
│   │   ├── _input.cpython-37.pyc
│   │   ├── _interfaces.cpython-37.pyc
│   │   ├── ipaddrs.cpython-37.pyc
│   │   ├── journal.cpython-37.pyc
│   │   ├── _key.cpython-37.pyc
│   │   ├── _lister.cpython-37.pyc
│   │   ├── _mailbox.cpython-37.pyc
│   │   ├── __main__.cpython-37.pyc
│   │   ├── _nameplate.cpython-37.pyc
│   │   ├── observer.cpython-37.pyc
│   │   ├── _order.cpython-37.pyc
│   │   ├── _receive.cpython-37.pyc
│   │   ├── _rendezvous.cpython-37.pyc
│   │   ├── _rlcompleter.cpython-37.pyc
│   │   ├── _send.cpython-37.pyc
│   │   ├── _terminator.cpython-37.pyc
│   │   ├── timing.cpython-37.pyc
│   │   ├── tor_manager.cpython-37.pyc
│   │   ├── transit.cpython-37.pyc
│   │   ├── util.cpython-37.pyc
│   │   ├── _version.cpython-37.pyc
│   │   ├── _wordlist.cpython-37.pyc
│   │   ├── wormhole.cpython-37.pyc
│   │   └── xfer_util.cpython-37.pyc
│   ├── _receive.py
│   ├── _rendezvous.py
│   ├── _rlcompleter.py
│   ├── _send.py
│   ├── _terminator.py
│   ├── test
│   │   ├── common.py
│   │   ├── dilate
│   │   │   ├── common.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── common.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── test_connect.cpython-37.pyc
│   │   │   │   ├── test_connection.cpython-37.pyc
│   │   │   │   ├── test_connector.cpython-37.pyc
│   │   │   │   ├── test_encoding.cpython-37.pyc
│   │   │   │   ├── test_endpoints.cpython-37.pyc
│   │   │   │   ├── test_framer.cpython-37.pyc
│   │   │   │   ├── test_full.cpython-37.pyc
│   │   │   │   ├── test_inbound.cpython-37.pyc
│   │   │   │   ├── test_manager.cpython-37.pyc
│   │   │   │   ├── test_outbound.cpython-37.pyc
│   │   │   │   ├── test_parse.cpython-37.pyc
│   │   │   │   ├── test_record.cpython-37.pyc
│   │   │   │   └── test_subchannel.cpython-37.pyc
│   │   │   ├── test_connection.py
│   │   │   ├── test_connector.py
│   │   │   ├── test_connect.py
│   │   │   ├── test_encoding.py
│   │   │   ├── test_endpoints.py
│   │   │   ├── test_framer.py
│   │   │   ├── test_full.py
│   │   │   ├── test_inbound.py
│   │   │   ├── test_manager.py
│   │   │   ├── test_outbound.py
│   │   │   ├── test_parse.py
│   │   │   ├── test_record.py
│   │   │   └── test_subchannel.py
│   │   ├── __init__.py
│   │   ├── __pycache__
│   │   │   ├── common.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── run_trial.cpython-37.pyc
│   │   │   ├── test_args.cpython-37.pyc
│   │   │   ├── test_cli.cpython-37.pyc
│   │   │   ├── test_eventual.cpython-37.pyc
│   │   │   ├── test_hints.cpython-37.pyc
│   │   │   ├── test_hkdf.cpython-37.pyc
│   │   │   ├── test_ipaddrs.cpython-37.pyc
│   │   │   ├── test_journal.cpython-37.pyc
│   │   │   ├── test_keys.cpython-37.pyc
│   │   │   ├── test_machines.cpython-37.pyc
│   │   │   ├── test_observer.cpython-37.pyc
│   │   │   ├── test_rlcompleter.cpython-37.pyc
│   │   │   ├── test_ssh.cpython-37.pyc
│   │   │   ├── test_tor_manager.cpython-37.pyc
│   │   │   ├── test_transit.cpython-37.pyc
│   │   │   ├── test_util.cpython-37.pyc
│   │   │   ├── test_wordlist.cpython-37.pyc
│   │   │   ├── test_wormhole.cpython-37.pyc
│   │   │   └── test_xfer_util.cpython-37.pyc
│   │   ├── run_trial.py
│   │   ├── test_args.py
│   │   ├── test_cli.py
│   │   ├── test_eventual.py
│   │   ├── test_hints.py
│   │   ├── test_hkdf.py
│   │   ├── test_ipaddrs.py
│   │   ├── test_journal.py
│   │   ├── test_keys.py
│   │   ├── test_machines.py
│   │   ├── test_observer.py
│   │   ├── test_rlcompleter.py
│   │   ├── test_ssh.py
│   │   ├── test_tor_manager.py
│   │   ├── test_transit.py
│   │   ├── test_util.py
│   │   ├── test_wordlist.py
│   │   ├── test_wormhole.py
│   │   └── test_xfer_util.py
│   ├── timing.py
│   ├── tor_manager.py
│   ├── transit.py
│   ├── util.py
│   ├── _version.py
│   ├── _wordlist.py
│   ├── wormhole.py
│   └── xfer_util.py
├── nix-support
│   └── propagated-build-inputs
└── share
└── man
└── man1
└── wormhole.1.gz
19 directories, 178 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment