Skip to content

Instantly share code, notes, and snippets.

View arnlaugsson's full-sized avatar
🐢
Slowly but surely

Skúli Arnlaugsson arnlaugsson

🐢
Slowly but surely
View GitHub Profile
@arnlaugsson
arnlaugsson / canvas-peer-review-participation-extraction.js
Created November 28, 2020 15:08
To extract Peer Review participation from Canvas, using the DevTools and a bit of javascript.
/*
To extract Peer Review participation from Canvas
0. Navigate to an assignment's peer review page
1. Open up your favorite DevTools (in Chrome for example).
2. Copy and past the following code snippet into the DevTools console.
3. Right click on the object in the console and click "Store as a global variable"
4. The output will show the variable name given (for example "temp1"), type into the console: "copy(temp1)" and paste the output into your favourite editor.
5. You will have to format the output to match CSV format, but then you can paste it into Excel for furhter processing.
@txels
txels / rebase-onto.md
Last active December 19, 2018 02:00
Rebase a git branch onto another

Change the base branch for your current branch

Some cases:

  • you started a bugfix out of develop, but it should be applied to a release branch
  • you started on a branch and want to rebase it on some colleague's changes

Command