Dive into the archives.
- Paul Graham take on founding a startup
Everyone asks the big question, why not start your own startup? develop your idea. he has some really excellent takes on opening a startup. Why no open your own startup?
A lot of people think they’re too young to start a startup. Many are right. The median age worldwide is about 27, so probably […]
- My life, told by Wil Schroter from Big Network
I couldnt read a better describing article Wil Schroter wrote about the life of a startup founder. I know his taking it a bit too far and maybe over doing it. but i think his dead on the point of being a startup founder. Its not a human behavior to be a startup founder. its […]
- 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 […]
- Interesting approach to duplicates
I just found out a ‘nice’ feature digg has enabled. Back in the days when you posted something that was a duplicate they would have let you repost it anyhow and let you decide. now if you post something that was already been posted it takes you straight to the story without letting you repost. […]
- Pownce Duplicates make kevin delete posts
I’ve been using pownce for some time now, and i found that there are a few users already named kevin rose. as a fan of digg i immediately added him as a friend. both of them. today a weird confession by one of the kevin’s (the fake one i assume) got my interest going.
obviously eventually […]
- 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’));
?>
- Web 2.0 = Reality TV?
Just a few days ago i was laying in bed pondering about world domination and trying to get some sleep with a 30c degree night and 80% humidity outside when i reached a conclusion. There is such a thing as TV 2.0 and its not Joost. Its called Reality TV and it was invented long […]
- 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 […]
