Netlumination Portfolio
Netlumination Blog

Archive for June, 2010


Pimp My Web Page: Simple to Complex

Monday, June 21st, 2010

Let’s start with the simplest web page:

<h1>Hello World!</h1>

Well, that’s nice, but there’s certain information missing. We should add a doctype to let the browser know what flavor of HTML, XHTML, etc we’re using. This declares the document type definition (DTD) in use for the document.

We should also add things like the HTML elements, a HEAD element for specifying more information about the page, a BODY for the contents.

We should also let the browser know our character encoding with a meta tag.

So now we have: Read the rest of this entry »



JQuery for a little night time reading

Monday, June 14th, 2010

If you use Javascript, JQuery is a great framework to speed up your coding. It’s essentially a collection of really convenient shortcuts. It does more, since JQuery also handles a lot of browser compatibility issues. So, you don’t have to go through your JQuery code to update it for new browsers, all you have to do is download the new version of JQuery, and your old commands will learn new tricks.

Ah, speaking of downloading JQuery, you just might want to understand how JQuery works if you use it. The first time I tried to do this, I simply clicked on my JQuery src file link:

<script type="text/javascript" src="http://peter-ajtai.com/jquery/jquery-1.4.2.min.js"></script>

… and this is what I saw:

Wall o text JQuery

Fun reading, huh? Read the rest of this entry »



The joys of toxic asset ownership

Friday, June 11th, 2010

I tend to listen to a lot of podcasts while doing housework. Listening to things like Planet Money makes washing the dishes fun… well, maybe not, but it makes it feel like I’m learning something new while doing the same old same old. Read the rest of this entry »



blog