Put genesis.json, Dockerfile, docker-compose.yml and .env files together in the same folder. Then run the command.
docker-compose up
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
var data = new List<int> { 14, 07, 50, 17, 04, 05, 12, 03 }; | |
var valorPorAposta = 5; | |
var result = Combinations(data).ToList(); | |
var qntJogos = 0; |
version: '3.8' | |
services: | |
app: | |
image: 'jc21/nginx-proxy-manager:latest' | |
restart: unless-stopped | |
ports: | |
- '80:80' | |
- '81:81' | |
- '443:443' | |
volumes: |
using System; | |
using System.Security.Cryptography; | |
using System.Security.Cryptography.X509Certificates; | |
namespace CertificateGenerator | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace PocClassPropertiesList | |
{ | |
public class padraoDto | |
{ |
var SignedXml = require('xml-crypto').SignedXml; | |
var FileKeyInfo = require('xml-crypto').FileKeyInfo; | |
LocalSchema.statics.sign = function(options, cb) { | |
var user = options.user; | |
if(user.orgId !== options.payload.orgId) { | |
return cb(HD.errors.unauthorizedAction, {}); | |
} |
//+------------------------------------------------------------------+ | |
//| sample.mq5 | | |
//+------------------------------------------------------------------+ | |
#property copyright "Copyright 2021, xyz" | |
#property link "https://www.xyz.com.br" | |
#define TESTE_VERSAO "1.000"// xxx.yyy | |
#property version TESTE_VERSAO | |
#property description "xyz." | |
#property description "xyz. " |
const chunkString = (valor: string, tamanho: number): Array<string> => { | |
return valor.match(new RegExp('.{1,' + tamanho + '}', 'g')) as Array<string>; | |
} | |
const valor3uuid = 'bd08927cd4714fc6b8fb63d8061096c0a7eae0975910406089714028e57062d074d74b7acef344aebab676d1d08d925f'; | |
const listaPalavras = chunkString((valor3uuid).substring(0, 72), 6); | |
console.log(listaPalavras); | |
console.log(listaPalavras.join(' ')); |
pragma solidity ^0.8.15; | |
// SPDX-License-Identifier: MIT | |
contract PaymentSplitter { | |
address payable [] public recipients; | |
event TransferReceived(address _from, uint _amount); | |
constructor(address payable [] memory _addrs) { | |
for(uint i=0; i<_addrs.length; i++){ | |
recipients.push(_addrs[i]); |
using System; | |
public class TimeUtils { | |
private static readonly DateTime Jan1st1970 = new DateTime | |
(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc); | |
public static long CurrentTimeMillis() | |
{ | |
return (long) (DateTime.UtcNow - Jan1st1970).TotalMilliseconds; | |
} |