Skip to main content

Back to Blogger

I've changed my mind. OK, OK, I guess I'm going back on my word. After six months or so of staring at my html revisions and discarded drafts, I haven't done much with Gid.space. Really, no lie, I had true ambitions of making a grandiose portfolio page.. but I suppose there was always a voice in the back of my head, pointing at the evidence: everybody uses site-building templates anyway! Also, I noticed that Blogger lets one edit the HTML rendered in ones blog page.. sooo why not use their awesome framework, and spend my time on less mundane problems as building a profile page? I think I'll use gid.space as a way to possibly host fun web-things where I need absolute control, like a game or app. For now, I'll go back to using this for writing posts.

What's new? Welp, Jessica and I are moving to Arkansas. She will be teaching art foundations at ATU, and I'll be attending as a student of Computer Science. I am so excited to go back to school, I really can't begin to express the joy with words alone. I feel that Comp Sci will allow me to combine all of my distant interests, and produce complete works from the ground up. I'd like to pursue a day-job as a programmer, and flirt with the prospects of getting into the video-game industry. More on this later.

I have some work to do to catch up with my lack of mathematical rigor, so I'll be starting off with Trig, until I'm ready to jump into pre-calc and Calc itself! As a musician who's studied basic signal processing, it will be a relief to finally be able to read equations and proofs. I look forward to the journey.

Comments

Popular posts from this blog

About Joel Jonientz

A few days ago, one of my most influential professors died of a heart attack. His name was Joel Jonientz ( blog ), and he was 46. Joel was my teacher for a few projects, starting with an attempt at making a video game. His role was keep a bunch of misfit digital punks inline, and keep them on task with their delegated duties. I was a part of the music team, together with Bernie Thomas. Our job was to compose music for each level. This was pretty important since the game was based around the music, kind of like Dance Dance Revolution or Guitaru Man , where the player had to hit a button or something in-time with the music. But our game was different: it would be like Mario Bro's, a "platformer", where hitting a button in time with the music would give the player a boost to get up to a difficult platform, or some other super awesome power that would help them complete each level. Composing the music meant figuring out how to encode the required series of 'power...

Tech Archaeology: Unearthing the Artifacts of a False Prediction

Greetings. This is going to be a shorter rant. New year, new me! Anyway, I was inspired to write this after I caught myself falling into a usual habit: investigating the validity of a prediction which claims that a technology (it could be anything) will take over in the future. I'll start from the beginning. It all started when I was dutifully studying for my Databases class. While reading the textbook, Database Processing  (13th edition) by Kroenke and Auer, I came across a passage that was summarizing the history of database processing. Being that this book first came out around 1977, it has probably witnessed very few shifts  in the popularity of database technology over its existence; namely, the rise of Relational Model and its subsequent dominance. Never-the-less, in a table that describes the emergence of database technology, there is a row for the "XML and Web Services" era (after "Open-Source DBMS" and right before the "Big Data and NoSQL"...

Parallelism and Task-Decomposition: An Introduciton

Introduction Since I’m on holiday break from University, I’ve had time to begin investigating parallel processing. I’m going to try and share a little of what I’ve learned about the technology and how programming languages can leverage multi-core CPUs and GPUs. I’ll finish up and explain a bit about task-decomposition , which is an important aspect of writing algorithms intended for parallel processing. My investigation began one night as I was cooking dinner and watching a talk by Rich Hickey, the inventor of Clojure, titled “Are we there yet?” . At one point, while Mr Hickey was discussing parallel processes, the question of “how does a GPU process pixels?”popped into my head. Surely that must be parallel, right? Since my “Intro t...