John Gruber on MacBreak Weekly
Exclusive: Adobe ceases development on mobile browser Flash, refocuses efforts on HTML5
| do shell script "/Applications/Google\\ Chrome.app/Contents/MacOS/Google\\ Chrome --allow-ssl-mitm-proxies" | |
| -- This is to disable the feature in Chrome 6 that causes the "Error 128 (net::ERR_SSL_UNSAFE_NEGOTIATION)" | |
| -- when behind an Internet filter that modifies the request to an https Url. | |
| -- Copy it to AppleScript and save it as an application to easily run. | |
| -- Make sure that there are no other Chrome windows open when you run this. |
| using System; | |
| using System.Collections.Generic; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Xml; | |
| // Compile and run via the command line: | |
| // > XmlFormatter.exe < BadXml.xml > GoodXml.xml | |
| // If GoodXml is ignored, it will print to stdout. |
| -- Appropriated from: http://hints.macworld.com/article.php?story=20041104011839378 | |
| on adding folder items to this_folder after receiving these_items | |
| try | |
| tell application "Finder" | |
| repeat with i from 1 to number of items in these_items | |
| try | |
| set this_item to item i of these_items | |
| set the path_string to this_item as string | |
| set the final_path to POSIX path of the path_string | |
| do shell script "/usr/bin/lp '" & final_path & "'" |
| tell application "System Events" | |
| tell process "StudioTether" | |
| click button 2 of window "D300" | |
| end tell | |
| end tell |
| var states = new List<SelectListItem> { | |
| new SelectListItem { Value = "AL", Text = "Alabama" }, | |
| new SelectListItem { Value = "AK", Text = "Alaska" }, | |
| new SelectListItem { Value = "AZ", Text = "Arizona" }, | |
| new SelectListItem { Value = "AR", Text = "Arkansas" }, | |
| new SelectListItem { Value = "CA", Text = "California" }, | |
| new SelectListItem { Value = "CO", Text = "Colorado" }, | |
| new SelectListItem { Value = "CT", Text = "Connecticut" }, | |
| new SelectListItem { Value = "DE", Text = "Delaware" }, | |
| new SelectListItem { Value = "FL", Text = "Florida" }, |
| var tag = 'div', | |
| attrs = { className: 'foo', id: 'bar' }, | |
| slice = Array.prototype.slice; | |
| isContent = function(c) { | |
| var un = "undefined"; | |
| return c !== null && typeof c !== un && | |
| (typeof c.nodeType !== un || | |
| typeof c === "string"); | |
| } |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/sh | |
| # Requires gnu sed to work. | |
| git ls-tree -r HEAD|sed -re 's/^.{53}//'|while read filename; do file "$filename"; done|grep -E ': .*text'|sed -r -e 's/: .*//'|while read filename; do git blame -w "$filename"; done|sed -r -e 's/.*\((.*)[0-9]{4}-[0-9]{2}-[0-9]{2} .*/\1/' -e 's/ +$//'|sort|uniq -c |
| tell application "Safari" | |
| set theURL to URL of current tab of window 1 | |
| set theTitle to name of current tab of window 1 | |
| set the clipboard to "[" & theTitle & "](" & theURL & ")" | |
| end tell |