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
(def billing-violations [negative-entries small-minimum-payment prepaid-mutual]) | |
(def loss-violations [credit-loss pre-loss]) | |
(def general-violations [minimum-payment-mutual]) | |
(defn all-violations [balances] | |
(concat billing-violations loss-violations general-violations)) | |
(s/defn fixing-invariants :- [Entry] [initial-balances :- Balances, new-entries :- [Entry]] |
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.util.Arrays; | |
public class Capitalize { | |
public static String capitalize (String x) { | |
return x.substring(0,1).toUpperCase() + x.substring(1).toLowerCase(); | |
} | |
public static void main(String[] args) { | |
String text = "gabinete do deputado fulando de tal e de dona maria"; |
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
p "Hello World" | |
#!/usr/bin/ruby | |
irb |
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
@Specializes | |
@RequestScoped | |
public class CidLogicResult extends DefaultLogicResult { | |
private MutableRequest request; | |
public CidLogicResult(...., MutableRequest request) { | |
super(....); | |
this.request = request; | |
} | |
@Override |
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
(ns accounts.adapters.boleto | |
(:import (br.com.caelum.stella.boleto | |
Datas Sacado Emissor Boleto | |
bancos.Santander transformer.GeradorDeBoleto))) | |
(defn generate [] | |
(let [datas (-> (Datas/novasDatas) | |
(.comDocumento 15 2 2014) | |
(.comProcessamento 15 2 2014) | |
(.comVencimento 17 2 2014)) |
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
class Mapper | |
def self.map!(options = {}) | |
drop_index! if options[:delete] | |
Tire.index :index_name do | |
create :analysis => { | |
:filter => { | |
:pt_br_filter => { | |
:type => :stemmer, | |
:language => :minimal_portuguese |
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
@Component | |
public class LazyJSONSerialization extends XStreamJSONSerialization { | |
private SerializerHolder holder; | |
public LazyJSONSerialization(SerializerHolder holder, HttpServletResponse response, TypeNameExtractor extractor, ProxyInitializer initializer, XStreamBuilder builder) { | |
super(response, extractor, initializer, builder); | |
this.holder = holder; | |
} | |
@Override | |
protected SerializerBuilder getSerializer() { | |
try { |
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
@Component // do vraptor | |
@ApplicationScoped | |
@org.springframework.stereotype.Component("stereotypeHandler") // só se for spring | |
public class PackageResourceHandler implements StereotypeHandler { | |
private final Map<String, Class> controllers; | |
private final Map<String, Class> gerenciador; | |
public PackageResourceHandler(ServletContext context) { | |
context.setAttribute("controllers", controllers); | |
context.setAttribute("gerenciador", gerenciador); |
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
@Component | |
@ApplicationScoped | |
public class PackageRoutesParser extends PathAnnotationRoutesParser { | |
//delegate constructor | |
public PackageRoutesParser(Router router) { | |
super(router); | |
} | |
@Override |
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
Result result = //... | |
ResourceMethod method = //... | |
Object[] args = //... | |
Object redirecting = result.redirectTo(method.getResource().getType()); | |
new Mirror().on(redirect).invoke().method(method.getMethod()).withArgs(args); |
NewerOlder