GNU/Linux xterm-256color bash 1218 views


We traverse Rye’s default contexts, interrogate the built-ins, render the runtime matrices, assemble file lattices, and interface with the SQLite dataverse.

Rye is “runtime homoiconic” and we are trying to blend the distinction between a language and the user interface. One result of that is that Rye runtime is fully open for exploration, which I try to demonstrate in this asciinema.

For more on Rye, visit https://ryelang.org or surf the ghostlayer at the https://github.com/refaktor/rye :)

Yes, these are Neuromancer references … read it :)

https://asciinema.org/a/753115

Copied!

Append ?t=30 to start the playback at 30s, ?t=3:20 to start the playback at 3m 20s.

See sharing docs for more link customization options.

Embed as image link

Use snippets below to display a preview image linking to this recording.
Ideal for places where scripts are not allowed, such as project README files.

HTML:

<a href="https://asciinema.org/a/753115" target="_blank"><img src="https://asciinema.org/a/753115.svg" /></a>

Copied!

Markdown:

[![asciicast](https://asciinema.org/a/753115.svg)](https://asciinema.org/a/753115)

Copied!

Embed the player

If you're embedding on your own page or on a site which permits script tags, you can use the full player widget:

<script src="https://asciinema.org/a/753115.js" id="asciicast-753115" async="true"></script>

Copied!

Paste the above script tag where you want the player to be displayed on your page.

See embedding docs for more player customization options.

You can download this recording in asciicast v2 format, as a .cast file.

Download

Replay in terminal

You can replay the downloaded recording in your terminal using the asciinema play command:

asciinema play 753115.cast

Copied!

If you don't have asciinema CLI installed then see installation instructions.

Use with stand-alone player on your website

Download asciinema player from the releases page (you only need .js and .css file), then use it like this:

<!DOCTYPE html>
<html>
<head>
  <link rel="stylesheet" type="text/css" href="/assets/asciinema-player.css" />
</head>
<body>
  <div id="player"></div>
  <script src="/assets/asciinema-player.min.js"></script>
  <script>
    AsciinemaPlayer.create(
      '/assets/753115.cast',
      document.getElementById('player'),
      { cols: 126, rows: 28 }
    );
  </script>
</body>
</html>

See asciinema player quick-start guide for full usage instructions.

While this site doesn't provide GIF conversion at the moment, you can still do it yourself with the help of asciinema GIF generator utility - agg.

Once you have it installed, generate a GIF with the following command:

agg https://asciinema.org/a/753115 demo.gif

Copied!

Or, if you already downloaded the recording file:

agg demo.cast demo.gif

Copied!

Check agg --help for all available options. You can change font family and size, select color theme, adjust speed and more.

See agg manual for full usage instructions.