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;
}
}
- Build your own Video streaming community for 0$
I’ve been fiddling with flash for a long time and i always knew that if you want to stream a video properly you need a flashcast server that costs more then a malibu home, turns out that most of the big companys out there use free opensource tools todo so, and now someone finally grouped […]
- 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’));
?>
- Experimenting with Amazon S3 Service
Recently i started experimenting with Amazon’s simple storage service S3. The idea is that the service cost is free and you only pay for usage, if you got a huge bandwidth crunching site you can use amazon’s s3 server farm to host videos,pictures and even your .pid mysql database. they charge you by the usage […]
- 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 […]
- Choosing the right technology as ingredient for a successful web application
I must start with a declaration that what im about to write is my own perspective on things and experience of working in startup company’s that failed or prevailed. that expeirence showed me the weak points of bad planning and the selection of a proper technology to start with is an ingredient and even in […]
- Safari hangs while logging into Gmail
When i tried to log into gmail using my safari fresh install on my macbook intel that i just bought, the whole page hanged on the LOADING screen after login, i tried every possible thing that google suggested as clearing the cache, resetting safari, clearing cookies and restarting osx. nothing was working until i came […]
- We are all doomed.
I knew this day will arrive, when you could buy the gear from ebay to crack the atom in your basement.
I hope binladen doesnt have an ebay account.
in 2006 Thiago Olson joined the extremely sparse ranks of amateurs worldwide who have achieved nuclear fusion with a home apparatus. In other words, he built the business […]
- Datesnearby, Stalk single woman efficiently, Dare to say rape.
http://datesnearby.net is a very nice website indeed, i really like the concept, not that i need to find anything there (found it thru webware.com, but still…
I am not sure what to think when you see a huge directory of single woman aggregated from alot of web dating sites put together on a map for your […]
