Skip to content

Instantly share code, notes, and snippets.

@Sutto
Created February 23, 2009 13:00
Show Gist options
  • Select an option

  • Save Sutto/68940 to your computer and use it in GitHub Desktop.

Select an option

Save Sutto/68940 to your computer and use it in GitHub Desktop.
gpb2 = "General Purpose Building 2: Lecture Theatre"
cssr = "Computer Science Seminar Room"
csl1 = "Computer Science Lab 2.01"
unit "CITS3201", "Human Computer Interaction" do |u|
u.has "Lecture", gpb2 do |e|
e.at "Monday, 13:00 for 1 hour"
e.at "Wednesday, 14:00 for 1 hour"
end
u.has "Laboratory", csl1 do |e|
e.at "Wednesday, 15:00 for 2 hours"
end
u.has "Tutorial", cssr do |e|
e.at "Monday, 12:00 for 1 hour"
end
end
unit "CITS2200", "Data Structures and Algorithms" do |u|
u.has "Lecture", "Mathematics: Blakers Lecture Theatre" do |e|
e.at "Tuesday, 15:00 for 1 hour"
e.at "Friday, 10:00 for 1 hour"
end
u.has "Laboratory", csl1 do |e|
e.at "Thursday, 11:00 for 2 hours"
end
end
unit "CITS2232", "Databases" do |u|
u.has "Lecture", gpb2 do |e|
e.at "Monday, 10:00 for 1 hour"
e.at "Wednesday, 11:00 for 1 hour"
end
u.has "Laboratory", csl1 do |e|
e.at "Tuesday, 14:00 for 2 hours"
end
end
unit "CITS2220", "Software Engineering - Design" do |u|
u.has "Lecture", gpb2 do |e|
e.at "Tuesday, 10:00 for 1 hour"
e.at "Thursday, 9:00 for 1 hour"
end
u.has "Practical", "Computer Science Tutorial Room" do |e|
e.at "Thursday, 15:00 for 2 hours"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment