Created
March 4, 2012 17:56
-
-
Save nefo-mi/1974147 to your computer and use it in GitHub Desktop.
twittering-modeからデータを抜き出すlispぽいの
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
M-: | |
(let((l(twittering-current-timeline-data)))(with-temp-file"~/a.txt"(mapc(lambda(tw)(insert"http://twitter.com/#!/"(cdr(assq'user-screen-name tw))"/status/"(cdr(assq'id tw))"\n"))l))) | |
で現在表示してるtimelineからデータを抜き出してtwitterのurlっぽいなにをファイルに保存する。 | |
フィルタかけたい。 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
正規表現"xhago"にマッチするtweetのURLを保存するなら、下記のようなコマンドでどうでしょうか。
保存したいtimelineが表示されているbuffer上でM-x my-save-urlsで起動できます。