Skype released an iPhone version...
Does anybody have used it already?
More details in wired
Tuesday, March 31, 2009
skype on iPhone
Posted by
Kaja
at
Tuesday, March 31, 2009
0
comments
Friday, March 27, 2009
True or Not... be prepared
Here comes again, Conficker will return and have a new variant.
So what can we do?
More info here Beware
Posted by
moncypher
at
Friday, March 27, 2009
1 comments
Labels: Worm
'Psyb0t' worm infects Linksys, Netgear home routers, modems
Now we need worry about this. Have a virus called "psy0t" and he don't want your computer, but your modem. Check more in ZDNet and APC.
Posted by
Fabiano Ozahata
at
Friday, March 27, 2009
0
comments
Thursday, March 26, 2009
Inheritance: returning to the basics of OOP
According to MSDN:
Inheritance, together with encapsulation and polymorphism, is one of the three primary characteristics (or pillars) of object-oriented programming.
It is very simple to do it in C#, but sometimes we can fall in some traps.
Today we had a very interesting problem. How to prevent a child class to override a base class method?
Lets go to our problem: We have a base class called ContentPageBase that inherits from System.Web.UI.Page. And we want to use it as base for our WebContentPages.
But, we want to prevent those child pages to access the method Page_Load(). How to do it?
The abstract keyword enables you to create classes and class members that are incomplete and must be implemented in a derived class.(..)An abstract class cannot be instantiated. The purpose of an abstract class is to provide a common definition of a base class that multiple derived classes can share.
So the code will be like this:
public abstract class ContentPageTemplate : System.Web.UI.PageIf you try to override the method by implementing the child class:
{
protected void Page_Load(object sender, EventArgs e)
{
Page.Title = "Calling from Base Class";
}
}
cannot override inherited member 'ContentPageTemplate.Page_Load(object, System.EventArgs)' because it is not marked virtual, abstract, or override
Posted by
Kaja
at
Thursday, March 26, 2009
4
comments
Video: OnLive gaming demonstrated live, network latency discussed
Now trying to use in games, imagine in a future you don't need computer in home or work (Maybe in this case the war room will be more fast to create. hehehehe).
Online demostration
Posted by
Fabiano Ozahata
at
Thursday, March 26, 2009
0
comments
Saturday, March 21, 2009
Firefox Lover's
Reasons to install IE8 :
green : surf in web
blue : download Opera
orange : test a new anti-virus
red : download Firefox
One image is better than one thousand words... ;-)
Posted by
Fernando
at
Saturday, March 21, 2009
1 comments
Thursday, March 19, 2009
IE 8 final version.
According to a brazilian blog(meio bit) the final version of Internet Explorer 8 will be launched today, 1h in the morning JST.
I am using in my machine the demo version, and I have only one problem with my Visual Studio 2003, it doesn't run in debug mode when more than one IE window is open. Wondering why... Lets see how the final version behaves..
Posted by
Kaja
at
Thursday, March 19, 2009
0
comments
Labels: IE8, internet explorer, visual studio
