An old-school list of design sites from iNSPiRiT.
Month: September 2005
Newdream Arthub
The Newdream Arthub, also kicking it old-school.
Glossary of printing terms
Ever wanted to know what a butt fit is? What about a densitometer? How about a recto or wire o? This Glossary of Printing Terms and Definitions should help you out.
Casino Royale remake
Casino Royale is set to become an actual James Bond movie, they want a younger feel for the role with less support from fancy gadgets. They will also only be casting one Mr. Bond this time.
US planning to invade Venezuela
According to Hugo Chavez, the U.S. is planning to invade Venezuela. In other unrelated news, the president of a foreign nation jumped up and down screaming, “Look at me! Look at me! Over here! Hey! Look at me!”
Dildos in the drugstore
Shopper’s Drug Mart will be selling sex toys in the near future. See that Mr. Intellectual Rag? That’s what you get for moving Omar to national news. I used to run Canada’s other national newspaper and know about the filth he spews forth.
Styling thumbnail photos
A few people have been asking about how I style the images in the sidebar and I’ve been lazy in replying. Basically, we just need a list of images and then apply a few css style to it.
For the flickrRSS crowd, go into the options panel and set before image to <li>
and after image to </li>
. In your sidebar code/template/whatever wrap your flickrRSS function in a list. We also want to add a <div>
so we can style the list. It will end up looking something like this:
<div id="flickr">
<ul><?php get_flickrrss(); ?></ul>
</div>
That’s it on the html front. It’s the styling that’s left. There are two essential things that we want to do, remove the bullets and remove the breaks. These two bits of css should take care of that:
#flickr ul { list-style: none; }
#flickr ul li { display: inline; }
Everything beyond that is gravy. Personally, I take all the margins and padding off the list and then style the images with a thing border and a bit of padding. My code looks something along the lines of:
#flickr ul, #flickr ul li { padding: 0; margin: 0; border: 0; }
#flickr a img { border: 1px #ccc solid; padding: 3px; margin: 5px 3px 0px; }
#flickr a:hover img { border: 1px #999 solid; }
That’s pretty much it. You could start doing fancy things like backgrounds, fading the picture on hover, etc. But we’ll leave that as an exercise in Google research. There may be better ways to do it, you’re welcome to comment.
Koala’s are Evil
Caught the Kid Koala show at the Elixir last night. He’s pretty sick. You watch him standing up there mixing, he’ll put something on, smile to himself and turn around to grab something else. Thirty seconds later you know why he’s smiling. It’s the bits of Radiohead or Monty Python’s Holy Grail or whatever.
My camera was being a bit flakey, but I grabbed a few decent photos. I also caught a bit of video footage of him doing his trumpet thing, it’s about 24 seconds long. Here it is for download:
Google circa 1998
Google circa 1998. Kickin it old-school, Stanford style.
Wild new Nintendo controller
Nintendo has revealed the design of the controller for the new Revolution console. It’s designed to be one handed — essentially a remote with tilt-sensors that allows for a wide variety of interaction. All I can say is wow.