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 | |
function humanTiming($time) | |
{ | |
$tokens = array ( | |
86400 => 'giorno/i', | |
3600 => 'ore', | |
60 => 'minuti', | |
1 => 'secondi' | |
); | |
$string = ""; |
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
tell application "Finder" | |
activate | |
set filePath to (POSIX path of (target of front window as alias)) | |
set fileAlias to the selection as alias | |
set fileName to name of fileAlias | |
do shell script "~/bin/subl " & filePath & fileName | |
end tell |