- item 4
- item one
- item three
- item two
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-[ ] test |
- test
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Get everyone's "last subscription invoice" for people who've paid in the last year | |
$sql = "SELECT i1.vatrate, i1.username | |
FROM invoices i1 | |
LEFT JOIN invoices i2 ON (i1.username = i2.username AND i1.id < i2.id) | |
WHERE i2.id IS NULL | |
AND i1.datestamp > '2014-04-01' | |
AND i1.type IN ('sub','subpayment','upgrade','resubscription') | |
ORDER BY i1.vatrate DESC"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* bling.js */ | |
window.$ = document.querySelectorAll.bind(document) | |
Node.prototype.on = window.on = function (name, fn) { | |
this.addEventListener(name, fn) | |
} | |
NodeList.prototype.__proto__ = Array.prototype |