Tuesday, May 14, 2013
Sunday, May 12, 2013
Try Dart in browser
You can try Dart in your browser without installation, by visiting http://try.dartlang.org/.
![]() |
| Try Dart in Chrome run on Ubuntu |
![]() |
| Try Dart in Chrome run on Android 4.1.1 |
![]() |
| Try Dart in Chrome run on Android 4.1.1 |
Friday, May 10, 2013
New Zealand Government Announces That Software Will No Longer Be Patentable
The Government of New Zealand announced that software in the country will no longer be patentable. New Zealand’s largest IT representative body, the Institute of IT Professionals, expressed relief and said the decision removed a major barrier to software-led innovation.
Source: http://www.forbes.com/sites/reuvencohen/2013/05/08/new-zealand-government-announces-that-software-will-no-longer-be-patentable/
Source: http://www.forbes.com/sites/reuvencohen/2013/05/08/new-zealand-government-announces-that-software-will-no-longer-be-patentable/
Wednesday, May 8, 2013
Tuesday, May 7, 2013
Detect user agent using javascript
To detect user agent in JavaScript, simple read navigator.userAgent.
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Mobile-Web-App: Detect Browser</title>
<script type="text/javascript">
function detectbrowser(){
info = "<p><b>Browser info: </b></p>"
+ "<p>user agent: " + navigator.userAgent + "</p>";
document.getElementById("browserinfo").innerHTML=info;
}
</script>
</head>
<body onload="detectbrowser();">
<h1>Mobile-Web-App: Javascript Exercise - Detect User Agent</h1>
<div id="browserinfo"></div>
</body>
</html>
What's My User Agent?
"What's My User Agent?" allows you to view details about your user agent, along with other information your browser sends to this website.
![]() |
| What's My User Agent? |
Subscribe to:
Posts (Atom)




