And then a miracle occurs…

Mar 29, 2007 17:19


Originally published at The JFX. You can comment here or there.

Could God create a firewall that even he himself couldn’t break?

...
public class Firewall extends God{
public boolean allowConnection(Connection c){
if(this.connectionIsMalicious(c)) //extended from God
return false;
return true;
}
}

public class Virus extends God{
public void spread(String host){
Connection c = this.createConnectionThatAppearsNotMalicious(host); //extended from God
attack(c);
}
}
...

Previous post Next post
Up