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
' Acesse http://www.plantuml.com/plantuml/ cole o conteudo abaixo e envie... | |
' Documentação do padrão de escrita: http://plantuml.com/activity2.html | |
' ------------------- | |
@startuml | |
title NFePHP - Fluxo de Autorização (Envio) | |
start | |
:NFe.entrada('file.nfe'); | |
if (NFe.getFormato()) then ([TXT]) | |
:NFe.converteToXML(); | |
else |
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
{{-- Define all our servers --}} | |
@servers(['staging' => '', 'production' => '']) | |
@setup | |
{{-- The timezone your servers run in --}} | |
$timezone = 'Europe/Amsterdam'; | |
{{-- The base path where your deployments are sitting --}} | |
$path = '/var/www/site.com/htdocs'; |
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
<?php | |
namespace Test; | |
trait PrivateTrait | |
{ | |
/** | |
* @param string|Object $obj Object | |
* @param string $name Method Name | |
* @param array $args | |
* @return mixed its based on method result; |
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 subprocess | |
import os | |
import time | |
FNULL = open(os.devnull, 'w') | |
out = "out.txt" # The address, seed, private key output in out.txt | |
store = "store.txt" # the text file that will store all the generated address details | |
genex = "dcraddrgen.exe" # put the direct path link to the exe if its not in the same directory as the python code | |
req = "DsRick" # put your own name in place of 'Rick' (Make it less than 5 chars. should take lesser time | |
size = len(req) |
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
<?php | |
/** | |
* Decred vanity generator | |
* Inspired by RiCK: https://gist.github.com/Retord/4cffeae3516e2c99fa0d | |
* | |
* @author Walker de Alencar <@walkeralencar> | |
*/ | |
$config = [ | |
'type' => 'noseed', // can use: 'seed' or 'noseed' or 'regtest' or 'simnet' or 'testnet' | |
'prefix' => 'DsVanity', // overwrite Vanity by your name, use less than 5 chars. should take lesser time |
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
<?php | |
/** | |
* Decred class to simplify the use of dcraddrgen | |
* @author Walker de Alencar <@walkeralencar> | |
* @license LGPL 3 | |
*/ | |
namespace Decred; | |
class Wallet | |
{ |
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
#!/bin/bash | |
############################################################# | |
# Lisk Installation Script # | |
# by: Isabella Dell # | |
# Date: 15/05/2016 # | |
# contribs: Walker de Alencar [4827888033055033464L] # | |
############################################################# | |
#Variable Declaration | |
UNAME=$(uname)-$(uname -m) |
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
@startuml | |
' Access http://www.plantuml.com/plantuml/ paste this content and send... | |
' @author Walker de Alencar <[email protected]> | |
title WebDevOPS - Diagram | |
frame "Docker Hub" { | |
frame "Oficial Images" { | |
artifact alpine | |
artifact busybox | |
artifact centos | |
artifact debian |
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
''' | |
' Acesse http://www.plantuml.com/plantuml/ cole o conteudo abaixo e envie... | |
' Documentação do padrão de escrita: http://plantuml.com/activity2.html | |
' | |
' Para utilizar o protótipo do BNDESToken: | |
' - os clientes e fornecedores precisam criar contas na rede Ethereum; | |
' - e associar essas contas ao seu CNPJ utilizando um certificado digital padrão ICP-Brasil. | |
' - Após a realização dessa associação o BNDES pode liberar recursos para a conta do cliente. | |
' - O cliente pode usar a solução para pagar fornecedores que estejam prestando serviços para o projeto financiado pelo BNDES. | |
' - Após o recebimento dos BNDESTokens, os fornecedores devem solicitar seu resgaste ao BNDES, única opção para convertê-los em reais. |
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
// Improve informations from albiononline2d | |
// Load any page, open console, and use the code. | |
// Author: Walker de Alencar <[email protected]> | |
/* Works only for journals | |
config.itemsForMarketData = config.itemsForMarketData.split(',') | |
config.itemsForMarketData.forEach(function(item,key){ | |
if (!item.includes('_FULL')) { | |
$("#" + item).prop('id',item + '_FULL'); | |
config.itemsForMarketData[key] = item + '_FULL'; | |
} |
OlderNewer