canadalearningcode / llc-intro-to-ruby

Intro to Data Analysis with Ruby -- (SLIDES - http://ladieslearningcode.github.io/llc-intro-to-ruby/slides.html), (LEARNER FILES - http://bit.ly/llc-ruby-data) - No sample project.
Other
7 stars 10 forks source link

Fix contents for windows #22

Closed sunkibaek closed 3 years ago

sunkibaek commented 4 years ago

Hello,

We've just had this event in Victoria and as a mentor, I've got a few questions about windows -- a few commands and examples were specific to macOS (or Linux) in the slides. So it might make sense to provide ones for Windows?

(In the case of yesterday's event, I saw about half Macs and half Windows among students).

Examples:

Type ls at the end of this line to list the directories.

can be:

Type ls (or dir for Windows) at the end of this line to list the directories.

CSV.read("./exercises/no-emissions.csv")

can be:

CSV.read("exercises\\no-emissions.csv")