# HG changeset patch # User primal primal007@gmail.com # Date 1322937967 -19800 # Node ID 2fd1aa38924ec04955100637e8c3b3eaefbdab04 # Parent baa859d0df1b4a5d66acfa0c6a723bbb902ae4a8 day zero post diff -r baa859d0df1b -r 2fd1aa38924e project/templates/_menu.html --- a/project/templates/_menu.html Sat Dec 03 23:04:37 2011 +0530 +++ b/project/templates/_menu.html Sun Dec 04 00:16:07 2011 +0530 @@ -104,11 +104,7 @@ {% endif %}
  • Live Blog
  • diff -r baa859d0df1b -r 2fd1aa38924e project/templates/about/day_zero.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/project/templates/about/day_zero.html Sun Dec 04 00:16:07 2011 +0530 @@ -0,0 +1,32 @@ +{% extends "base.html" %} +{% block content %} +
    + +

    The Penultimate day

    +

    +If you have previously organized an event or a conference, you would know that the busiest day is just the day before the event. After having worked for almost 4 months for this event, we(FOSSEE team) had a few last minute tasks to be done before the day ends. Writing this post was one of them and sitting down to write it at the end of day, in a way shows that every important task has been completed. +

    +

    +The first priority of the day was to finalize the schedule of the event. This took a bit longer than previously thought but we finally completed it by evening. If you haven't seen it already, have a look at the talks happening tomorrow and the day after. If you love either Science or Python or Both, you would be committing a sin by being not at SciPy India 2011 for next 4 days. By afternoon, participants started pouring into IIT Bombay for the event. The registration desk at main gate, managed by Anand, Kiran, Harish, Yogesh, Manas and others, guided people to their accomodation facilities. We had already prepared this and this which would really come in handy if you are new at IITB. +
    + + + +

    +While the other set of the team was busy in the lab preparing the package for participants which contains various information pamphlets, notepad, a pen and food coupons for all of the days. It took hours to complete the job and the efforts of Srikant, Sushma and Priya deserves a special mention here. +

    + +

    +Getting back to the event, it kicks off with the Keynote by Eric Jones, CEO of Enthought, talking on "What Matters in Scientific Software Projects? 10 Years of Success and Failure Distilled". All the talks in the schedule are promising and if you are low on time, talks by Invited Speakers - Mateusz Paprocki, Ajith Kumar and Prof. Prabhu Ramachandran are somthing you definitely wouldn't want to miss. +

    +

    + + + + + + + + + +{% endblock content %} diff -r baa859d0df1b -r 2fd1aa38924e project/urls.py --- a/project/urls.py Sat Dec 03 23:04:37 2011 +0530 +++ b/project/urls.py Sun Dec 04 00:16:07 2011 +0530 @@ -114,9 +114,9 @@ url(r'^%s/about/contact/$' % (SCOPE_ARG_PATTERN), direct_to_template, {"template": "about/contact.html"}, name='scipycon_contact'), - url(r'^%s/about/contact/$' % (SCOPE_ARG_PATTERN), - direct_to_template, {"template": "about/day0.html"}, - name='scipycon_day0'), + url(r'^%s/about/day_zero/$' % (SCOPE_ARG_PATTERN), + direct_to_template, {"template": "about/day_zero.html"}, + name='scipycon_day_zero'), url(r'^%s/about/speakerinfo/$' % (SCOPE_ARG_PATTERN), direct_to_template, {"template": "about/speakerinfo.html"}, name='scipycon_sinfo'),