• Stars
    star
    833
  • Rank 54,737 (Top 2 %)
  • Language
    JavaScript
  • License
    MIT License
  • Created about 7 years ago
  • Updated 5 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Binary encoding optimised for Twitter

base2048

Base2048 is a binary encoding optimised for transmitting data through Twitter. This JavaScript module, base2048, is the first implementation of this encoding. Using Base2048, up to 385 octets can fit in a single Tweet. Compare with Base65536, which manages only 280 octets.

Encoding Efficiency Bytes per Tweet *
UTF‑8 UTF‑16 UTF‑32
ASCII‑constrained Unary / Base1 0% 0% 0% 1
Binary 13% 6% 3% 35
Hexadecimal 50% 25% 13% 140
Base64 75% 38% 19% 210
Base85 † 80% 40% 20% 224
BMP‑constrained HexagramEncode 25% 38% 19% 105
BrailleEncode 33% 50% 25% 140
Base2048 56% 69% 34% 385
Base32768 63% 94% 47% 263
Full Unicode Ecoji 31% 31% 31% 175
Base65536 56% 64% 50% 280
Base131072 ‡ 53%+ 53%+ 53% 297

* A Tweet can be up to 280 Unicode characters, give or take Twitter's complex "weighting" calculation.
† Base85 is listed for completeness but all variants use characters which are considered hazardous for general use in text: escape characters, brackets, punctuation etc..
‡ Base131072 is a work in progress, not yet ready for general use.

Installation

npm install base2048

Usage

import { encode, decode } from 'base2048'

const uint8Array = new Uint8Array([1, 2, 4, 8, 16, 32, 64, 128])
const str = encode(uint8Array)
console.log(str) // 'GƸOʜeҩ'

const uint8Array2 = decode(str)
console.log(uint8Array2)
// [1, 2, 4, 8, 16, 32, 64, 128]

API

base2048 accepts and returns Uint8Arrays. Note that every Node.js Buffer is a Uint8Array. A Uint8Array can be converted to a Node.js Buffer like so:

const buffer = Buffer.from(uint8Array.buffer, uint8Array.byteOffset, uint8Array.byteLength)

encode(uint8Array)

Encodes a Uint8Array and returns a Base2048 String suitable for passing through Twitter. Give or take some padding characters, the output string has 1 character per 11 bits of input.

decode(string)

Decodes a Base2048 String and returns a Uint8Array containing the original binary data.

Rationale

Originally, Twitter allowed Tweets to be at most 140 characters. Discounting URLs, which have their own complex rules, Tweet length was computed as the number of Unicode code points in the Tweet — not the number of octets in any particular encoding of that Unicode string. In 2015, observing that most existing text-based encodings made negligible use of most of the Unicode code point space (e.g. Base64 encodes only 6 bits per character = 105 octets per Tweet), I developed Base65536, which encodes 16 bits per character = 280 octets per Tweet.

On 26 September 2017, Twitter announced that

we're going to try out a longer limit, 280 characters, in languages impacted by cramming (which is all except Japanese, Chinese, and Korean).

This statement is fairly light on usable details and/or factual accuracy. However, following some experimentation and examination of the new web client code, we now understand that maximum Tweet length is indeed 280 Unicode code points, except that code points U+1100 HANGUL CHOSEONG KIYEOK upwards now count double.

Effectively, Twitter divides Unicode into 4,352 "light" code points (U+0000 to U+10FF inclusive) and 1,109,760 "heavy" code points (U+1100 to U+10FFFF inclusive).

Base65536 solely uses heavy characters, which means that a new "long" Tweet can still only contain at most 140 characters of Base65536, encoding 280 octets. This seemed like an imperfect state of affairs to me, and so here we are.

Base2048 solely uses light characters, which means a new "long" Tweet can contain at most 280 characters of Base2048. Base2048 is an 11-bit encoding, so those 280 characters encode 3080 bits i.e. 385 octets of data, significantly better than Base65536.

Note

At the time of writing, the sophisticated weighted-code point check is only carried out client-side. Server-side, the check is still a simple code point length check, now capped at 280 code points. So, by circumventing the client-side check, it's possible to send 280 characters of Base65536 i.e. 560 bytes of data in a single Tweet.

Base2048 was developed under the assumption that most people will not go to the trouble of circumventing the client-side check and/or that eventually the check will be implemented server-side as well.

Code point safety

Base2048 uses only "safe" Unicode code points (no unassigned code points, no control characters, no whitespace, no combining diacritics, ...). This guarantees that the data sent will remain intact when sent through any "Unicode-clean" text interface.

In the available space of 4,352 light code points, there are 2,343 safe code points. For Base2048, since I felt it improved the character repertoire, I further ruled out the four "Symbol" General Categories, leaving 2,212 safe code points, and the "Letter, Modifier" General Category, leaving 2,176 safe code points. From these I chose 211 = 2048 code points for the primary repertoire and 23 = 8 additional code points to use as padding characters.

License

MIT

More Repositories

1

base65536

Unicode's answer to Base64
JavaScript
2,078
star
2

hatetris

Tetris which always gives you the worst piece
TypeScript
831
star
3

greenery

Regular expression manipulation library
Python
331
star
4

base32768

Binary-to-text encoding highly optimised for UTF-16
JavaScript
139
star
5

fastjson

Single-tweet, standards-compliant, high-performance JSON stack
JavaScript
107
star
6

loco

Parsing library for PHP
PHP
89
star
7

base131072

Binary-to-text encoding optimised for Twitter & UTF-32
JavaScript
84
star
8

base1

Binary encoding inspired by unary numbers
JavaScript
71
star
9

abcdefghijklmnopqrstuvwxyz

The English alphabet
JavaScript
71
star
10

hexagram-encode

Represent binary data using I Ching hexagrams
JavaScript
54
star
11

t-a-i

Converts Unix milliseconds to and from International Atomic Time (TAI) milliseconds
JavaScript
43
star
12

braille-encode

Represent binary data as Braille
JavaScript
41
star
13

scp-3125

Source code for the SCP Foundation wiki entry "SCP-3125"
HTML
35
star
14

big-roman

Big Roman numerals
JavaScript
18
star
15

tetris

Attempt to find a brute-force solution to Tetris
C
17
star
16

safe-code-point

Ascertains whether a Unicode code point is 'safe' for the purposes of encoding binary data
JavaScript
16
star
17

hyperoperate

Hyperoperations for JavaScript!
JavaScript
12
star
18

broken-promises-aplus

Compliant Promises/A+ implementation which doesn't actually work
JavaScript
12
star
19

base65537

It's one better
JavaScript
11
star
20

minify-numeric-literal

Minify numeric literals for JavaScript
JavaScript
6
star
21

big-round

Custom rounding behaviour for JavaScript BigInt arithmetic
JavaScript
5
star
22

tai-date

A TaiDate stores an instant in TAI, the same way that a Date stores an instant in Unix time
JavaScript
4
star
23

base65536-test

Language-agnostic test case files for the Base65536 encoding
4
star
24

base65536-stream

Streaming implementation of the Base65536 encoding
JavaScript
3
star
25

green-reg-exp

A little library for manipulating regular expressions.
JavaScript
3
star
26

green-fsm

A basic little library for finite state machines
JavaScript
2
star
27

green-parse

A little recursive descent parsing library
JavaScript
1
star