All Projects → jonhoo → icebreaker

jonhoo / icebreaker

Licence: MIT License
Web app that allows students to ask real-time, anonymous questions during class

Programming Languages

go
31211 projects - #10 most used programming language
javascript
184084 projects - #8 most used programming language
CSS
56736 projects

Projects that are alternatives of or similar to icebreaker

office-hours-help-queue
A queue to help manage office hours for large courses
Stars: ✭ 77 (+381.25%)
Mutual labels:  classroom, education
schulcloud-client
HPI Schul-Cloud Client
Stars: ✭ 31 (+93.75%)
Mutual labels:  classroom, education
jitsi-box
A Raspberry Pi based box to automate holding hybrid conferences with Jitsi
Stars: ✭ 15 (-6.25%)
Mutual labels:  classroom, education
FlipED
A LMS built specifically for Thailand's Education 4.0 system.
Stars: ✭ 24 (+50%)
Mutual labels:  classroom, education
-meta
📗 For goals, architecture of the program, and how-tos.
Stars: ✭ 26 (+62.5%)
Mutual labels:  education
vly1
v1 Voluntarily application - deprecated
Stars: ✭ 14 (-12.5%)
Mutual labels:  education
ntds 2016
Material for the EPFL master course "A Network Tour of Data Science", edition 2016.
Stars: ✭ 96 (+500%)
Mutual labels:  education
bash-course
Material for the advanced bash scripting course at Heidelberg University
Stars: ✭ 35 (+118.75%)
Mutual labels:  education
teach-r-online
Materials for the Teaching statistics and data science online workshops in July 2020
Stars: ✭ 52 (+225%)
Mutual labels:  education
Lumi
Lumi is a Desktop App that offers a collection of tools to create, edit and share digital content with your class.
Stars: ✭ 55 (+243.75%)
Mutual labels:  education
MICCAI21 MMQ
Multiple Meta-model Quantifying for Medical Visual Question Answering
Stars: ✭ 16 (+0%)
Mutual labels:  question-answering
runno
Browser-based code runner that can be embedded as an iframe or used as a library.
Stars: ✭ 211 (+1218.75%)
Mutual labels:  education
algorithms-in-python
Some famous algorithms implemented in Python
Stars: ✭ 21 (+31.25%)
Mutual labels:  education
Kobra
Kobra is a visual programming language (like Scratch) for Machine Learning (currently under active development).
Stars: ✭ 223 (+1293.75%)
Mutual labels:  education
afd zaojiao
安风德早教平台是一个致力于提高中小幼儿园、早教、托班管理和运营的互联网平台
Stars: ✭ 21 (+31.25%)
Mutual labels:  education
java-signin
Java实现的(软件或网络)实验室的Web签到系统,签到原理基于IP和座位的(强制)对应关系。
Stars: ✭ 17 (+6.25%)
Mutual labels:  education
powerup-iOS
PowerUp is an educational choose-your-own-adventure game that utilizes a users uploaded curriculum to empower pre-adolescents to take charge of their reproductive health. This is the iOS version of the game.
Stars: ✭ 38 (+137.5%)
Mutual labels:  education
prox
🙈 Share anonymous confessions in Slack
Stars: ✭ 28 (+75%)
Mutual labels:  anonymity
savva3
Сайт Алексея Савватеева
Stars: ✭ 29 (+81.25%)
Mutual labels:  education
technopsyna
телеграм бот для техноконфы
Stars: ✭ 16 (+0%)
Mutual labels:  education

Ice Breaker

Ice Breaker is a web application designed to allow students to ask real-time, anonymous questions during class. Once started, it allows the creation of rooms, each with its own set of keys: a private instructor key, and a public student key. Each key exposes a different view of the room; students see only a form that allows them to submit questions (optionally including a name), whereas instructors see a stream of incoming questions from students.

The envisioned use of this application is that one of the instructors (most likely a TA) monitors the instructor view during class, and asks any incoming questions by proxy. The hope is that this will lower the barrier for shyer students to ask questions during class.

Ice Breaker was designed to augment, not replace, systems like Piazza. Because of this, all Ice Breaker rooms are ephemeral: if the server is restarted, all questions and rooms are erased. To minimize the overhead of using Ice Breaker, there are also no users, no sessions, and no administration interface. Rooms are created by the first person to open them, and keys are given directly in the room URLs.

Usage

Once Ice Breaker has been deployed (see below), usage is straightforward. To create a new room, simply point your browser at $URL/room/$ROOM/$KEY. A student key ($SKEY) will be automatically generated from the instructor key, and will be shown in the instructor view. Student can now access the room using $URL/room/$ROOM/$SKEY. Other instructors can join the room by using the same URL as was used to create the room. The rooms should also be easily accessible on mobile phones.

Instructors can see all questions, whereas students can see none. Questions/notes posted by other instructors will be highlighted in the question feed, allowing basic communication between instructors. The instructor feed will automatically show new questions as they come in on most modern browsers.

Note: Since Ice Breaker deployments are not stateful, a server restart will wipe all rooms, including their keys. To prevent students from accidentally re-creating an old room with the student key as the instructor key when accessing an old URL, instructor keys cannot be on the form of student keys (eight character hex strings).

Deployment

Ice Breaker is trivial to deploy:

go install github.com/jonhoo/icebreaker
env PORT=8080 $GOPATH/bin/icebreaker

The repository also contains all the configuration files required to deploy directly to Heroku. Simply follow the steps for creating a (free) Heroku dyno, and then push to deploy. If you already have the Heroku CLI installed, you can quickly spin up an instance using:

git clone https://github.com/jonhoo/icebreaker.git
cd icebreaker
heroku create
git push heroku master
heroku open # opens the deployed install in your browser

Beware that Heroku will put your server to sleep after a certain amount of time if you are on the free tier service. This process effectively terminates the application and restarts it the next time one of its URLs are accessed, so once this happens, all room state will be wiped.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].