Twitter の RSS フィードの URL を取得するブックマークレット

旧 Twitter では右下に RSS フィードの URL が表示されていたけど、今は無いのでそれを補助するブックマークレットを作成してみた。
旧 Twitter では右下に RSS フィードの URL が表示されていたけど、今は無いのでそれを補助するブックマークレットを作成してみた。
javascript:var r=new XMLHttpRequest();r.open('GET','http://twitter.com/users/show/'+(document.location+'').match(/#!\/([^\/]*)/)[1]+'.xml',false);r.send(null);if(r.status==200)alert('http://twitter.com/statuses/user_timeline/'+document.evaluate('/user/id',r.responseXML,null,XPathResult.FIRST_ORDERED_NODE_TYPE,null).singleNodeValue.textContent+'.rss');
コードを見る
  • タグ:
  • タグはありません
  • タグ:
  • タグはありません

stepped_refine.sh

Use stepped refinement function of COOT from command line.
Use stepped refinement function of COOT from command line.
#!/bin/sh

##
# Use stepped refinement function of COOT from command line.
# ... This is a very simple example...
コードを見る
  • タグ:
  • タグはありません