groups

name language licence
UniqueID AppleScript GPL 2
LaunchTaskApps AppleScript Other
LittleSnapper_snapWeblet AppleScript Other
Split First Name - Address Book AppleScript Other
LittleSnapper_snapWeb AppleScript Other
check_safari_page_loaded_handler_js AppleScript Other
Delete Nameless Entries - Address Book AppleScript Other
Cleanup @ Entries - Address Book AppleScript Other

< 1 2 3 >



language: AppleScript
licence: GPL 2

UniqueID

options: view full snippetsend to code collector
-- Generates and returns unique id's based on timestamps

-- by Adam Merrifield <http://www.seydoggy.com>
-- r1 10-27-09 18:55

set uniqueID to (do shell script "date +%y%m%d%H%M%S")
set the clipboard to uniqueID
display alert "\"" & uniqueID & "\"" & " Has been copied to your clipboard" giving up after 1
	
(Continues...)