Uncategorized

Try “GIFs” for your next project — building the CAD tutorial I wish I’d had

Posted on:

STAGE ONE EDUCATION, LLC By: Andy Barry My first homework assignment as an undergrad was to follow the built-in CAD/Solidworks tutorial to build some nondescript square-ish widget. I remember thinking, “this tutorial is utter garbage.” It was a tiny little help window that attempted to resize the screen, but got it wrong, and had two pictures in the entire thing. The widget was basically a cube with some holes so I had no idea if I’d done it correctly (I later learned that I hadn’t). I distinctly remember an upperclassman sitting down with me and deleting every single mate in […]

document.addEventListener('DOMContentLoaded', function() { var runButton = document.getElementById('runButton'); runButton.addEventListener('click', function() { for (var i = 1; i <= 5; i++) { var box = document.getElementById('box' + i); box.className = 'box ' + (Math.random() < 0.5 ? 'red' : 'green'); } }); });