- 0 [REPETIDA]
- 1
- 2
- 3
- 4
- 5 [REPETIDA]
- 6
- 7
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
namespace Leste.Robot.Base | |
{ | |
public enum Environment | |
{ | |
Development = 0x01, | |
Homologation = 0x02, | |
Production = 0x04, | |
/// <summary> | |
/// Includes Development | Homologation | Production | |
/// </summary> |
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 System; | |
namespace BlackScholes | |
{ | |
/// <summary> | |
/// Summary description for BlackSholes. | |
/// </summary> | |
public class BlackSholes |
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
/* ========================================================= | |
* composer-view.js v0.2.1 | |
* ========================================================= | |
* Copyright 2013 Wpbakery | |
* | |
* Visual composer backbone/underscore version | |
* ========================================================= */ | |
(function ( $ ) { | |
var i18n = window.i18nLocale, | |
store = vc.storage, |
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 System; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Linq; | |
using System.Text; | |
public static class Program | |
{ | |
public static void Main(string[] args) | |
{ |
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
internal abstract class AbstractDays360 | |
{ | |
public abstract int Calculate(DateTime start, DateTime end); | |
protected static int Calculate(DateTime start, DateTime end, int startDay, int endDay) | |
{ | |
return (end.Year - start.Year) * 360 + (end.Month - start.Month) * 30 + (endDay - startDay); | |
} | |
protected static bool LastDayOfFebruary(DateTime date) |
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 System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
using NUnit.Framework; | |
using SharpTestsEx; | |
using Vinci.Framework.DataBase; | |
namespace TestDapper |
Ser aficionado por tecnologia não é ficar horas em uma fila para ser o primeiro a comprar alguma novidade.
Muito menos comprar tudo que está na moda.
Virou cool ser geek. O nerd da galera. Aficionado por tecnologia é o cara que constrói o que quer, mesmo que só tenha um bando de lixo velho disponível.
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
private static void GetQuotes(PerSecurityWSClient client) | |
{ | |
var instrument_search = "PETR4 BZ"; | |
Console.WriteLine("Fazendo requisição de preços de {0}", instrument_search); | |
var instruments = new List<Instrument> { new Instrument() { id = instrument_search, yellowkey = MarketSector.Equity, yellowkeySpecified = true, type = InstrumentType.TICKER, typeSpecified = false } }; | |
var submitQuotesRequest = client.submitGetQuotesRequest(new SubmitGetQuotesRequest() | |
{ |
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
<div class="alert"> | |
<div class="green"> | |
<div class="container"> | |
<div class="row"> | |
<div class="span12"> | |
Sucesso! Seu formulário foi preenchido corretamente. | |
</div> | |
</div> | |
</div> | |
</div> |
NewerOlder