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
tell application "iTunes" | |
set vol to sound volume | |
set vol to vol - 10 | |
if vol is less than 0 then | |
set vol to 0 | |
end if | |
set the sound volume to vol | |
end tell |
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 * FROM docs WHERE id < | |
(SELECT RAND() * m.maximum AS random_id FROM | |
(SELECT MAX(id) AS maximum FROM docs) AS m) | |
AND your_conditions | |
LIMIT 1 |