Skip to content

Instantly share code, notes, and snippets.

@zombrodo
zombrodo / calculate_distance.js
Created January 31, 2017 08:57
Calculate Distance between two LatLngs
var calculateDistance = function(a, b) {
var R = 6371; // Radius of the earth in km
var dLat = (b.lat - a.lat) * (Math.PI / 180);
var dLon = (b.lng - a.lng) * (Math.PI / 180);
var a =
Math.sin(dLat / 2) * Math.sin(dLat / 2) +
Math.cos(a.lat * (Math.PI / 180)) * Math.cos(b.lat * (Math.PI / 180)) *
Math.sin(dLon / 2) * Math.sin(dLon / 2);
var c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1 - a));
var d = R * c; // Distance in km
@zombrodo
zombrodo / wilson.c
Last active August 29, 2015 14:04
Wilsons Theorem :: Stupid Integers.
// There is something not right here...
#include <stdio.h>
long f(int x);
int main(void){
int p;
printf("WILSONS THEORM for PRIME NUMBERS\nPlease enter a number: ");
scanf("%d", &p);