python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
How to do bold text using the ISO standard escape sequences?
I've created a namespace which would store ANSI values for logging purposes.
namespace ANSI {
static const char *BLACK_BG = "\x1B[48;2;0;0;0m";
static const char *RED = "\x1B[38...
BadUsernameIdea
Votes: 0
Answers: 0
What are 7 bit / 8 bit environments for control functions according to ISO/IEC 6429:1992?
I am learning ECMA-48 and I see a lot of notes about 7 bit and 8 bit environments for control functions. For example:
NOTE LS0 is used in 8-bit environments only; in 7-bit environments
SHIFT-IN (SI) ...
Pavel_K
Votes: 0
Answers: 1
What is a selective parameter in escape codes in ISO/IEC 6429:1992?
According to ECMA-48/5th
8.1
Types of control functions
...
f) (Pn...): Control sequence with any number of numeric parameters
g) (Ps): Control sequence with a single selective parameter
...
i) (Ps......
Pavel_K
Votes: 0
Answers: 1
ANSI control sequence: after setting line home and limit, how should cursor movements behave? which coordinates to use?
Context:
I'm working on a device which inserted between an electronic typewriter's controller and its keyboard turns it into a serial printer/terminal.
I want it to support some of the control sequenc...
bicyclesonthemoon
Votes: 0
Answers: 1