Skip to content

Instantly share code, notes, and snippets.

@r-ryantm
Created February 6, 2020 13:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save r-ryantm/2e8c4987567f5cab15d080514de835dd to your computer and use it in GitHub Desktop.
Save r-ryantm/2e8c4987567f5cab15d080514de835dd to your computer and use it in GitHub Desktop.
/nix/store/80wsaip7nf72irxs8i6q5m0vijm4ydc6-ponyc-0.33.2
├── bin
│   └── ponyc
├── include
│   ├── pony
│   │   └── detail
│   │   └── atomics.h -> ../../../lib/pony/0.33.2/include/pony/detail/atomics.h
│   └── pony.h -> ../lib/pony/0.33.2/include/pony.h
├── lib
│   ├── libponyc.a -> pony/0.33.2/lib/native/libponyc.a
│   ├── libponyrt.a -> pony/0.33.2/lib/native/libponyrt.a
│   ├── libponyrt-pic.a -> pony/0.33.2/lib/native/libponyrt-pic.a
│   └── pony
│   └── 0.33.2
│   ├── bin
│   │   └── ponyc
│   ├── include
│   │   ├── pony
│   │   │   └── detail
│   │   │   └── atomics.h
│   │   └── pony.h
│   ├── lib
│   │   └── native
│   │   ├── libponyc.a
│   │   ├── libponyrt.a
│   │   └── libponyrt-pic.a
│   └── packages
│   ├── assert
│   │   └── assert.pony
│   ├── backpressure
│   │   ├── auth.pony
│   │   └── backpressure.pony
│   ├── buffered
│   │   ├── benchmarks
│   │   │   └── main.pony
│   │   ├── buffered.pony
│   │   ├── reader.pony
│   │   ├── _test.pony
│   │   └── writer.pony
│   ├── builtin
│   │   ├── ambient_auth.pony
│   │   ├── any.pony
│   │   ├── _arithmetic.pony
│   │   ├── array.pony
│   │   ├── asio_event.pony
│   │   ├── bool.pony
│   │   ├── builtin.pony
│   │   ├── compare.pony
│   │   ├── disposable_actor.pony
│   │   ├── do_not_optimise.pony
│   │   ├── env.pony
│   │   ├── float.pony
│   │   ├── iterator.pony
│   │   ├── none.pony
│   │   ├── nullable_pointer.pony
│   │   ├── platform.pony
│   │   ├── pointer.pony
│   │   ├── read_seq.pony
│   │   ├── real.pony
│   │   ├── runtime_options.pony
│   │   ├── seq.pony
│   │   ├── signed.pony
│   │   ├── source_loc.pony
│   │   ├── stdin.pony
│   │   ├── std_stream.pony
│   │   ├── stringable.pony
│   │   ├── string.pony
│   │   ├── _to_string.pony
│   │   └── unsigned.pony
│   ├── builtin_test
│   │   ├── _test.pony
│   │   └── _test_valtrace.pony
│   ├── bureaucracy
│   │   ├── custodian.pony
│   │   ├── registrar.pony
│   │   └── _test.pony
│   ├── capsicum
│   │   ├── cap.pony
│   │   └── cap_rights.pony
│   ├── cli
│   │   ├── cli.pony
│   │   ├── command_help.pony
│   │   ├── command_parser.pony
│   │   ├── command.pony
│   │   ├── command_spec.pony
│   │   ├── env_vars.pony
│   │   └── _test.pony
│   ├── collections
│   │   ├── flag.pony
│   │   ├── hashable.pony
│   │   ├── heap.pony
│   │   ├── list_node.pony
│   │   ├── list.pony
│   │   ├── map.pony
│   │   ├── persistent
│   │   │   ├── benchmarks
│   │   │   │   └── main.pony
│   │   │   ├── _bits.pony
│   │   │   ├── list.pony
│   │   │   ├── _map_node.pony
│   │   │   ├── map.pony
│   │   │   ├── persistent.pony
│   │   │   ├── set.pony
│   │   │   ├── _test.pony
│   │   │   ├── _vec_node.pony
│   │   │   └── vec.pony
│   │   ├── range.pony
│   │   ├── reverse.pony
│   │   ├── ring_buffer.pony
│   │   ├── set.pony
│   │   ├── sort.pony
│   │   └── _test.pony
│   ├── debug
│   │   └── debug.pony
│   ├── encode
│   │   └── base64
│   │   ├── base64.pony
│   │   └── _test.pony
│   ├── files
│   │   ├── directory.pony
│   │   ├── file_caps.pony
│   │   ├── _file_des.pony
│   │   ├── file_info.pony
│   │   ├── file_lines.pony
│   │   ├── file_mode.pony
│   │   ├── file_path.pony
│   │   ├── file.pony
│   │   ├── files.pony
│   │   ├── file_stream.pony
│   │   ├── path.pony
│   │   └── _test.pony
│   ├── format
│   │   ├── align.pony
│   │   ├── _format_float.pony
│   │   ├── _format_int.pony
│   │   ├── format.pony
│   │   ├── format_spec.pony
│   │   ├── prefix_spec.pony
│   │   └── _test.pony
│   ├── ini
│   │   ├── ini_map.pony
│   │   ├── ini.pony
│   │   └── _test.pony
│   ├── itertools
│   │   ├── iter.pony
│   │   ├── itertools.pony
│   │   └── _test.pony
│   ├── json
│   │   ├── json_doc.pony
│   │   ├── json.pony
│   │   ├── _json_print.pony
│   │   ├── json_type.pony
│   │   └── _test.pony
│   ├── logger
│   │   ├── logger.pony
│   │   └── _test.pony
│   ├── math
│   │   └── fibonacci.pony
│   ├── net
│   │   ├── auth.pony
│   │   ├── dns.pony
│   │   ├── net_address.pony
│   │   ├── net.pony
│   │   ├── ossocket.pony
│   │   ├── ossockopt.pony
│   │   ├── proxy.pony
│   │   ├── tcp_connection_notify.pony
│   │   ├── tcp_connection.pony
│   │   ├── tcp_listener.pony
│   │   ├── tcp_listen_notify.pony
│   │   ├── _test.pony
│   │   ├── _test.pony.orig
│   │   ├── udp_notify.pony
│   │   └── udp_socket.pony
│   ├── options
│   │   ├── env_vars.pony
│   │   ├── options.pony
│   │   └── _test.pony
│   ├── ponybench
│   │   ├── _aggregator.pony
│   │   ├── benchmark.pony
│   │   ├── _output_manager.pony
│   │   ├── pony_bench.pony
│   │   ├── _results.pony
│   │   └── _runner.pony
│   ├── ponytest
│   │   ├── _color.pony
│   │   ├── _group.pony
│   │   ├── pony_test.pony
│   │   ├── test_helper.pony
│   │   ├── test_list.pony
│   │   ├── _test_record.pony
│   │   ├── _test_runner.pony
│   │   └── unit_test.pony
│   ├── process
│   │   ├── auth.pony
│   │   ├── _pipe.pony
│   │   ├── process_monitor.pony
│   │   ├── process_notify.pony
│   │   ├── _process.pony
│   │   └── _test.pony
│   ├── promises
│   │   ├── fulfill.pony
│   │   ├── promise.pony
│   │   ├── _test.pony
│   │   └── _then.pony
│   ├── random
│   │   ├── benchmarks
│   │   │   └── main.pony
│   │   ├── dice.pony
│   │   ├── mt.pony
│   │   ├── random.pony
│   │   ├── splitmix64.pony
│   │   ├── _test.pony
│   │   ├── xoroshiro.pony
│   │   └── xorshift.pony
│   ├── serialise
│   │   ├── serialise.pony
│   │   └── _test.pony
│   ├── signals
│   │   ├── signal_handler.pony
│   │   ├── signal_notify.pony
│   │   ├── sig.pony
│   │   └── _test.pony
│   ├── stdlib
│   │   └── _test.pony
│   ├── strings
│   │   ├── common_prefix.pony
│   │   └── _test.pony
│   ├── term
│   │   ├── ansi_notify.pony
│   │   ├── ansi.pony
│   │   ├── ansi_term.pony
│   │   ├── readline_notify.pony
│   │   └── readline.pony
│   └── time
│   ├── nanos.pony
│   ├── posix_date.pony
│   ├── _test.pony
│   ├── time.pony
│   ├── timer_notify.pony
│   ├── timer.pony
│   ├── timers.pony
│   └── _timing_wheel.pony
└── nix-support
└── propagated-build-inputs
51 directories, 194 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment