Monday, February 11, 2013

FREE eBook: The Second Internet

The Second Internet
The eBook The Second Internet: Reinventing Computer Networks with IPv6, by Lawrence E. Hughes, is available for free in PDF format.

Download here: http://www.secondinternet.org/

Wednesday, February 6, 2013

jQuery 1.9.1 Released

The jQuery team is pleased to announced that jQuery 1.9.1 is available! This release addresses the bugs and regressions that have been reported during the past few weeks. Whether you’re using 1.9.0 or using an older version, these are the droids you’re looking for.

Source: jQuery Blog - jQuery 1.9.1 Released

Setter and Getter for private property, in dart.

To define private member in dart, prefix the name with underscore(_) character. This example demonstrate how to implement setter and getter for private member.

class Visitor{
  var _name;   //private property
  
  set name(value) => _name = value; //setter for private property
  get name => _name;                //getter for private property
}
void main() {
  var visitor = new Visitor();
  visitor.name = "Erik";
  print ("Hello, ${visitor.name}");
}


Setter and Getter for private property
Setter and Getter for private property

"Hello World" to dart, with public property

In this example, the variable name is a public property of class Visitor. It can be access from outside directly.

class Visitor{
  var name;   //public property
}
void main() {
  var visitor = new Visitor();
  visitor.name = "Erik";
  print ("Hello, ${visitor.name}");
}


class with public property
class with public property

"Hello World" to dart

"Hello World" to dart
"Hello World" to dart

Friday, February 1, 2013

Thursday, January 31, 2013

Qt 5.0.1 and Qt Creator 2.6.2 Released

It’s been six weeks since the Qt 5.0.0 released, the first patch Qt 5.0.1 released.

With over 400 improvements compared to Qt 5.0.0 the Qt 5.0.1 is a great next step for the Qt 5 series. As a patch release it does not introduce new functionality, just error corrections and improvements. In addition to these, it also adds MinGW 4.7 pre-build binary installer, which has been highly requested. MinGW is the first but not the last new pre-build binary installer which we are going to bring along on later Qt 5.0.x releases.

Know more: Qt Blog, Qt 5.0.1 Released.

Qt Creator 2.6.2 has just been released. A quick count yields 55 patches on top of 2.6.1, the majority of them of the Mostly Harmless kind, fixing usability and UI issues. Some serious issues got fixed, too, most notably the code editor freeze some people encountered on certain constructs in the C++ editor

Source: Qt Blog, Qt Creator 2.6.2 released.