Skip to content

Instantly share code, notes, and snippets.

@cglong
cglong / notify
Created December 10, 2022 23:00
Shell script to show alerts in Notification Center
#!/usr/bin/osascript
on run arguments
display notification (item 2 of arguments) with title (item 1 of arguments)
end
@cglong
cglong / gist:292274
Created February 2, 2010 01:52
A bookmarklet that changes websites into iPhone web apps (credit to Will Henderson http://bit.ly/6E3SMw)
javascript:var%20meta1=document.createElement(%27meta%27);meta1.setAttribute(%22name%22,%22apple-mobile-web-app-capable%22);meta1.setAttribute(%22content%22,%22yes%22);document.getElementsByTagName(%22head%22)%5B0%5D.appendChild(meta1);