This file contains hidden or 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 sealed class Singleton { | |
| private static Singleton instance; | |
| static Singleton() { | |
| instance = new Singleton(); | |
| } | |
| public Singleton Instance { | |
| get { return instance; } | |
| } |
This file contains hidden or 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
| [Exception in:/outrasOpcoes/841e3.jsp] null java.lang.NullPointerException at | |
| jsp_servlet._outrasopcoes.__841e3._jspService(__841e3.java:224) at | |
| weblogic.servlet.jsp.JspBase.service(JspBase.java:34) at | |
| weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227) at | |
| weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125) at | |
| weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300) at | |
| weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:183) at | |
| weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:526) at | |
| weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:447) at | |
| weblogic.servlet.jsp.PageContextImpl.include(PageContextImpl.java:163) at |
This file contains hidden or 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
| var todos = Assembly.GetExecutingAssembly().GetTypes(); | |
| var implemetacoes = todos.Where( | |
| impl => | |
| impl | |
| .GetInterfaces() | |
| .Where(i => i.Name.StartsWith("IMapa")).Count() == 1); | |
| implemetacoes.SelectMany(x => x.GetInterfaces()).ToList() | |
| .ForEach(i => container.Resolve(i)); |
This file contains hidden or 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
| REST e o Cloud: feitos um para o outro? | |
| http://qconsp.com/palestra/howard-dierking/rest-e-o-cloud-feitos-um-para-o-outro | |
| Levando .net onde você jamais imaginou | |
| http://qconsp.com/palestra/rodrigo-kumpera/levando-net-onde-voce-jamais-imaginou | |
| Entendendo sistemas distribuídos - CAP é só o começo! | |
| http://qconsp.com/palestra/john-rowell/entendendo-sistemas-distribuidos-cap-e-so-o-comeco | |
| Combinando Programação funcional e O.O. em javascript de forma prática |
This file contains hidden or 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
| Dentro da caixa | |
| 8 = 8 | |
| Fora da caixa | |
| 8 = 2*2*2 | |
| 8 = 2^3 | |
| 8 = S(S(S(S(S(S(S(1))))))) | |
| ... |
This file contains hidden or 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
| git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)%Creset' --abbrev-commit --date=relative |
This file contains hidden or 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
| //Rota no Sammy | |
| this.get('#/evento/criar', Views.Evento.Criacao.Inicializa); | |
| // Arquivo da View | |
| ;(function() { | |
| if(!Views.Evento) | |
| Views.Evento = { }; | |
| Views.Evento.Criacao = function (ctx) { | |
| var self = this; |
This file contains hidden or 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 ControllersInstaller : IWindsorInstaller | |
| { | |
| #region IWindsorInstaller Members | |
| public void Install(IWindsorContainer container, IConfigurationStore store) | |
| { | |
| container.Register(FindControllers().Configure(ConfigureControllers())); | |
| } | |
| #endregion |
This file contains hidden or 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
| (function ($) { | |
| $.fn.carregaOptions = function(configs) { | |
| var defaults = { | |
| options : [], | |
| template: function(val) { | |
| return '<option value="{0}">{1}</option>'.format(val[0], val[1]); | |
| } | |
| }; | |
| return this.each(function(val) { |
This file contains hidden or 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
| using FluentNHibernate.Conventions; | |
| using FluentNHibernate.Conventions.Helpers; | |
| namespace Aramis.Persistencia.Configuracao | |
| { | |
| public class AramisConventions | |
| { | |
| public static AramisConventions Recupera | |
| { | |
| get { return new AramisConventions(); } |
OlderNewer