just heard that michael jackson died.
links: http://latimesblogs.latimes.com/lanow/2009/06/pop-star-michael-jackson-was-rushed-to-a-hospital-this-afternoon-by-los-angeles-fire-department-paramedics--capt-steve-ruda.html
http://www.msnbc.msn.com/id/31552029/ns/entertainment-music/
As a programmer, there are no real problems but challenges...ones that we need to overcome. This means that there is a solution for all challenges that one may face. For all the challenges that I have faced, I will share them and their solutions.
Thursday, June 25, 2009
Saturday, June 20, 2009
kobe
he is a team player, motivator and everything else.
this yute has got skills!!!!!!!!!!
i used to play like that too... im retired now though
rating music albums & songs
im going to start a new hobby, rating songs & albums. i have alot of music and i want to express my thoughts on them. so i will start that next week, the week of june 21st.
Friday, June 19, 2009
top 10 nba finals moments
Check how many moments the la lakers have in the top 10. ;)
kobe hanging, 3 points from fisher? hmmm
Sunday, June 14, 2009
champions are champions!!!!!!!!
you better recognise talent when you see it!!!!!!!!
kobe, a star. its undeniable. alot of people do not like him because they think that he is a show off but, he's got talent that is obvious. he uses it for his team which is the important thing. his team won.
to the greatest, la lakers!!!!!!!!!!!
Friday, June 12, 2009
Usain bolt's t-shirt says what?????????
here is the link: http://www.fotoglif.com/f/cbemyf1q3eyu
well, i didnt see what the shirt says when i looked at it initially. i was told to turn my head side ways to see what the shirt says. i thought it was come chinese and asked the question "who translated it for him?".
i dont know. who says he knows what the shirt is saying?
im not going to blame him because i dont no whether or not it was deliberate yes or no.
what do you think?
well, i didnt see what the shirt says when i looked at it initially. i was told to turn my head side ways to see what the shirt says. i thought it was come chinese and asked the question "who translated it for him?".
i dont know. who says he knows what the shirt is saying?
im not going to blame him because i dont no whether or not it was deliberate yes or no.
what do you think?
Thursday, June 11, 2009
refresh/reload parent mask
i used this function to reload a parent mask in p4a 3
a parent mask would be one that calls another mask (the child). so the function would be in the child mask.
function doReloadParentMask(){
$p4a = p4a::singleton();
//$parent = p4a::singleton('product');
//$parent->destroy();
$p4a->masks->product->destroy();
$p4a->openMask('product');
}
a parent mask would be one that calls another mask (the child). so the function would be in the child mask.
function doReloadParentMask(){
$p4a = p4a::singleton();
//$parent = p4a::singleton('product');
//$parent->destroy();
$p4a->masks->product->destroy();
$p4a->openMask('product');
}
Wednesday, June 10, 2009
how to replace extra space in a database/sql column
use the replace function:
update table_name
set column_name = replace(column_name, ' ', ' ');
the function takes the column name and replaces two occurrences of spaes with one;
update table_name
set column_name = replace(column_name, ' ', ' ');
the function takes the column name and replaces two occurrences of spaes with one;
Monday, June 8, 2009
how to build spam free contact forms
i saw this explanation of how to build spam free forms and this is the link: http://nfriedly.com/techblog/2009/06/how-to-build-a-spam-free-contact-forms-without-captchas/
Subscribe to:
Posts (Atom)