Ning Sun

Results 315 comments of Ning Sun

For Wkt, do you think it's OK to use geo type directly ?

How about make our `Coordinate` struct like ``` rust pub struct Coordinate { pub x: f64, pub y: f64, pub z: Option, pub m: Option } ``` And also operators...

Perhaps we can follow some open standard like [OGC Simple Feature Access](http://www.opengeospatial.org/standards/sfa) To answer some questions above (Just my opinion) 1. Base types: Point, LineString, Polygon; there are also some...

SFA GOM is based on a classic object-oriented model, but in rust we prefer composition over inheritance, so we don't need to implement types like Curve, Surface... I think the...

True, seems the whole library doesn't use z for distance: https://github.com/simplegeo/jts/blob/master/src/com/vividsolutions/jts/algorithm/CGAlgorithms.java

+1 for this. We are moving one of our redis to Sentinel managed group. I wish Carmine could support it.

I'm looking for a scripting language to add dynamic helper support for my template engine [handlebars-rust](https://github.com/sunng87/handlebars-rust). By far Rhai seems to be a good fit because of its inter-operatability with...

FYI support for rhai script helper has been released in handlebars 3.1.0 with a feature flag `script_helper` https://github.com/sunng87/handlebars-rust/blob/master/examples/script.rs

@TingPing may I ask what's the status about socks branch?

There were little comma-separated syntax in handlebars, but I think this can be a good addition to pest. Also I'm a fan of a more generic `Separated` implementation. Also how...