Bookmarks tagged [encoding]
Simple base64 online encoder and decoder
- tags: encoding, base64, online-tools
https://www.talisman.org/~erlkonig/misc/lunatech%5Ewhat-every-webdev-must-know-about-url-encoding/
This article describes common misconceptions about Uniform Resource Locator (URL) encoding, then attempts to clarify URL encoding for HTTP, before presenting frequent problems and their solutions. Whi...
https://github.com/alex/rust-asn1
- tags: rust, encoding
- source code
https://github.com/arjantop/rust-bencode
Bencode implementation in Rust
- tags: rust, encoding
- source code
I/O and binary data encoding for Rust
- tags: rust, encoding
- source code
https://github.com/TyOverby/bincode
A binary encoder/decoder in Rust
- tags: rust, encoding
- source code
https://github.com/zonyitoo/bson-rs
- tags: rust, encoding
- source code
https://github.com/BurntSushi/byteorder
Supports big-endian, little-endian and native byte orders
- tags: rust, encoding
- source code
https://github.com/capnproto/capnproto-rust
- tags: rust, encoding
- source code
https://github.com/lifthrasiir/rust-encoding
- tags: rust, encoding
- source code
https://github.com/mrhooray/crc-rs
- tags: rust, encoding
- source code
https://github.com/BurntSushi/rust-csv
A fast and flexible CSV reader and writer, with support for Serde
- tags: rust, encoding
- source code
https://google.github.io/flatbuffers/
https://github.com/frol/flatc-rust
FlatBuffers compiler (flatc) integration for Cargo build scripts
- tags: rust, encoding
- source code
https://github.com/mandrean/har-rs
A HTTP Archive Format (HAR) serialization & deserialization library
- tags: rust, encoding
- source code
https://github.com/servo/html5ever
High-performance browser-grade HTML5 parser
- tags: rust, encoding
- source code
https://github.com/veddan/rust-htmlescape
encoding/decoding HTML entities
- tags: rust, encoding
- source code
https://github.com/pikkr/pikkr
JSON parser which picks up values directly without performing tokenization in Rust
- tags: rust, encoding
- source code
https://github.com/serde-rs/json
JSON support for Serde framework
- tags: rust, encoding
- source code
https://github.com/maciejhirsz/json-rust
- tags: rust, encoding
- source code
https://github.com/Qihoo360/rust-jsonnet
- tags: rust, encoding
- source code
https://github.com/3Hren/msgpack-rust
A pure Rust low/high level MessagePack implementation
- tags: rust, encoding
- source code
https://github.com/jcreekmore/pem-rs
A Rust based way to parse and encode PEM-encoded data
- tags: rust, encoding
- source code
https://github.com/mandrean/postman-collection-rs
A Postman Collection v1, v2 & v2.1 serialization & deserialization library [](https://travis-ci.org/mandrean/...
- tags: rust, encoding
- source code
https://github.com/danburkert/prost
- tags: rust, encoding
- source code
https://github.com/stepancheg/rust-protobuf
- tags: rust, encoding
- source code
- tags: rust, encoding
- source code
https://github.com/erickt/rust-tnetstring
- tags: rust, encoding
- source code
https://github.com/alexcrichton/toml-rs
- tags: rust, encoding
- source code
https://github.com/tafia/quick-xml
High performance XML pull reader/writer
- tags: rust, encoding
- source code
https://github.com/Florob/RustyXML
- tags: rust, encoding
- source code
https://github.com/shepmaster/sxd-document
- tags: rust, encoding
- source code
https://github.com/shepmaster/sxd-xpath
- tags: rust, encoding
- source code
https://github.com/netvl/xml-rs
- tags: rust, encoding
- source code
https://github.com/media-io/yaserde
Yet Another Serializer/Deserializer specialized for XML
- tags: rust, encoding
- source code
https://github.com/chyh1990/yaml-rust
The missing YAML 1.2 implementation for Rust.
- tags: rust, encoding
- source code
https://github.com/kimhyunkang/libyaml-rust
libyaml bindings
- tags: rust, encoding
- source code
https://github.com/vitiral/stfu8
- tags: rust, encoding
- source code
https://mathiasbynens.be/notes/javascript-encoding
Does JavaScript use UCS-2 or UTF-16 encoding? Since I couldn’t find a definitive answer to this question anywhere, I decided to look into it. The answer depends on what you’re referring to: the JavaSc...
- 📆 published on: 2012-01-20
- tags: javascript, encoding
http://stackoverflow.com/questions/144283/what-is-the-difference-between-varchar-and-nvarchar
An nvarchar
column can store any Unicode data. A varchar
column is restricted to an 8-bit codepage. Some people think that varchar should be used because it takes up less space. I believe this is ...