Archive for November, 2006
Bjarne Stroustrup, the author of C++ says:
…People reward developers who deliver software that is cheap, buggy, and first. That’s because people want fancy new gadgets now. They don’t want inconvenience, don’t want to learn new ways of interacting with their computers, don’t want delays in delivery, and don’t want to pay extra for quality. And without real changes in user behavior, software suppliers are unlikely to change.
So the quality of software produced by the developer is hurt with the demanding timeline and requirements. Users, eat your own bugs!
Read it yourselves:
http://www.technologyreview.com/InfoTech/17831/page1/
Wednesday, November 29th, 2006 |
Tags: Develop, Weblog |
2 Comments
Sometimes we want to know the exact time on the server. We can get the timestamp on server using PHP simply by using the time() functions. But if we need a clock, a real living clock, we gonna need to incorporate PHP with clientside programming such as JavaScript
Read the rest of this entry »
Monday, November 20th, 2006 |
Tags: Articles, Javascript, PHP |
3 Comments
This article is covering some common activity that used to do while doing some work on the web using PHP based on my experience. I hope that it helps other developer to speed up development process.
Read the rest of this entry »
Friday, November 17th, 2006 |
Tags: Articles, PHP |
5 Comments
For college students that need new ideas for their final thesis, here’s some ideas that I have, some of it are the buzzwords of today’s IT technology
- Ruby On Rails, its a magic Object-oriented Web framework that built on Ruby language. You can build an entire website only by editing few code. Design the database, configure and build. You will need some knowledge on programming with Ruby.
- Django, another Web framework built with the powerful Python language. A competitor of Ruby on Rails. Also, you will need some knowledge on Python programming language
- AJAX,, a methodology in building new-style Web application, rich-client application, involving javascript and DOM. This subject require a intermediate to expert knowledge on Javascript scripting language. A little search on google about AJAX will give you some clue.
Ok, that’s what I can think of now, I think
Wednesday, November 8th, 2006 |
Tags: Weblog |
1 Comment
Got this from leykisonline, rough as it says, but some are really true I think. Teaches men how to get more tail for less money… and, more importantly, teaches women how men think!
- NEVER, EVER date a single mother. You already know her stance on abortion, she wont have one. Don’t risk paying vaginamoney! PLUS, her kids will always come before you! Why would you want to be second place to some spoiled little brat!?!
- Never do what you don’t want to do. You make the money, you decide where you are going and what you are doing.
- Don’t ask a women what she wants to do.
- Never tell a women how much money you make.
- Don’t EVER date co-workers! Unless you don’t give a rats ass about your job, stay away from people you work with! It’s always asking for trouble.
- Never answer the phone, or go out on the weekend. Even if you really don’t, you have to make it appear as though you have better things to do than be with her on the weekends.
- Never spend more than 40 bucks on a date. This includes buying gifts, flowers, candy, jewelry, etc. It does NOT help in getting laid. It’s a waste of money. If anything, buy alcohol and get her drunk.
- NEVER approach a woman in a club who has her girlfriends with her. There is NO point, you will NOT get laid when women are in groups.
- If you are not getting laid by the 3rd date, dump her and move on.
- No spooning, no cuddling, no staying over. Get in, get out!
- Never be in a committed relationship UNTIL you are really ready to settle down.
- NEVER answer the phone on the weekends. It makes you look like you have nothing better to do. Weekends should be reserved for hanging out with your buddies or for guaranteed sex. Even if you really have nothing to do, let the answering machine take the call. You’re busy.
- Don’t speak to women you work with unless it’s related directly to work. Don’t date them. Don’t tell them they look nice. Don’t comment on anything except whatever work needs you have, because you’re a walking lawsuit waiting to happen.
Thursday, November 2nd, 2006 |
Tags: Weblog |
6 Comments
Extreme-featured, all-in-one application are doomed. This is the new age of Software Development, User Experience
10 fundamental rules for the age of user experience technology:
- More features isn’t better, it’s worse.
- You can’t make things easier by adding to them.
- Confusion is the ultimate deal-breaker.
- Style matters
- Only features that provide a good user experience will be used.
- Any feature that requires learning will only be adopted by a small fraction of users.
- Unused features are not only useless, they can slow you down and diminish ease of use.
- Users do not want to think about technology: what really counts is what it does for them.
- Forget about the killer feature. Welcome to the age of the killer user-experience.
- Less is difficult, that’s why less is more.
Thursday, November 2nd, 2006 |
Tags: Develop |
No Comments
This is just another trick for easier way to include all your PHP code. Try to hack the include_path configuration. This is how I used to do it:
$separator = PHP_OS == "WINNT" ? ";" : ":";
ini_set("include_path", ini_get("include_path") . "$separator./lib1/$separator./lib2");
The code above will add directory ./lib1 and ./lib2 to the PHP search path.
Wednesday, November 1st, 2006 |
Tags: Articles, PHP |
2 Comments