Dive into the archives.
- Cutting text , handy php function
I know everybody knows how todo it, but cutting text according to text length is needed almost in any content driven website to avoid breaking design. here is my handy function for cutting text:
function wordcutter($string , $cutnum) {
$wordcutter = strlen($string);
if ($wordcutter > $cutnum) {
$titlecut = substr($string, 0, $cutnum);
$titlecut .= ‘…’;
echo $titlecut;
} else {
echo $string;
}
}
- Got a project? need a good domain name? its time for domain hunting at godaddy
I’ve recently started developing a new project, now as time goes by you cannot ignore the fact that you don’t have a name for your project. usually the name stands out and symbolize something or some agenda you have for your project or its overall design. Back in the days i used to brainstorm good […]
- Start modding your website to iphone!
Macosxtips.com has posted a great note about modding your blog to be best viewed on an iphone, its great for any website that wants an iphone friendly stylesheet.
Check it out
PHP START
$iphone_stylesheet = str_replace(â€.cssâ€, “_iphone.cssâ€, get_bloginfo(’stylesheet_url’));
?>
- Terminal OSX Tip that i wasnt aware of, Handy for developers
In my journey discovering new shortcuts and stuff on my Macbook OSX i found a handy shortcut and utility that i wished i knew long time ago. Its called ‘Connect to server’ under the terminal app.
When i started developing on my macbook i needed alot of ssh shell access to my dev and prod server […]
- 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 […]
- My server farm pictured!
I hope this is not my servers… Amazing pictures of the worse datacenter you can imagine.
sad but true…More pictures here
- 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 […]
- Scrolling usability
I just bumpt into a nice article about the usability of scrolling.
Web designers and usability professionals have debated the topic of web page scrolling since 1994. At the early days of the web, most users were unfamiliar with the concept of scrolling and it was not a natural thing for them to do. As a […]
