• Turtles

    BACK: Navigation I would like to document my entire journey of this dang Turtle, so we’re going to do that in a separate page. History Specifications Instructions Turtle Talk (unfinished) STL Models (soon) For what? This project was used for my Integrated Math II classroom at Golden Valley High School...

  • Code Collector

    BACK: Navigation Let me start with this: my definition of “software for education” has dramatically changed Spring 2019. Thanks Paulo Blikstein. This project is one of the ways I see software for education in my future: As a means of collecting data or an assessment tool or a research tool!...

  • Git Slides

    BACK: Navigation By Mighty Chen and Giovanni Gonzalez Git Slides is a research project overseen by Angelo Kyrilov, to try to improve computer science education at UC Merced. Currently, there is a working platform, Compass in which students can submit and view exercises for their classes. The goal of Git...

  • Good Music Classifier

    BACK: Navigation Version 0.01 is out! People keep recommending me songs to listen to, or I find a really cool album…But I don’t have enough time to listen through all of it and be able to pick out which ones are really good. Introducing.. the good music classifier! I wanted...

  • CSS

    BACK: Navigation This page is running: <style> p { color: blue; font-size: 50px; } .top{ color:red; font-weight: bold; } #intro { background-color: red; } </style> Select by tag: (p) All <p> tags will now have the following as its default behavior: p { color: blue; font-size: 50px; } <p>Hello World</p>...

  • Django

    BACK: Navigation django-admin brings up a list of django-admin commands to use. django-admin startproject mysite creates a new django project python manage.py runserver runs the web app Routing If you go to 127.0.0.1:8000/admin, we are routed to a new place–the logic to handle this is in urls.py Creating apps for...

  • Heroku

    So we’ve created our app. Now how do we deploy it to the web for other people to use? Heroku! Note: Eventually I want to re-do this for GMC Project with Azure instead. I found a useful link here. Install here, or by using $ sudo snap install --classic heroku...

  • Publishing to a Website

    BACK: React This can also be done using Heroku See here! After creating your app, we can use some server to host it. Github Pages saves the day! To start, we need to install some packages from npm. $ npm install --save gh-pages After doing so, we have to edit...