Use Your Weapons (album)

Use Your Weapons is the third studio album by the American power pop band Valley Lodge. The album was released on September 3, 2013 by the record label Explosive Industries.[1]. It was re-released in Japan in 2014 with bonus tracks.

Use Your Weapons
Studio album by
ReleasedSeptember 3, 2013 (2013-09-03)
GenrePower pop
LabelExplosive Industries
Valley Lodge chronology
Semester at Sea
(2009)
Use Your Weapons
(2013)

Track listings

No.TitleLength
1."Go"3:47
2."Sweet Elizabeth"3:20
3."Kiss Me, I'm Drunk"3:32
4."Pretty Thing"4:04
5."Make Up Your Mind"3:06
6."Waiting in the Rain"2:20
7."Gimme Gimme"3:32
8."Restless Heart"3:07
9."Are You Okay?"2:55
10."Blind"3:19

Notes

The song 'Go' features as the theme music on the HBO show Last Week Tonight with John Oliver.[2]

gollark: Also, in that version there, patterns got fed in as a table with numeric indices from 1-9 representing each slot of the crafting table plus an optional qty key for how much the recipe produces.
gollark: Ridiculous. We *need* to be able to break maths in a snippet of code.
gollark: Here is a copy of the code I don't understand from the old version:```lualocal function descend(intermediateFn, terminalFn, i) local pattern = patterns[i] if pattern then intermediateFn(pattern) local pqty = pattern.qty -- Qty keys must be removed from the pattern for collation -- Otherwise, it shows up as a number stuck in the items needed table, which is bad. pattern.qty = nil local needs = util.collate(pattern) pattern.qty = pqty local has = {} for slot, item in pairs(pattern) do if util.satisfied(needs, has) then break end if patterns[item] then descend(intermediateFn, terminalFn, item) has[item] = (has[item] or 0) + (patterns[item].count or 1) end end else terminalFn(i) endendlocal function cost(i) local items = {} descend(function() end, function(i) table.insert(items, i) end, i) return util.collate(items)endlocal function tasks(i) local t = {} descend(function(pat) table.insert(t, pat) end, function() end, i) return tend```
gollark: Also, implementing whatever is done internally for finding free space to transfer to is hard!
gollark: I'm unlikely to have stupidly large autocrafting trees.

References

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.