I've updated the website with the new tutorial and a new demo application.
The old demo can be found at http://twb.rsise.anu.edu.au/twbdemo
and the old documentation at http://twb.rsise.anu.edu.au/node/65
I've updated the website with the new tutorial and a new demo application.
The old demo can be found at http://twb.rsise.anu.edu.au/twbdemo
and the old documentation at http://twb.rsise.anu.edu.au/node/65
The new demo interface is almost ready. You can test it as
http://twb.rsise.anu.edu.au/demolist
There are still some rough edges but is coming along just fine.
In other news I've updated few modules and I'm preparing to roll drupal 6.0 when it's released.
pietro
I've added a contact form and open the website for comments.
I've updated the TWB website changing the layout and re-working the the site navigation. I'm using the following modules:
Finally I set up a syntax highlighter for computer code.
let rec fib = function
|0 -> 0
|1 -> 1
|n -> fib (n-1) + fib (n-2)
;;I feel better now :)