Jay-Z: Magna Carta Holy Grail
AraabMUZIK: The Remixes, Vol. 1
Daughn Gibson: Me Moan
| Updated Sept 10, 2019 | |
| LPs: | |
| Alt+J (∆) - An Awesome Wave | |
| Amadou & Mariam - Welcome to Mali | |
| Anais Mitchell - Hadestown | |
| Anderson Paak - Malibu | |
| Andrew Bird - Armchair Apocrypha | |
| Andrew Bird - The Mysterious Production of Eggs |
| // jQuery "on page load" | |
| $(function(){ | |
| // Focus on the main field | |
| $('input#task_text').focus(); | |
| // Object constructor for task list | |
| var TaskList = function(element) { | |
| // Assigning 'this.element' property from input (a selector). 'this.element' could be called anything. | |
| this.element = $(element); |
| function getNext() { | |
| scan = badgeScans[index]; | |
| console.log("got scan " + scan); | |
| if (scan) { | |
| var scanAction = svgContainer.selectAll("g") | |
| .data([scan], function(d){return d.scan_time}); | |
| scanAction.exit().remove(); |
| class SumOfMultiples | |
| def initialize(*ints) | |
| @numbers = ints.to_a | |
| end | |
| def self.to(max) | |
| new(3, 5).to(max) | |
| end | |
| def to(max) |