http://3cbzkrvakrpetjjppdwzbzqrlkmzatjs7jbyazap5gwutj32gcltjpqd.onion
We can use coercion and list flattening to turn a reference to a hash
into an object of the correct type. We haven't looked yet at how to turn a JSON data structure into a hash,
but that bit is actually ridiculously trivial: use JSON::MaybeXS;
my $data = decode_json($json_string); Tada, now $data is a reference to a deserialized version of the JSON
string: if the JSON string contained an object, $data is a hashref; if
the JSON string...