Skip to content

Instantly share code, notes, and snippets.

@wfarr
Created March 7, 2009 14:21
Show Gist options
  • Select an option

  • Save wfarr/75334 to your computer and use it in GitHub Desktop.

Select an option

Save wfarr/75334 to your computer and use it in GitHub Desktop.
(let ((results (yql 'filter
'item
(yql 'select
"title,pubDate" "rss"
"url='http://twitter.com/statuses/user_timeline/wfarr.rss' LIMIT 1"))))
(print (yql 'filter 'title results))
(print (yql 'filter 'pubDate results)))
;; Prints:
;; "wfarr: @20seven @joshjgt and I are working on our Yahoo Hack Week project, by creating an elisp library for it! http://tinyurl.com/c2eddc"
;; "Sat, 07 Mar 2009 07:25:01 +0000"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment