I hereby claim:
- I am meaganewaller on github.
- I am meaganwaller (https://keybase.io/meaganwaller) on keybase.
- I have a public key ASCez8mp9friD11UGg3C9YV-xMJYjQslump7SAVHh5xUBwo
To claim this, I am signing this object:
| {"lastUpload":"2021-05-11T19:22:44.497Z","extensionVersion":"v3.4.3"} |
I hereby claim:
To claim this, I am signing this object:
| myConnection <- file("foo.txt", "r") | |
| data <- read.csv(myConnection) | |
| close(myConnection) | |
| # the same thing as | |
| data <- read.csv("foo.txt") |
| x <- data.frame(x = 1:3, y = c(F, T, T)) | |
| #=> x y | |
| # 1 1 FALSE | |
| # 2 2 TRUE | |
| # 3 3 TRUE | |
| nrow(x) | |
| #=> [1] 3 | |
| ncol(x) | |
| #=> [1] 2 |
| hash = { | |
| a: 1, | |
| b: 2, | |
| c: { | |
| d: 3, | |
| e: { | |
| f: 4 | |
| }, | |
| g: 5 | |
| } |
| array = [] | |
| #=> [] | |
| array = Array.new | |
| #=> [] | |
| <div class="modal-header"> | |
| <!-- modal body & stuff goes here --> | |
| </div> |
| ruby '1.9.3', engine: 'jruby', engine_version: '1.7.6' |
| # Gemfile | |
| source "https://rubygems.org" | |
| gem "sinatra" | |
| gem "data_mapper" | |
| gem "dm-postgres-adapter" | |
| gem "pg" | |
| group :test do |