Skip to content

Instantly share code, notes, and snippets.

View phdjsep's full-sized avatar
😉
what's next?

Sep Dadsetan phdjsep

😉
what's next?
View GitHub Profile
@phdjsep
phdjsep / lubridate_issue.R
Created April 19, 2019 17:33
Lubridate Issue
library(lubridate)
dttm_1 <- ymd_hms("2011-03-13 00:00:00", tz = "America/Los_Angeles")
tm_1 <- hms("2H 36M 0S")
dttm_2 <- ymd_hms("2010-11-04 00:00:00", tz = "America/Los_Angeles")
tm_2 <- hms("13H 45M 0S")
dttm_2 + tm_2
dttm_2 + tm_1
dttm_1 + tm_2
@phdjsep
phdjsep / postgres-brew.md
Last active March 22, 2019 00:32 — forked from ibraheem4/postgres-brew.md
Installing Postgres via Brew (OSX)

Installing Postgres via Brew

Pre-Reqs

Brew Package Manager

In your command-line run the following commands:

  1. brew doctor
    • This might throw some warnings, but the comments will indicate if they can be ignored.
  2. brew update