Dive into the archives.
- Handy CSS trick i found on the web
If you build websites that let users upload avatars or image and you wondered how facebook maintain that ratio for images? here is a css snippet that knows how to keep your avatars at ratio scaled to any size:
.avatar img
{
float:left;
vertical-align:middle;
margin-left:0px;
border: solid 1px #CCCCCC;
top:50%;
max-width:60px;
width: expression(this.width > 60 ? 60: true);
max-height:65px;
height: expression(this.width > 70 ? 70: true);
}
You […]
- Cross browser testing done right
As a web dev and a designer i’v been struggling with testing cross browser testing for along time.
Im using a mac so half of the browsers out there i can easily run on my osx. but there is one dreadful browser that isnt running well on osx. you guessed it. IE!, on all of its […]
- Its been awhile…
Yeah, i know. its been awhile since i wrote something on my blog, didnt have much time to dedicate to writing in the blog.
Let me summerize what happend in the past few months. i’v moved to mac osx, thats super nice. Never workt faster and better before, seeya windows!
Went independent (The way that it happend […]
- CS2 on linux, horray! i dont need to boot XP!
My wish has come true, i dont need to boot XP anymore, got CS2 running on ubuntu! woohoo!!! fun fun fun!!!!
Using this howto i managed to run CS2 on my linux box with ease. who knew its that simple?!
http://blog.publicidadpixelada.com/how-to-adobe-photoshop-cs2…
- Who stole what? or is it opensource icons?
While wondering around i noticed crunchnotes and digg got the same exact feature. with the same exact icon. is that odd? is that some plugin taking info from digg or just plain mimic?
(left is digg right is crunchnotes, dont mind the articles on both).Well heres an early update: apparently its a plugin called ck-karma - […]
- Quick movers and shakers from alexa in one place.
Great small web service provided by a coder from esnips.com lets you track companys on alexa in a top10 style with graph and info on them. just like you do when you want to follow on a stock. very useful and nice. i suggest they incorporate more and more services to that calculation and have […]
- Excellent article about color theory
http://ryanfait.com/articles/2006/08/12/color-theory/
For a long time, now, there has been a problem that fledgling designers have run into on a constant basis. This problem seems insignificant to most, but in actuality it is quite possibly the most important factor in a design or piece of artwork. Yes, you guessed it…I’m talking about the issue of COLOR.
Color can […]
- Squidfingers free patterns
Great site for free patterns to use with photoshop or website design
squidfingers.com
- Sex pc… Where do you connect the usb drive?
This is the most useless pc alive. but fun to look at. All of the keyboard and mouse are connected via anal.. ehhee….
this is the ONLY pc that geeks can say ’sexy’ when referring to its hardware.
DO NOT TRY TO INSERT ANYTHING WHERE IT DOESN’T BELONG. you may be electrocuted to death or lose certain […]
- How to design Windows Mobile App’s UI
Great article published by Mauricio I. Perez, MCAD from Microsoft Corporation review from the old to the new mobile ui and puts out some good guidelines on designing your future mobile app ui.
heres some bits:
The UI of Windows Mobile based devices continue to evolve in a convergent fashion. The addition of keyboards to both the […]
