Spinning Wheels of Fire

This gallery contains 9 photos.

As promised, some photos of the fun at the Supercross:   And for your viewing pleasure, a moving picture, starting 10 seconds before the final race.  Here you can see the insane fireballs and what-not.

More Galleries | Leave a comment

Pretending to Git Good

Git tries its darndest to be as hard as possible to use.  More than anything, it suffers from too-many-options-itis and correspondingly confusing options, often a warning flag for a programming language or tool.  But git’s core is good, and it has a lot of features that are quite endearing.  I’m not an expert, but I’ll share what I know. Continue reading

Posted in Using Git | Tagged , , | 2 Comments

I’m on a Mac: Hardware Wrap-up

As mentioned in my Third Day post, I’m using a MacBook now, every day, as my work computer.  And, well, I’ve not died nor been struck by lightning or anything.  But am I a convert?  Read my my ongoing discussion of my experiences with the platform.  This week: the rest of the hardware. Continue reading

Posted in I'm on a Mac | Tagged , | 2 Comments

I’m on a Mac: Keyboard

As mentioned in my Third Day post, I’m using a MacBook now, every day, as my work computer.  And, well, I’ve not died nor been struck by lightning or anything.  But am I a convert?  Read my ongoing discussion of my experiences with the platform.  This week: the keyboard hardware and its use in software. Continue reading

Posted in I'm on a Mac | Tagged , , | 2 Comments

Revising MuddyHorse

I’m moving to wordpress to administer my whole site, ultimately.  So this is a bit in progress.  I’ll restore all the bits in a bit.  You can still find content on to the old blog if you want to, though most of it is now imported here.

Posted in Family, Technical | Comments Off on Revising MuddyHorse

Third Day

So, here I am, sitting in a San Francisco apartment, overlooking a trendy restaurant scene. With a macbook on my lap. I feel like I just need to tweet something.  Oh, it all makes sense now!

Living Room Apartment

Continue reading

Posted in Family | Tagged , | 1 Comment

I Love Apple

Apple

I love apple.  You?  Apple very Square, yet not square!  Tasty, and not tasty.

And so on.  Here are some very quick impressions from almost two days.

Continue reading

Posted in Family, Technical | Tagged , , | Leave a comment

Pat's Favorite FireFox Extensions, Oct 2010

Here’s an update to a 2008 article.  Extensions have come and gone, and Firefox is much updated now, at 3.6.x, with 4.0 on the near horizon. Continue reading

Posted in Technical | Tagged , | 1 Comment

Quick Maven Primer for Java Development

I wrote this up for the NetRexx mailing list, but it’s a good basics article for anyone wanting to get a quick glance at Maven‘s operations.  I’m not trying to come up with a better Maven, I’m just giving a quick description. Continue reading

Posted in java | Tagged , , , , | 4 Comments

Fun Readings

Swing, James Bond, interface design, Dresden, an Elizibethan England children’s novel, and more — it’s all good.

Posted in Books | Tagged , , , , | Leave a comment

The Clumsy Pattern: Passing Data Around

In the long-awaited part 2 of The Clumsy Pattern, I discuss how we pass around data and objects around — remote server communication. Continue reading

Posted in The Clumsy Pattern | Tagged , , , | Leave a comment

Android Development Quick-start

I’m trying to pick up a bit of Android development experience. Here’s some tips for getting started from scratch.  I have a lot to learn… Continue reading

Posted in java | Tagged , , , | Leave a comment

The Definition of Good Software

In my mind, the definition of well-made software is this:  The absolute minimum required to get the job done.

There’s a little agile in there, relating to software design minimalism.  That’s not what I’m getting at.  Whether you are developing something new, or fixing something broken, deliver the very least you must for the desired outcome.

I did not say to do the least amount of work required, I said deliver the very least required; go quickly and completely in the direction you must move.  Destroy that bug, hack that web page, do something terrible and glorious.  After getting it working, though, take that next step, and wash all the mud off what you just did.  That is, minimize the actual changes you’re about to apply.  Make sure every change makes sense and is required.  Don’t lump another change or some code reformatting in just for “because it needs to be done eventually”.  Focus on only what you are doing.

It is a massive accomplishment to delete code from a working system and still have a working system.  It is thrilling, and you’ve saved yourself and “the next guy” a lot of trouble in the future.  This applies whether you are fixing a bug or making something completely new.

Posted in Technical | Tagged , , | 1 Comment

JavaFX: Getting the Frame of a Stage

The JavaFX Stage class, version 1.2 has some simple methods for dealing with focus, toBack() and toFront().  What it is lacking is a way of setting the “always on top” property, to force the window to the front.

A quick search revealed several hacky things, but when I read Rakesh Menon’s Always On Top post to the end, I found the tidbit I needed:  java.awt.Frame.getFrames().  It’s a static method that lists all AWT frames in use by the system.  So, for as long as JavaFX uses AWT/Swing (not too much longer, apparently), we can use that.  Here’s the code to get your Stage as a Frame, all above-board.  What you do with it is up to you.

function getFrame(frameName:String):java.awt.Frame {
    var frames = java.awt.Frame.getFrames();
    for(frame in frames) {
        if (frameName == frame.getTitle()) {
            return frame
        }
    }
    return null;
}
Posted in java | Tagged | Leave a comment

Not fixing the Xbox 360?

I broke down and bought a new Xbox 360 Arcade unit to replace my variously failing boxes.  If you remember back just a bit in time, I tried a couple of strategies to fix my machine.  They all worked — for a time.  The time the fix worked, however, was variable, ranging from 5-30 hours for a good fix, and as short as 30 minutes for a bad fix.

I’ve spent a lot of time on the boxes, and unfortunately, the time I spent fixing seems to have eclipsed the time I spent playing.

The thing I’ve found most fascinating about the process is that, while buggy, the 360 hardware is quite resilient.  With enough twiddling of screws, I can get a box up and running quite consistently.

Posted in Games, Technical | Tagged , , , , | 2 Comments

A Small Token of Our Appreciation

The Company was pleased with our performance last year.  So they went against everything we’ve been teaching our kids, and gave us candy pills.

That’s Jelly beans on the left, mints on the right.  Or so I hope.

Posted in Family | Tagged , , | Leave a comment

A good and bad thing about Buzz.

One cool thing about Buzz: I get more replies than before on my posts.

One bad thing about Buzz: Those replies are on the Buzz server, not here.

Continue reading

Posted in Technical | Tagged , | Leave a comment

The Clumsy Pattern: Software Development

I haven’t formulated exactly what I’m going to say, but I wanted to start a series on the Clumsy pattern in software development.  Don’t get excited, I’m neither adopting patterns as a beloved thing (that sentence needs its own post), nor am I trying to establish a new industry term.  I’ll do a Clumsy Pattern post when I come across things that are so archaic or broken that they have no right still existing. Continue reading

Posted in The Clumsy Pattern | Tagged , , , , | Leave a comment

Well, they're now on the list, anyway…

Alternate titles for this post:

  • How Gamestop ruined my Valentine’s Day
  • Gamestop Made Me Do It
  • I’m an Idiot

Continue reading

Posted in Family, Games | Tagged , , | Leave a comment

Design Work…

I just picked up three books on Design, based largely on the recommendations in the JavaPosse Roundup 09 sessions on the topic.  I haven’t read them yet, but just perusing them makes them look to be a lot of fun.  Continue reading

Posted in Books, Technical | Tagged , , | Leave a comment