Blog
Thoughts about programming, design, and life in general.
-
The Nauga Monster
One of these days I’m going to buy myself a Nauga Monster, you may not believe it but this little guy is vintage.
Read more... -
How do I get the length of a JSON file?
First, you’ll have to create a properly formatted JSON file. Once you’re done with that, getting the current number of objects from that list is a piece of cake.
Read more... -
Where do I specify the language of my website?
According to W3C, you can add lang=”en” (for english) attribute to your HTML tag and this is still valid for HTML5.
Read more... -
Does HTML5 need an html tag?
No it is not REQUIRED but yes, we should still use it, allow me to explain.
Read more... -
What is the doctype for HTML5?
The first line of your HTML5 file should include a doctype, it is case-sensitive with html in all lower case. The doctype tells the browser which specific rendering mode to use and sets the guidelines for HTML validation. If you are writing HTML5, you’ll want to use the following tag:
Read more... -
Eames The Little Toy
-
Eames House of Cards
-
How do I get an image to float on my website even when scrolling?
First you’ll want to put a DIV somewhere on your page and give it a class, for my example I’m going to call it floatingbanner.
Read more... -
How do I remove dotted lines around links in FireFox?
This can be done with CSS, you’ll need to change button to whatever class, tag or id you need to remove those dotted lines from.
Read more... -
Count Number of List Items with jQuery
So you want to know how many items are in that list:
Read more...