Monday, October 6, 2014

Google Voice Command List

General
Search for 
Who invented 
Show me the stocks for 
Author of 
How old is 
How tall is 

Time & Date
What time is it in 
When is the in 
When is the sunset in 
What is the time zone of 
Time at home

Weather
Show me the weather
Is it going to rain tomorrow?
Do I need an umbrella?
Do I need a jacket
What is the weather in 
How is the weather on going to be?

Maps / Location
Map of 
Show me the nearby on map
Where is situated?
in 
Navigate to in car
I am hungry (shows all nearby food points on map)
How far is from 

Calculations / Conversions
How much is times 
What is percent of 
Square root of 
... equals
What is the numerical value of Pi
Convert into 
Temperature of the sun

Sports
points table
Who won the last match between and 
scorecard
Schedule of games


Websites
Go to 
Open 
Show me 
Browse to 

Entertainment
Listen to 
Play 
YouTube 
When was the first episode of 
movies
Who acted in 
Who is the producer of 
When was released
Runtime of 

Notes / Reminders
Remind me to at 
Wake me up in 
at 
Self note to 
Set alarm for 

Contacts / Communication
Call 
Send to via text
(shows the contact card)
Call in 
Send a text to 
Email to , B C C , Subject , message 

Flights
Flight Status of 
Has landed/departed
When will land

Other
Do a barrel roll

Saturday, October 4, 2014

Hacking Game လမ္းၫြန္

အခု ဂိမ္းကို hack လုပ္မဲ့ tools ကေတာ့ 
Game Hacker (One Key MOdification)
ေပါ့
One Key MOdification ဆိုတာကေတာ့
code အေၾကာင္းသိစရာသိပ္မလိုဘူး
ဂိမ္းတစ္ခုကိုလြယ္လြယ္hack လို႔ရတာေပါ့
ဒီtools ေလးနဲ႔hacking စလုပ္ေတာ့မယ္ဆိုရင္ 
ပထမဦးဆံုး  ငါးဖမ္းတဲ့ဂိမ္း ေလးနဲ႔ စလုပ္သင့္တယ္
တစ္ခ်ဳိ႕ဂိမ္းေတြက goldေတြ gem ေတြ တစ္ျခား ဟာေတအမ်ားႀကီးပါေတာ့
hack လုပ္ရတာမလြယ္ဘူး

ပထဆံုး
ကိုယ္hack မဲ့ game က ေငြ/ေရႊ ဘယ္ေလာက္ရွိလဲၾကည့္ရမယ္
ဥပမာ တစ္ေထာင္ဆိုရင္ search box မွာ တစ္ေထာင္လို႔ရိက္ၿပီးGo ကိုႏွိပ္

loading bar ေလးေအာက္ကေနတစ္ေျဖးေျဖးတက္လာလိမ့္မယ္
ျပည့္သြားတာနဲ (find out----result ,change them into?)
အဲဒါေလးေပၚလာရင္
(Modify နားေလးမွာ list ဆိုတာေလးရွိရင္ႏွိပ္လိုက္
ေသာ့ပုံေလးနဲ႔ 103940390401.003093d ေပၚလာလိမ့္မယ္
သူ႔ေရွ႕က check box မွာအမွန္ခ်က္ ေပး -check all လုပ္လိုက္ၿပီးေတာ့ modify)
 ေပၚလာရင္ ႏွိပ္လိုက္ၿပီးေတာ့ 
text box ထဲမွာ 9999999စသျဖင့္ႀကိဳက္သလို႐ိုက္ၿပီး
modify ဆိုတဲ ခလုတ္ကေလးႏွိပ္လိုက္
modification success ဆိုရင္ရၿပီ

dont forget to  discuss
leave a comment 

Tuesday, September 2, 2014

html table layout sample code

<!DOCTYPE html>
<html>
<head>
<style>
table,th,td
{
border:1px solid black;
border-collapse:collapse;
}
th,td
{
padding:5px;
}
th
{
text-align:left;
}
</style>
</head>
<body>

<table style="width:300px">
<tr>
  <th>Firstname</th>
  <th>Lastname</th>
  <th>Points</th>
</tr>
<tr>
  <td>Jill</td>
  <td>Smith</td>
  <td>50</td>
</tr>
<tr>
  <td>Eve</td>
  <td>Jackson</td>
  <td>94</td>
</tr>
<tr>
  <td>John</td>
  <td>Doe</td>
  <td>80</td>
</tr>
</table>

</body>
</html>