Skip to content

Instantly share code, notes, and snippets.

View fmway's full-sized avatar
😌
Nothing....

Mohamad Fikri fmway

😌
Nothing....
View GitHub Profile
@fnky
fnky / ANSI.md
Last active July 27, 2024 22:42
ANSI Escape Codes

ANSI Escape Sequences

Standard escape codes are prefixed with Escape:

  • Ctrl-Key: ^[
  • Octal: \033
  • Unicode: \u001b
  • Hexadecimal: \x1B
  • Decimal: 27
@tesaguri
tesaguri / Cargo.toml
Last active November 6, 2023 08:14
Example code for inter-process communication in Rust using Unix domain socket.
[package]
name = "tokio-serde-json-ipc"
version = "0.0.0"
edition = "2018"
publish = false
[dependencies]
futures = "0.1"
serde_json = "1"
tokio = "0.1"