Skip to content

Instantly share code, notes, and snippets.

View jordond's full-sized avatar

Jordon de Hoog jordond

View GitHub Profile
@jordond
jordond / README.md
Last active December 7, 2018 22:09
Switch instructions

Switch SXOS installation

SD Setup

  1. Turn off Switch
  2. Take out SD card
  3. Format SD card as exFAT (if its not empty, back it up before formating)
  4. Download this zip and extract it to the root of your SD card
  5. Download games in xci or nsp format, and place them in /switch/games on the SD card
  6. OPTIONAL: If you backed up any data above, add it back now

Keybase proof

I hereby claim:

  • I am jordond on github.
  • I am jordond (https://keybase.io/jordond) on keybase.
  • I have a public key ASBVFHHbecVIc-o1p03SDebNhTD3IwBguhi8xKNqukcL9go

To claim this, I am signing this object:

@jordond
jordond / snippet.js
Last active September 14, 2016 22:14
try {
var spreadsheet = SpreadsheetApp.openByUrl(spreadsheetUrl);
} catch (e) {
Logger.log("Problem with the spreadsheet URL: '" + e + "'");
Logger.log("Make sure you have correctly copied in your own spreadsheet URL.");
return;
}
var sheet = spreadsheet.getSheets()[0];
var spreadsheetData = sheet.getDataRange().getValues();