Thursday, May 14, 2009 1:50 PM | rahel luethy | 0 comment(s)

wolfram alpha

whatever your question is, wolfram alpha will be able to answer it. the self-declared google-killer will go live soon — in the meantime, you might want to read stephen wolfram's introductory blog post, or check out some example queries featured in this screencast. sure looks promising...

Wednesday, May 13, 2009 12:12 PM | rahel luethy | 3 comment(s)

how to convert an excel table to wiki markup

mostly a note to myself, but this maybe comes in useful to others:

  1. export excel table as tab-separated values
  2. open in any text editor with regular expression support
  3. replace \t with | (inserts column boundaries)
  4. replace ^(.*)$ with |\1| (pre-/appends boundaries for first/last column)
  5. replace || with | | (inserts a space for empty columns; run again if the previous run produced new pairs)