This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.io.*; | |
public class PrevaylerJr { | |
public static interface Command extends Serializable { | |
Object executeOn(Object system); | |
} | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
OK, so how does one collectively refer to companies such as Google, Facebook and the like? | |
Guess I'll just go ahead and coin the term "Borg Queen Wannabe" Company... | |
See you, Klaus. | |
http://sneer.me |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
É bem útil conceituar forte e explicitamente a diferença entre Resolver/Eliminar um problema | |
e Contornar/Gerenciar um problema. | |
Exemplo de Problema: "Tá um inferno gerenciar os bugs do nosso sistema." | |
Contornar/Gerenciar: "Vamos subir um bug tracking tipo Jira/BugZilla da vida!" | |
Resolver/Eliminar: "Vamos melhorar a qualidade do código até reduzir em 98% o surgimento de | |
bugs." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class MailingRound { | |
private static final int MAX_EVENTS_TO_SEND = 5; | |
private static final String SUBJECT = "Event Reminders"; | |
private final EmailSender _sender; | |
private final Events _events; | |
private final EventsMailFormatter _formatter = new EventsMailFormatter(); | |
private final long _startTime = daysFromNow(1); |
OlderNewer