Come to Nothing: မေအာင္ၿမင္ေသာလုပ္ေဆာင္ခ်က္
cool as cucumber: တည္ၿငိမ္းေအးခ်မ္းေသာ(အခက္ခဲၾကံဳေတြခ်ိန္ေတာင္)
Daylight robbery: ေစ်းအဆမတန္ၾကီးေသာ(ေစ်းပိုယူသည္)
Dead letter: ပို႔၍မရေသာစာ
A dear John Letter: ရည္းစားေဟာင္းဆီသို႕ေရးေသာစာ
The pot calling the kettle block: အရူးကတမူးပို(အမွားခ်င္းတူ အၿပစ္ပိုေၿပာ )
Pretty Pass: ဆိုးရြားတဲ့အေၿခအေန
Stand tall: ကုိယ့္ကိုကိုယ္အထင္ၾကီးသူ
Sunday dress: ဆင္တူ၀တ္ဆံု
out of blue: မေမွ်ာ္လင့္ပဲ
jack of all trade:ေနရာတိုင္းမွာ အေရးပါသူ
song and dance:အေၾကာင္းအမ်ိဳးမ်ိဳးၿပသည္
Read full article
HTML 5 ႏွင့္ပတ္သတ္၍သင္သိထားရမည့္္အရာမ်ား
သင့္ရဲ႕ရွိၿပီးသားအရာေတြကို လြတ္မပစ္ရပါHTML4 ကို သင္ခ်စ္၍ေသာ္လည္းေကာင္းမုန္း၍ေသာ္လည္းေကာင္း HTML5 ေပၚထြက္လာတဲ့အတြက္ သင္သိရွိၿပီးသား HTML4 ကိုေမ့ပစ္စရာမလိုပါ။ HTML5 ဟာ HTML4 နည္းပညာမ်ားအားလံုးကို ေထာက္ပံေပးပါတယ္။ အကယ္၍ သင္ဟာ သင့္ရဲ႕ web application နည္းပညာကိုတိုးၿမွင့္ဖို႕ ရည္ရြယ္ထားရင္ေတာ့ HTML5 ကိုေရြးခ်ယ္တာ အသင့္ေလ်ာ္ဆံုးပါပဲ။သင္ဟာ မေန႕က HTML4 နဲ႕ အလုပ္လုပ္ေနခဲ့မယ္ဆို မနက္ၿဖန္အတြက္ HTML5 ကိုေလ့လာထားဖုိ႕ အၾကံၿပဳေစခ်င္ပါတယ္။ဘာေၾကာင့္လဲဆိုေတာ့ web application နည္းပညာဘက္ေတြ ေခတ္စားလာတဲ့ ယေန႕ေခတ္မွာ သင့္ရဲ႕ web site ကို မိုဘိုင္း browser တခုရဲ႕ အၿမင္ကေနၾကည့္ႏိုင္၊အသံုးၿပဳႏိုင္ေအာင္အတြက္ HTML5 မွာ new input control form ေတြပါ၀င္ပါတယ္။Some of [...]
Read full article
Next week I have birthday
24years I living in the world
During this year I got present
During this year I lost my present
During this year I got new friends
During this year I lost my old mate
During this year I found love
During this year unfortunately I found hate
During this year someone came into my life
During this year someone [...]
Read full article
If you are PHP programmer, you know some codes are duplicated to write again. That’s why you should find the PHP Framework.
What is PHP FrameWork?
A PHP Framework is a collection of pre-written methods and classes that are already secured, optimized, well documented and ready to use anytime, “out of the box”.
1. CodeIgniter’s main goal is [...]
Read full article
Step 1:Open Gmail , go to Setting choose Account and Import.
Step2: Click Change Account Setting
Step 3:Choose Multiple Sign in- Enable
Step4:Click On
Step5:Click on save changes after enabling use multiple Google Accounts in the same web browser. Now enter details of your other Google Account and you are good to go.
Step6:
After signing into other account, you will [...]
Read full article
Web Developer 1.1.8
https://addons.mozilla.org/en-US/firefox/addon/60/
CSS Usage 0.2.2
https://addons.mozilla.org/en-US/firefox/addon/10704/
Read full article
With Jquery we can change multi color to the table of HTML.Here are source code for HTML Multi color Table.
<html>
<head>
<script type=”text/javascript” src=”jquery-1.4.2.js”></script>
<script type=”text/javascript”>
$(document).ready(function(){
$(”tr:even”).css(”background-color”, “red”);
$(”tr:odd”).css(”background-color”, “green”);
});
</script>
</head>
<body>
<table border=”1″>
<tr><td>Cell1</td>
<td>Cell2</td>
</tr>
<tr><td>Cell3</td>
<td>Cell4</td>
</tr>
<tr><td>Cell5</td>
<td>Cell6</td>
</tr>
<tr><td>Cell7</td>
<td>Cell8</td>
</tr>
</table>
</body>
</html>
You can also Hide the cell from the table.Here are source code.
<html>
<head>
<script type=”text/javascript” src=”jquery-1.4.2.js”></script>
<script type=”text/javascript”>
$(document).ready(function(){
$(”tr:even”).css(”background-color”, “red”);
$(”tr:odd”).addClass(”headingload”);
$(”button”).click(function(){
$(’tr:odd’).hide();
});
});
</script>
</head>
<body>
<table border=”1″>
<tr><td>Cell1</td>
<td>Cell2</td>
</tr>
<tr><td>Cell3</td>
<td>Cell4</td>
</tr>
<tr><td>Cell5</td>
<td>Cell6</td>
</tr>
<tr><td>Cell7</td>
<td>Cell8</td>
</tr>
</table>
<button type=”button”>Click</button>
</body>
</html>
Have fun with Jquery
Read full article
When you start learn CSS3, all of these sites are useful for your learning.
http://www.w3.org/Style/CSS/current-work
http://www.webmonkey.com/tutorial/Get_Started_with_CSS_3
http://dev.opera.com/articles/view/progressive-enhancement-with-css-3-a-be/
http://www.w3.org/TR/CSS-access
http://designshack.co.uk/tutorials/introduction-to-css3-part-1-what-is-it
http://www.css3.info/
http://www.w3.org/TR/css3-layout/
http://www.sixrevisions.com/interviews/six-questions-eric-meyer-on-css3/http:/sixrevisions.com/interviews/six-questions-eric-meyer-on-css3/
http://www.westciv.com/iphonetests/
http://fantasai.inkedblade.net/style/discuss/wasp-feedback-2008
http://dev.opera.com/articles/view/css-3-attribute-selectors/
http://www.w3.org/TR/css3-selectors/
http://www.xhtml.com/en/css/conversation-with-css-3-team/
http://www.mattwilcox.net/archive/entry/id/1031/
http://www.w3.org/blog/CSS
http://www.24ways.org/2006/rounded-corner-boxes-the-css3-way
http://www.smashingmagazine.com/2009/01/08/push-your-web-design-into-the-future-with-css3/
http://www.mandarindesign.com/opacity.html#transintro
http://dev.opera.com/articles/view/styling-forms-with-attribute-selectors/
http://www.nettuts.com/tutorials/html-css-techniques/5-techniques-to-acquaint-you-with-css-3/
CSS3 Techniques
Now CSS3 is not fully support in browser, that why we must use these extensions.
-Mozilla/Firefox/Gecko: -moz
-Webkit(Safari/Chrome): -webkit
For Drop Shadow
box-shadow: #333 3px 3px 4px;
-moz-box-shadow: #333 3px 3px 4px;
-webkit-box-shadow: #333 3px 3px 4px;
The drop shadow effect accepts multiple values. First is simply the [...]
Read full article
What is this life if, full of care,
We have no time to stand and stare?
No time to stand beneath the boughs
And stare as long as sheep or cows.
No time to see, when woods we pass,
Where squirrels hide their nuts in grass.
No time to see, in broad daylight,
Streams full of stars. Like skies at night
No time [...]
Read full article
ဒီပိုစ္႔ေလးကိုေတာ့ Magazine တခုမွာပါတဲ့ စာတိုကေလးတခုကေနရတဲ့ အကီႏိုရဲ႕ ခံစားခ်က္ကေလးကိုၿပန္လည္မွ်ေ၀တာပါ။ မိဘေတြက ကိုယ္ေမြးထားတဲ့ သားသမီးေတြကို သိပ္စိုးရိမ္တတ္ၾကတယ္။ ေဘးဒုကၡေတြ အႏၱရာယ္ေတြေတြ႕မွာစိုးရိမ္ၾကလို႕ ဆံုးမစကားေတြ ပူပန္တာေတြ အမ်ိဳးမ်ိဳးနဲ႕ သားသမီးေတြကို ဆံုးမတတ္ၾကတယ္။ တခါတေလေတာ့ သူတို႕ေတြရဲ႕ စိုးရိမ္စိတ္ၾကီးမားမႈေတြဟာ ေဘးဒုကၡေတြကို မၿဖစ္ေအာင္တားဆီးေပးေနတာထက္ သားသမီးေတြကို စဥ္းမ်ဥ္းၾကီးတခုေအာက္မွာ ရွင္သန္ေနရသလို ၿဖစ္ေစတတ္ပါတယ္။ စာတိုေလးက အေဖနဲ႔ အေမဟာ ကြ်န္ေတာ္ကို လမ္းသြားရင္ ခလုတ္တိုက္မွာ ေခ်ာ္လဲမွာ အနာတရၿဖစ္မွာစိုးရိမ္တတ္ၾကတယ္ ဒါေၾကာင့္ ကြ်န္ေတာ္လမ္းသြားတိုင္း ကြ်န္ေတာ့္ေၿခေထာက္ေတြကိုပဲ အၿမဲငံုၾကည့္ခဲ့တယ္။ ကြ်န္ေတာ္ တခါမွ ေခ်ာ္မလဲခဲ့ဘူး၊ၿပဳတ္မက်ဘူးဖူး၊အနာတရမၿဖစ္ခဲ့ဖူးဘူး ဒါေပမဲ့ ေကာင္းကင္ၾကီး ဘာအေရာင္မွန္းကြ်န္ေတာ္မသိခဲ့ဘူး မိုးတိမ္တိုက္ေတြ ဘာအေရာင္မွန္းကြ်န္ေတာ္မၿမင္ဖူးခဲ့ဘူး။ ဘာေၾကာင့္လဲဆိုေတာ့ ကြ်န္ေတာ္လမ္းသြားတိုင္း အၿမဲေခါင္းငံုထားခဲ့လို႕ပဲ။ စာသားေလးနဲ႕ေပးၿခင္တဲ့ရသကို ခံစားႏိုင္ၾကမယ္လို႕ထင္ပါတယ္။ ဒီလိုပဲ အကီႏိုတို႕လည္း လမ္းေတြကိုေလ်ာက္ဖို႕ စတင္ေၿခလွမ္းတဲ့အခါ [...]
Read full article