This file contains hidden or 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
select | |
album_name | |
from | |
rw_albums | |
where | |
sid = 1 and | |
album_verified is true and | |
album_name in ( | |
select | |
album_name |
This file contains hidden or 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
#!/usr/bin/perl | |
# ocremix.org album art get! | |
# (c) 2011 William Jackson <[email protected]> | |
# Download album art for a particular remix into the current working directory. | |
# Rename the album art to "folder.(jpg|gif|png)". | |
use strict; | |
use warnings; |
NewerOlder