Tuesday, September 8, 2009
All 999999999999999999999999...
for example:
9 glasses of beers in 9 seconds on 09/09/09
Go to spark at 9pm 9 mins 9 sec :)
Everythings are 9 on tomorrow.
:)))))
KAMPUCHEA THMEY AIMS LAUNCH THEIR WEBSITE ON 090909
If you want to read breaking news of Kampuchea Thmey Daily, please go to:
By: Hy ChanHan
Friday, September 4, 2009
Germany's Music at CJCC
Iam the one of that event's fan too, i joined it with no seat, was listening by sitting and standing on the floor :(
After the first round was over, some participants went back their home so there were some seat available for me.
Any way it was very romantic and very sweet , My feel mostly fall in it :).
Wednesday, September 2, 2009
CSS3 Preview

Now CSS3 have released a lot of new modules to make us to develop a website easily.
Go to: http://www.css3.info/preview/
Enjoy with this new term!!!
By: Hy ChanHan
Tuesday, September 1, 2009
Social Media is Changing the Way of Business
With tools like Twitter, Facebook, YouTube, Digg, even century old business practices are becoming non-existent. Investors are losing focus on industry trade shows and franchise publications for new information, and are beginning to turn more to their social networks and blogs. This is also coming in a time where marketing budgets are beginning to be cut. Social networks allow for a company to have a never ending reach to their clientele.
A recent study by the Aberdeen Group stated that companies in 2009 plan on increasing their social media marketing budget by 63 percent. 93 percent of American’s expect companies to have a social media presence and are using social media to participate in conversation to engage with brands as well as reviewing and referring others within their social media networks.
Even large corporations are beginning to experiment with viral marketing tactics. Burger King began a social marketing experiment with Facebook in early 2009. They started a promotion where if you drop 10 Facebook friends, you will receive a free Whopper. Burger King created the application that actually notified the friends that were dropped and in the end, the Whopper sandwich “proved to be stronger than 223,906 friendships.” You can view the statistics at www.WhopperSacrifice.com. Jeff Benjamin, the award-winning creator of Burger King’s online viral campaign, has started a growing trend for online marketing. He has shown that people can effectively market your product for free if you give them the inspiration and tools. However, some brands are perfect for viral marketing while some other brands need to stick with customary ways of online marketing.
Twitter has become the most talked about word on the internet. However, most businesses don’t understand why or how twitter may be important. Twitter can be utilized in various ways, but you have to understand the core concept of twitter. Twitter is a micro-blogging and essentially two-way form of communication that is open to the public. It’s a constant stream of communication from you to your consumer and also on a personal level. Twitter can also be a great market research tool for your company and your entire industry. A lot of companies are beginning to do a lot of innovative marketing tactics that bring 100s of thousands of visitors to their site. Church’s Chicken tempted followers on twitter by giving away one dollar to every person that began to follow them. Almost every major company in the United States has a twitter page to follow updates.
Here’s a random sample of companies using Twitter as part of their social media marketing efforts:
- Amazon
- Dell
- Woot
- MTV Music Video Awards
- Mac Rumors
- ESPN
- Carnival Cruise lines
- Intel Software
- CNN
- Delta Airlines
Source: http://libertybelltelecom.com/blog/2009/07/03/social-media-is-changing-the-way-of-business/
Monday, August 31, 2009
How to add a sidebar-top region in Genesis
An example of when you might want to do this would be to display a fixed height banner or contextual ads. Its not good for content that will change in height as it could overflow the div—while the fixed height limitation could be overcome, this tutorial is meant for beginners and is a simple strait forward explanation of how to add new regions in Drupal and how to position the new sidebar-top region using
CSS.
Overview
1. Add a new region to your subthemes .info file.
2. Print the new region in page.tpl.php.
3. Add CSS to position the new region correctly.
For the purposes of this tutorial I am using the genesis-2c layout, which places both sidebars on the right. You will need to make adjustments if you have altered the default width of the sidebars (default is 240px).
1. Add a new region
Open up your subthemes .info file and add the new region. You can call it whatever you want and in the example below I have called it sidebar_top
Note: after you have saved the info file you need to clear the theme registry so the new region will show up on the blocks page. By far the easiest way to do this is by using the Admin Menu module, which has a link to do this included under the Drupal links (the Drupalicon on the left). Otherwise go to Performance settings and clear cache data.
;----------// Regions
; You can define new regions here.
regions[leaderboard] = Leaderboard
regions[header] = Header Blocks
regions[secondary_content] = Secondary Content
regions[content_top] = Content top
regions[content] = Main Content
regions[content_bottom] = Content bottom
regions[tertiary_content] = Tertiary Content
regions[sidebar_top] = Sidebar Top ; Our new region
regions[left] = Sidebar Left
regions[right] = Sidebar Right
regions[footer] = Footer
2. Print the new region
Now in page.tpl.php we need to print the new region. The easy way is to just copy/paste one of the existing sidebars and change the variable name and add a new id, or just copy and paste the new sidebar_top code in the snippet shown below. Note that I have used id="sidebar-top".
Place the new region above the other sidebars. It should look like the following code snippet:
if ($sidebar_top): ?>
print $sidebar_top; ?>
endif; ?>
if ($left): ?>
print $left; ?>
endif; ?>
if ($right): ?>
print $right; ?>
endif; ?>
3. Add CSS to position everything
So now we have to position the new sidebar-top region so it displays correctly.
1. First we float it left.
2. Then we need to give it some negative margin-left to pull it into position.
3. We need to set a height on it.
4. Finally we need to add margin-top to the other sidebars so they don’t overlap the new sidebar top.
The margin top for the left and right sidebars needs to be more than the height of sidebar-top. For those of you who know Zen and how it positions the primary navigation, this is pretty much the same sort of idea.
Heres the CSS - the screenshots below show the CSS and regions using Firebug. Place the CSS in page.css with the other sidebar styles. You will notice I have added 20px to the margin-top value so there is a horizontal gutter.
#sidebar-top {
background: #EEE; /* background color for dev only */
float:left;
height:240px; /* set a height on the new region */
margin-left:-500px; /* use negative margin to pull the sidebar-top into position */
width:480px; /* set a width equal to left + right sidebar widths */
}
#sidebar-left,
#sidebar-right {
margin-top: 260px; /* use margin top to push the left and right sidebars down */
}
Saturday, August 29, 2009
Web3.0 is comming...
Web 3.0 based applications are expected to be a virtual reality location where consumers can try anything. An example would be the Second Life, where more than 1 million players, including offline merchants participate. I can’t wait to try out my new shirt.
Mini barcamp PP2 in Open Institute
Thursday, August 27, 2009
Friday, August 21, 2009
Google links Apps to Groups for quicker sharing
For me, i am using all google apps for my works not only E-mail but among Talk, calendar, googledocs...
So please try it today!!
By: ChanHan
Wednesday, August 19, 2009
Sunday, August 16, 2009
Who know about Drupal CMS well?
I would like to inform you that i need someone know and can do very well with Drupal CMS to be a Web Master.
If you think that you are good at Drupal CMS , please contact me as soon as via hy.chanhan@gmail.com
OR
Tel: 010 705 186
This is your opportunities to be a web master.
Thanks,
HY ChanHan
Tuesday, August 11, 2009
DAP-NEWS is compatible for all web browsers
DAP-NEWS.COM is the top 10 data center of news in Cambodia as Khmer Language. New DAP is compatible for all web browsers after i embedded it with the new term of CSS3 next generation of CSS.
So you still can read it even though you computer don't have Limon Fonts installation.
Do you want your website is compatible for all web browser too?
Do you want your website is read by visitor who don't have Khmer font installation?
Do you want your website embed on:
1- FireFox3.5
2- Safari
3- Google Chrome
4- Opera
?
I can do it now!!! All web browsers are supported with Khmer Font Embed after CSS3 released.
Thanks,
HY ChanHan
hy.chanhan@gmail.com
010 705 186
011 711 756
Limon fonts, ABC Zero space, Khmer Unicode, all of khmer fonts on FireFox3.5, Safari, Opera, Chrome
I have experience with it just today since i saw and try with the next generation of CSS , CSS3.
It is very great for Web Masters or Developers.
Whoever can read the news on the net very well even if they do't have Khmer fonts.
By: HY ChanHan
Women Web Portal, E-learning Web Portal and....view on FireFox, Safari, Google Chrome
URL:
http://women.open.org.kh
http://open.org.kh
http://osp.open.org.kh
http://khmeros.info
http://elearning.open.org.kh
Some browsers as below:
FireFox3.5
Safari 4.0.2
Google Chrome
By: HY ChanHan
Monday, August 10, 2009
CSS3 Border-Radius & Rounded Corners
CSS3 embed font-face
What is CSS, yet alone CSS3?
Very briefly, CSS stands for ‘Cascading Style Sheets’ and is a mark-up language for altering and giving style to a website. The 3, is just to represent the next generation in style sheet language. A version number, if you will.
Why am I writing about CSS3 if it is not yet fully supported?
Because it is fun to learn new things! …and a few people have asked me how to get the rounded corners on their online profiles. I explained how to do this with images or CSS3 and like a snowball rolling down a hill, I am here writing up a few things I’ve been learned along the way and hope that it will this may just help others out too.
CSS3 is not new, it is just the new term that W3C has posted it recently how to make them to load dynamically from server to user agent's computer.
Monday, August 3, 2009
Around the river side in Phnom Penh
So we should be slow , step by step when we are driving on the street.
Look around yourself , left and right before you across the way, especially wear helmet to protect you head and put motor glasses to look somebody behind you.
Accident is the frightening things that government is worrying to the people in the city, particularly is teenager, boys and girls in 2009.
Good intent from me, Mr. HY ChanHan
Get Bachelor Degree on 5th August 2009
It is nearly 3 years long, Build Bright University of Cambodia just aims to celebrate a ceremony to provide Bachelor Degree to the students in stage III on 5th August 2009.
We are the students of BBU very proud and very happy with this meet up because it is the time that we can meet and talk again during we cannot meet each other nearly 3 years ago.
And today 4th August 2009 we are invited by BBU to gather at NIE to get ready some actions before go up to get the certificate from Prime Minister of Cambodia.
At 2:00PM meet you there!!
Saturday, August 1, 2009
Barcamppp has launched to register now
BarCamp Phnom Penh 2009
Technology, Communication and Innovation.
born from the desire for people to share and learn in an open environment. It is an intense event with discussions, demos and interaction from attendees.
Register today!!!! http://barcampphnompenh.org/