See More

--- title: "Workshops" layout: page-wide --- {% assign upcomingEvents = 0 %} {% for post in site.posts %} {% if post.url and post.event_date %} {% capture nowunix %}{{'now' | date: '%s'}}{% endcapture %} {% capture posttime %}{{post.event_date | date: '%s'}}{% endcapture %} {% if posttime >= nowunix %} {% assign upcomingEvents=upcomingEvents | plus:1 %} {% endif %} {% endif %} {% endfor %}

Workshops

Participate or organise any of the below workshops yourself by starting with our documentation and using our server.

Ultimate TTT

Ultimate Tic-Tac-Toe

Ultimate TicTacToe is a game of tic tac toe on steroids. Originally popular in Mathematics circles, it involves playing nine games of tic-tac-toe on a single board, simultaneously!

Battleships

Battleships

Battleships with a twist - participants can place a variety of non-linear ships, and must avoid islands.

Tic Tac Toe Game

TicTacToe

Tic-Tac-Toe is the classic game (you may know it as noughts and crosses) - a simpler form of Ultimate Tic-Tac-Toe that is suitable for beginner programmers

Elon

Self-Driving Simulator Coming soon

Students will develop their own self driving algorithms to drive a simulated car, avoid pedestrians and obstacles in the road and ultimately be the first to get their passengers safely to their destination.


{% if upcomingEvents > 0 %}

Upcoming Events

{% endif %}

Past Events

    {% assign postCount = 0 %} {% for post in site.categories.events %} {% if post.url and post.event_date %} {% capture nowunix %}{{'now' | date: '%s'}}{% endcapture %} {% capture posttime %}{{post.event_date | date: '%s'}}{% endcapture %} {% if posttime < nowunix %} {% assign postCount = postCount | plus:1 %}
  • {{ post.title }}

    {{ post.title }}

    {{ post.event_abstract }}

    {{ post.event_location }} {{ post.event_date | date: "%B %-d, %Y" }}
  • {% endif %} {% endif %} {% endfor %}
{% if postCount == 0 %}
No past events yet!
{% endif %}