This gist keeps track of my progress in GTA V.
Source: Video
- Stunt Jump 1
- Stunt Jump 2
This gist keeps track of my progress in GTA V.
Source: Video
| /person/groups/?academicTerm=2014/2015&course=761253478614 | |
| /person/groups/course/761253478614 | |
| { | |
| "academicTerm": "2014/2015", | |
| "groups": [ | |
| { | |
| "groupingId": "does not exist... any primary key? - alternative is duplicate info about the grouping", | |
| "groupNumber": "4", | |
| "name": "Projecto", |
| var x; | |
| $.get('https://www.bungie.net/en/Armory/ItemList?page=0&order=2&dir=0&tier=0&stat=0&name=').done(function(data) { | |
| x = data; | |
| }) | |
| var rows = $(x).find("tr[data-hash]") |
| SELECT * FROM `table` WHERE n >= ? LIMIT 3 | |
| UNION | |
| SELECT * FROM `table` WHERE n <= ? LIMIT 3 |
| /* | |
| * XrxSession.js | |
| * Copyright (C) Xerox Corporation, 2007, 2008, 2009, 2010, 2011, 2012, 2013. All rights reserved. | |
| * | |
| * This file encapsulates the functions to call the Xerox Session Api webservices. | |
| * | |
| * @revision 04/26/2012 AHB Added xrxSessionParseGetInterfaceVersion | |
| * 04/2012 TC Added SetSession functionality | |
| * 10/15/2012 AHB Updated | |
| * 08/01/2013 AHB Added synchronous behavior and updated constants |
| package pt.ist.fenix.webapp; | |
| import org.fenixedu.academic.domain.Installation; | |
| import org.fenixedu.academic.domain.util.email.CoordinatorSender; | |
| import org.fenixedu.academic.domain.util.email.ExecutionCourseSender; | |
| import org.fenixedu.academic.domain.util.email.PersonSender; | |
| import org.fenixedu.academic.domain.util.email.Sender; | |
| import org.fenixedu.bennu.core.domain.Bennu; | |
| import org.fenixedu.bennu.core.groups.Group; | |
| import org.fenixedu.bennu.scheduler.custom.CustomTask; |
| Week | Band | Album | Year |
|---|---|---|---|
| 1 | Portugal. the Man | Woodstock | 2017 |
| 1 | The Gift | Altar | 2017 |
| 2 | Lorde | Melodrama | 2017 |
| 2 | Unknown Mortal Orchestra | II | 2013 |
| 3 | Foster the People | Sacred Hearts Club | 2017 |
| 3 | The National | Sleep Well Beast | 2017 |
| 3 | Daniel Caesar | Freudian | 2017 |
| 3 | St. Vincent | Masseduction | 2017 |
| (() => { | |
| const $wrapper = $(".row.col-12.d-flex"); | |
| const $sbcs = $wrapper.find(".mb-5") | |
| const approval = $e => $e.find(".btn-sbc-vote-like").text().trim().replaceAll("(", '').replaceAll("%)", ""); | |
| [].sort.call($sbcs, (a, b) => approval($(b)) - approval($(a))); | |
| $sbcs.each(function() { $wrapper.append(this) }) | |
| })() |