Go murex

Open-source Go projects categorized as murex

Go murex Projects

  • murex

    A smarter shell and scripting environment with advanced features designed for usability, safety and productivity (eg smarter DevOps tooling)

    Project mention: Xonsh: Python-powered, cross-platform, Unix-gazing shell | news.ycombinator.com | 2024-02-14
  • mxtty

    Multimedia Terminal Emulator

    Project mention: Why does the `reset` command include a delay? | news.ycombinator.com | 2024-03-09

    > TERM is already used for determining color support.

    It's one of many ways to determine colour support. And arguably the worst of all of the ways too.

    - $TERM

    This isn't intended to contain colour information, yet that's how it's often abused. Meaning a lot of applications are broken in non-xterm terminals if they happen to use the $TERM variable correctly

    - ANSI code: CSI 22 c (Send Device Attributes, ANSI color)

    This is the correct way to check for a device capability. But it requires more effort and knowledge of terminals than your average developer has. So is rarely supported by console applications.

    - $COLORTERM

    This is the modern day equivalent to the device capability API. But also isn't used often

    - $COLORFGBG

    This was the original env var intended to be used like $COLORTERM, but fell out of favour because, well, nobody bothered to read any docs.

    - $FORCE_COLOR

    This is an often used standard. Christ only knows why this one exists when we already have 3 other env vars being used this way. Another example of nobody bothering to read any docs

    - $NO_COLOR

    This is intended to do the opposite of the others and tell applications not to use colour. However even this is often ignored.

    ----

    That's 6 different ways to check whether to colour output or not. Only one actual standard method and everything is only partially supported (if at all) in applications. Hence why applications then need a `--color` flag, which even that differs in support and syntax across different command line tools. And the "default" method you described, $TERM, actually breaks applications on alternative terminal emulators and hardware terminals -- that is unless they decide to announce themselves as `xterm` and in that case that environmental variable becomes entirely useless.

    ----

    > Not sure what terminals do without color support with color escape codes.

    They ignore them.

    ANSI escape codes are a pain in the arse to parse but there is at least a documented standard way to parse them. Anything that is a CSI (Control Sequence Introducer) sequence, and that includes SGR (Select Graphic Rendition) parameters like colour codes, start with `{ESC}[` and terminate with a character in the range of 0x40 to 0x7E. It's actually a little more complicated than that[1] but that's the gist of it.

    So you know what to print and what to ignore.

    There are other escape sequences too, the other big one being OSC (Operating System Command) and they're terminated `{ESC}\`, which is usually referred to as ST (String Terminator). That is unless you're xterm, and then you terminate OSC sequences with either ST or BELL (char 0x07).

    A lot of this makes more sense if you look at code rather than documentation. So I've made an effort to ensure my own terminal emulator's source code is as self-documenting as possible:

    https://github.com/lmorg/mxtty/blob/main/virtualterm/ansi_c1...

    [1] https://en.wikipedia.org/wiki/ANSI_escape_code#CSI_(Control_...

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

NOTE: The open source projects on this list are ordered by number of github stars. The number of mentions indicates repo mentiontions in the last 12 Months or since we started tracking (Dec 2020). The latest post mention was on 2024-03-09.

Go murex related posts

Index

Project Stars
1 murex 1,356
2 mxtty 6
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com