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
Just add %AppData%\npm; to the user variable(since %AppData% dir is depending on user) PATH to fix it. |
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
Microsoft Visual Studio Enterprise 2015 | |
Version 14.0.25431.01 Update 3 | |
Microsoft .NET Framework | |
Version 4.6.01590 | |
Installed Version: Enterprise | |
Architecture and Modeling Tools 00322-80000-00000-AA784 | |
Microsoft Architecture and Modeling Tools | |
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 regexCep = /^\d{5}\-?\d{3}$/; |
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 Cep(cep) { | |
// constructor | |
this._cep = cep; | |
this.cepEhValido = cepEhValido; | |
this.comPontos = comPontos; | |
this.semPontos = semPontos; | |
if (cep) | |
_lancarExcecaoSeCepForInvalido(cep); |
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
/c "C:\tools\cmder\Cmder.exe /start %folder%" |
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
[user] | |
name = André Franciscato Paggi | |
email = [email protected] | |
[diff] | |
tool = tortoisediff | |
[difftool] | |
prompt = false |
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
<?xml version="1.0" encoding="utf-8"?> | |
<key name="Software"> | |
<key name="ConEmu"> | |
<key name=".Vanilla" modified="2018-04-16 11:28:54" build="180206"> | |
<value name="StartType" type="hex" data="02"/> | |
<value name="CmdLine" type="string" data=""/> | |
<value name="StartTasksFile" type="string" data=""/> | |
<value name="StartTasksName" type="string" data="{cmd::Cmder}"/> | |
<value name="StartFarFolders" type="hex" data="00"/> | |
<value name="StartFarEditors" type="hex" data="00"/> |
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
<FormatProfile Name="Default" LanguageId="{3e02aa62-f0e5-43bf-ae87-c70419725a15}"> | |
<FormatOptions> | |
<PropertyValue Name="Select_SingleLine_WhenRightMarginIsNotExceeded">false</PropertyValue> | |
<SubOptions Name="Select_SingleLine_WhenQueryIsShorterThanXCharacters"> | |
<PropertyValue Name="Checked">false</PropertyValue> | |
<PropertyValue Name="Value">50</PropertyValue> | |
</SubOptions> | |
<SubOptions Name="Select_SingleLine_WhenQueryContainsLessThanXWords"> | |
<PropertyValue Name="Checked">false</PropertyValue> | |
<PropertyValue Name="Value">10</PropertyValue> |
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 CompraParaAprovarPagamentoDTO ObterCompraParaAprovarPagamentoDTO(int idCompra) | |
{ | |
using (SqlConnection conexao = new SqlConnection(_config.GetConnectionString("DbLoja"))) | |
{ | |
var sql = $@" | |
select | |
'IdCompra' = Compra.IdCompra, | |
'Pagamentos_Sequencial' = CompraFormaPagamento.Sequencial, | |
'Pagamentos_ValorJuros' = (select sum(CompraFormaPagamento.ValorJuros) from CompraFormaPagamento CFP where CFP.IdCompraFormaPagamento = CompraFormaPagamento.IdCompraFormaPagamento), | |
'Pagamentos_ValorMeioPagamento' = (select sum(CompraFormaPagamento.ValorComJuros) from CompraFormaPagamento CFP where CFP.IdCompraFormaPagamento = CompraFormaPagamento.IdCompraFormaPagamento), |
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
Newtonsoft.Json.JsonConvert.SerializeObject(myObj, Newtonsoft.Json.Formatting.None, new Newtonsoft.Json.JsonSerializerSettings(){ ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Ignore }) |