I hereby claim:
- I am andersosthus on github.
- I am andersosthus (https://keybase.io/andersosthus) on keybase.
- I have a public key ASCKdz5D23fQJEjxF3Pmvs-4i7KJRDqptWol3tKmEWQZWQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| <ApplicationManifest> | |
| ... | |
| <ServiceManifestImport> | |
| <ServiceManifestRef ServiceManifestName="SERVICENAME" ServiceManifestVersion="1.0.0" /> | |
| <Policies> | |
| <EndpointBindingPolicy CertificateRef="MyCertificateName" EndpointRef="ServiceEndpoint" /> | |
| </Policies> | |
| </ServiceManifestImport> | |
| ... | |
| <Certificates> |
| foreach (var level in data) | |
| { | |
| var root = DataTree.Nodes.Add(Guid.NewGuid().ToString(), level.Key); | |
| RecAddNode(level, root); | |
| } |
| def haversine(lat1, long1, lat2, long2) | |
| dtor = Math::PI/180 | |
| r = 6378.14*1000 | |
| rlat1 = lat1 * dtor | |
| rlong1 = long1 * dtor | |
| rlat2 = lat2 * dtor | |
| rlong2 = long2 * dtor | |
| dlon = rlong1 - rlong2 |
| <% @searchresults.each do |movie| %> | |
| Found: <%= movie.name %> | <%= movie.id %><br /> | |
| <% end %> |