Skip to content

Instantly share code, notes, and snippets.

@colinta
Created May 12, 2012 16:27
Show Gist options
  • Save colinta/2667452 to your computer and use it in GitHub Desktop.
Save colinta/2667452 to your computer and use it in GitHub Desktop.
urls
NSString *text = @"You are one chromosome away from being a potato.";
// escape spaces and such
text = [text stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
NSString *urlString = [NSString stringWithFormat:@"http://www.translate.google.com/translate_tts?tl=en&q=%@",text];
NSURL *url = [NSURL URLWithString:urlString];
text = "You are one chromosome away from being a potato."
# escape spaces and such
text = text.stringByAddingPercentEscapesUsingEncoding(NSUTF8StringEncoding)
puts text
url_string = "http://www.translate.google.com/translate_tts?tl=en&q=#{text}"
puts url_string
url = NSURL.URLWithString(url_string)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment