Default avatar
nobody 1 year ago
How do you ๐Ÿซต quickly escape your JSON string? Trivial but mega useful when needed for lots of things ๐Ÿคทโ€โ™‚๏ธ `escapy_json '{"key1":"value1","key2":"value2โ€}โ€™` ``` # python command to escape JSON string (minimal py deps) escapy_json() { python -c "import json; print(json.dumps('$1'))" } ```

Replies (1)

Default avatar
nobody 1 year ago
#techtips #techski ๐Ÿค™
โ†‘