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 static void Main() | |
{ | |
var paraCadastrar = new [] | |
{ | |
new { Chave = "CSVDEFAULT", Descricao = "Descrição detalhada (ou não)" }, | |
new { Chave = "JSONDEFAULT", Descricao = "Descrição detalhada (ou não)" }, | |
new { Chave = "YAML", Descricao = "Descrição detalhada (ou não)" }, | |
new { Chave = "INIT", Descricao = "Descrição detalhada (ou não)" }, | |
new { Chave = "CONFIG", Descricao = "Descrição detalhada (ou não)" }, | |
new { Chave = "BSON", Descricao = "Descrição detalhada (ou não)" }, |
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
$boleto = PagueVeloz::Boleto(); | |
$boleto->auth | |
->setEmail('[email protected]') | |
->setToken('seutokenacessoaopagueveloz'); | |
$boleto->dto | |
->setValor(740) | |
->setVencimento('400000000000044') | |
->setSeuNumero('123') |
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
The javascript function isSameWeek() checks if two dates are in the same week. | |
The extra logic in the code validades when the week begins in a year and ends in another one. | |
The getWeek() function is found at http://javascript.about.com/library/blweekyear.htm | |
------ | |
A [Pen](http://codepen.io/jeanlourenco/pen/gpabqr) by [Jean Carlos Lourenço](http://codepen.io/jeanlourenco) on [CodePen](http://codepen.io/). | |
[License](http://codepen.io/jeanlourenco/pen/gpabqr/license). |
NewerOlder