7

Since becoming an "Architect", I've come to learn "Architect" simply means siphoning your will by eliminating all opportunities to actually write code ...

public class Architect {

static final boolean inMeeting = true;
private int will;

public static void main(String args[]){

Architect me = new Architect();
if(me.inMeeting){
while(meeting.active){
me.reactToEvents();
}
}else{
me.writeCode();
}

}

public void reactToEvents(){
if(new Random().nextInt() % 3 == 0)
will -= this.hit(this.face, this.palm, Force.CONSIDERABLE);
else
will -= this.hit(Office.desk, this.head, Force.MODERATE);
}

public int hit(Object object, Object with, Force force){
object.useForce(force);
object.moveTo(with);
return new Random().nextInt();
}
}

Comments
  • 1
    at the company I work for, architects are basically very expensive (paid by the clients, of course) sysadmins who attend a shit ton of boring meetings...
Add Comment