Skip to content

Instantly share code, notes, and snippets.

@cakenggt
cakenggt / README.md
Last active October 19, 2019 21:44
SCRIPT-8
@cakenggt
cakenggt / README.md
Created September 11, 2019 15:36
SCRIPT-8
@cakenggt
cakenggt / README.md
Last active September 13, 2019 02:52
SCRIPT-8
@cakenggt
cakenggt / README.md
Created September 11, 2019 15:05
SCRIPT-8
@cakenggt
cakenggt / README.md
Created September 11, 2019 15:02
SCRIPT-8
@cakenggt
cakenggt / scraper.js
Last active November 28, 2015 15:41
Duolingo Vocab Scraper
var skillList = [];
var learningLanguage = duo.user.attributes.learning_language
var skills = duo.user.attributes.language_data[learningLanguage].skills.models;
skills.sort(function(a, b){
if (a.attributes.coords_y == b.attributes.coords_y){
return a.attributes.coords_x-b.attributes.coords_x;
}
else{
return a.attributes.coords_y-b.attributes.coords_y;
}
// ==UserScript==
// @name Duolingo Hard Mode
// @namespace http://aleclownes.com
// @version 0.1
// @description Takes out the hint text for non-new words
// @author Alec Lownes
// @match *://*.duolingo.com/*
// @grant none
// @downloadURL http://gist.github.com/cakenggt/7bb3446702d21743bdad
// ==/UserScript==