Skip to content
#

tty

Here are 194 public repositories matching this topic...

onehungrygeek
onehungrygeek commented Jan 6, 2019

Thanks a ton for any helpful feedback

I need help with getting best quality GIFs.

I am not used to CSS syntax so it would be amazing if you add a lot of example config.yml files. Also, try adding config.yml files for the GIFs you are displaying in your README.md. They look fantastic. I have spent hours trying to get perfect GIF but no luck.

I don't know what value to give for shadow

318097
318097 commented Apr 16, 2019
  • The first example can have few more chained prompts (It shows the power of enquirer in a few seconds)
  • Todo can be moved to the bottom & can be a section (Below Contribution section)
  • The 'Related prompts' section can be moved below 'Example Usage'. After the gif, the code should be shown (It is correct for Input prompt)
  • The example should be complete. It should match exac
ialbert
ialbert commented Jan 15, 2020

Upon loading the latest version (2.6.1) of the player a warning appears in the console that states:

[Deprecation] document.registerElement is deprecated and will be removed in M80, around February 2020. 
Please use window.customElements.define instead. See https://www.chromestatus.com/features/4642138092470272 and https://developers.google.com/web/updates/2019/07/web-components-time
joshhansen
joshhansen commented Jul 31, 2016

It appears that, counterintuitively, it's necessary to open a raw mode stdout in order to read from stdin keypress by keypress. Consider this working example:

extern crate termion;

use termion::event::Key;
use termion::input::TermRead;
use termion::raw::IntoRawMode;
use std::io::{Write, stdout, stdin};

fn main() {
    let stdin = stdin();
    let mut stdout = stdout().into_raw_mode().u
MadBomber
MadBomber commented Apr 5, 2018

This option as documented in the README does not work. Here is my IRB session:

>> require 'tty-table' #=> true
>> table = TTY::Table.new ['header1', 'header2'], [['a1', 'a2'], ['b1', 'b2']]
=> #<TTY::Table header=#<TTY::Table::Header fields=["header1", "header2"]> rows=[#<TTY::Table::Row fields=["a1", "a2"]>, #<TTY::Table::Row fields=["b1", "b2"]>] orientation=#<TTY::Table::Orientation:

Improve this page

Add a description, image, and links to the tty topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the tty topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.