CS 371P #3

I played with git branches a bit. I had my proj2 working and so I wanted to play around with it and try out several different ideas for improvement. I also wanted to play around with git branches since that claims to be one of it’s strengths. After monkeying around with PFD for a couple […]

Continue reading

Mastering the shell

Why would you want to be an expert with the shell? Well, perhaps some developers or CS elitists would look down their nose upon shell scripting and consider that to be a “lowly” IT skill. To that I say bullhockey! As a software developer, the shell is your interface to the OS. (At least in […]

Continue reading

CS 371P #2

Some of these quizzes are kickin my ass. I’ve been well prepared on the readings, but frequently that’s not what we’re quizzed on. I noticed this after the first couple of quizzes and thought I was making the necessary adjustments but I keep getting bitten. A quote comes to mind “the difference between an amateur […]

Continue reading

Edit – Compile – Run V1

My first experience with computers and programming at UT was on the CDC (Control Data Corp) Dual Cyber System mainframe in 1981. The class was PEN 310 (I started out as a Petroleum Engineering major). Programs were written in Fortran using punch cards. You had your deck of blank cards, you’d insert them into this […]

Continue reading

CS 371P #1

This the first in a series of blogs, one per week for my Fall 2011 CS 371p class – for the 15 weeks. We’re to write about our experience in the class, what we like, don’t like, what we learned, anything cool or helpful etc. Two or three paragraphs per week for extra credit. No […]

Continue reading

Emacs cheat sheet

This is my ~/notes/emacs file, I usually have it in a buffer so I can quickly search it… debug start on osx: open -a /Applications/Emacs.app –args –debug-init save all C-x s C-f Forward one character C-n Next line C-b Back one character C-p Previous line Here are some ways to move around in larger increments: […]

Continue reading

The skinny on java performance

I always knew from simple observation that java apps were slower than native binaries. But I never saw anything written which admitted it. I haven’t looked in a long time till now. Here it is; From the motherland of Java; As a platform-independent environment, the Java platform can be a bit slower than native code. […]

Continue reading