Practical Information Wiki for CodeJam4 Participants

Local Travel

It is recommended to travel by public transport in Marseille. A single journey (for one hour) is 1.50€. In a metro station, you may by a ticket with 6 or 12 journeys for 1.26€/journey. More info on  http://www.rtm.fr, find a  Time table of the bus 21 from bus stop "Le Corbusier" to Luminy.

It is also possible to use self-service bikes. It costs 1€ to buy a one week card, but you need to register at a bike station with a credit card. This will be especially useful to make rides to the banquet. See  http://www.levelo-mpm.fr/ for more info (you need to learn french in the meanwhile) or directly download a map @  http://www.levelo-mpm.fr/content/download/6537/50247/version/1/file/Carto+130+stations.pdf . Note that there is no station in Luminy.

Important Locations

 Interactive CJ4 GoogleMap here

Banquet Dinner

When: 8:00pm, June 22nd

Venue:

Restaurant O'PEDALO
12 Avenue de Montredon
13008 Marseille
France

 http://www.facebook.com/group.php?gid=111227875392

 link on google maps

PostgreSQL-Neuroshare-demo

(Codejam-Sandbox-DB parameters see at the end of this description)

Please test the following page :

# $ sudo aptitude install python-psycopg2
# $ ipython -pylab
import psycopg2
conn = psycopg2.connect("dbname=neuroshare user=gnode password=spike host=192.168.10.56")
cur = conn.cursor()
cur.execute("SELECT data FROM ns_analog_values WHERE dbindex=20")
erg = cur.fetchone()
plot(erg[0])

To play with the db use (demonstrated traces came from the table ns_analog_values of the schema public):

  • oobase (you need openoffice.org-sdbc-postgresql to easily connect to PostgreSQL)
  • pgAdmin (Postgres-Admin-Tool with GUI)
  • psql (Postgres-Admin-Tool without GUI)

Codejam-Sandbox-DB:

  • host=192.168.10.56
  • dbname=neuroshare
  • user=gnode
  • password=spike