- using the web forms, create a repository, say staff.henkp.jinx
- in the repository's info page, you see a browse, checkout url :
  https://svn.vu.nl/repos/staff.henkp.jinx
 
- you can checkout the new, empty repository on your own computer :
  svn checkout https://svn.vu.nl/repos/staff.henkp.jinx
 this creates your local copy of the repository
  staff.henkp.jinx
 
 
- now create some stuff in the local copy and svn-add it
  cd staff.henkp.jinx
  svn mkdir aap
  vi aap/noot
  svn add aap/noot
 
- ... and commit the stuff to the svn.vu.nl repository :
  svn commit -m 'added some aap noot mies'
 You should receive some mail about the changes that you made.
 
 
- if you now visit the browse url
  https://svn.vu.nl/repos/staff.henkp.jinx
 you should see your stuff in the svn.vu.nl repository.