Resume

Posted January 31st, 2011 in by Jonathan

For a simple version use the download button to grab it. This is the snazzy version.

Download

and his name shall be Fargus Munghammer…

Posted March 3rd, 2010 in Featured, Life by Jonathan

I think I have a fairly robust sense of humor, and as a web developer I can show it off sometimes. For anyone who’s built forms you know what I mean, you use a test person to use while validating and working out any bugs in your form. My current favorite is Fargus Munghammer.

Coincidentally, my wife is pregnant. She’s still a ways away from giving birth (July/August), and as such we really haven’t picked out a name yet. We went to our first ultrasound the other day and found out what the baby would be, and as it turns out it will be a boy. I use to just call it “the boy”, but this time I thought I’d go with Fargus Munghammer as a temporary  name holder. There is a problem though;

What should we name the boy?

I told her Fargus, she laughed and said, Continue Reading »

Toolbox – Insert Text into TinyMCE at cursor

Posted November 25th, 2009 in Featured, JQuery, Toolbox, Web Development by Jon

In my mind, I can hear the them to Picture Pages playing in the background – because I want to remind you that in my quest to be a better web developer (and share with the world) I started this “toolbox” so I could keep a cataloged stockpile of simple easy to use tricks to make my life easier – plus I wanted to share…

This is documented somewhere on TinyMCE’s site, but it’s may not be easy to find. It’s simple little trick that I use as a helper to a simple image manager to go along with TinyMCE (since you have to pay for an image manager).

In my day to day life, it seems like I need a backend to every site I build, no one wants simple pages anymore. So I end up with a lot of forms, which have a lot of textareas in them. I like using TinyMCE as the wysiwyg editor for those textareas. This also calls for adding images and TinyMCE charges for the built in feature above using a url for an image. This presented me with a problem, I have end users who aren’t savvy enough to upload images (FTP) and then get the url to add the image to the editor, but they want images.

Continue Reading »

ToolBox – Preloading With Jquery

Posted November 12th, 2009 in Featured, JQuery, Toolbox by Jon

I thought I’d start a new Category called “Toolbox”, specifically for what I use on a daily basis for web development. These are snippets, functions, cheats, etc that anyone can use and make my life as a web developer that much easier…

This installment is something I’ve been using lately to preload images so they don’t spit out the alt text…Mostly it seems to happen when I’m doing something with ajax.

I found this snippet at Matt Farina’s blog.

This is the code (I just made a js file out of it and include it when necessary).

jQuery.preloadImages = function()
{
  for(var i = 0; i<arguments.length;i++) {
      jQuery("<img>").attr("src", arguments[i]);
  }
}

Continue Reading »