Coding

Automating my business

Using scripts to automate menial tasks.
2019-08-12
7 min read

Where I was in 2018

Visualising my location in 2018.
2019-01-13
2 min read

Automating SMS & email

A smart email & SMS bot on AWS using R.
2018-11-08
3 min read

Cuba’s short term property rental market 2017-2018

The impacts of President Trump's policies.
2018-08-11
3 min read

How I made this website - tutorial

On when I first built this website
2016-04-20
10 min read

Using Google Maps API: Mol Bubi Competition

A few friends and I are involved in the Budapest public bicycle data science competition. As of right now we are in the top ten, although in all honesty, it hasn’t really started yet. We signed a non-disclosure agreement, so I cannot really share any cool details. What I can share however, is the function I wrote in R to get calculate the distances and duration of bike trips using Google Maps’ API. #distance calucations #### This script uses RCurl and RJSONIO to download data from Google's API library(RCurl) library(RJSONIO) #define api key as: api<-"YOURAPI" #the function assumes address input in following dataframe: #lat1,lng1,lat2,lng2 DistDur <- function(address,time = as.
2015-11-05
1 min read
R , Maps