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 | |
$url = 'https://ws.pagseguro.uol.com.br/v2/pre-approvals/request'; | |
$data['email'] = '[email protected]'; | |
$data['token'] = 'TOKEN'; | |
$data['currency'] = 'BRL'; | |
$data['reference'] = $id_cliente; | |
$data['senderName'] = $cliente['nome']; |
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
/* | |
Visite: www.GeeksBR.com | |
Programação em C - Lista encadeada (linked list) | |
Funcionalidades: | |
1) - Criar lista | |
2) - Adicionar na lista | |
3) - Listar os elementos da lista | |
4) - Verificar se a lista está vazia | |
5) - Buscar elemento na lista | |
6) - Remover elemento da lista |
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 matplotlib.pyplot as plt | |
import numpy as np | |
import math | |
from scipy.stats import binom | |
# %% | |