Origami T-Rex

Whenever I get bored in meetings or during classes, I tend to doodle in the form of dinosaurs, especially T-Rex. I only learned how to draw a decent T-Rex a couple years ago, but it started me down the path of knowing exactly what to draw anytime something was not conducive to staying alert. Today, I decided that I might extend my skill and attempt to make some T-Rex origami. Luckily, the T-Rex is one of the more popular dinosaurs to draw and there are numerous ways one can make one.

I decided to try out a version from origami instructions which luckily had great color instructions for the novice origami maker. The approach was relatively easy, and I ended up with a pretty rad dinosaur. I might have to follow the instructions a few more times before I end up being able to do it on my own.

My first T-Rex made out of origami

As I wrote this, I realized that today was kind of a not-too-creative project, which is likely ok, but I also wrote some code which can be used to generate random websites from a wordlist.

function newTwoWord() {
var mix1 = Math.floor((Math.random()*wordList.length));
var mix2 = Math.floor((Math.random()*wordList.length));
document.getElementById("twoWord").innerHTML = "www." + wordList[mix1] + wordList[mix2]+".com";
};

Hopefully, the plan at some point is to add some more functionality with grabbing images.