Skip to content

Instantly share code, notes, and snippets.

View vesche's full-sized avatar
🛸
I WANT TO BELIEVE

Austin Jackson vesche

🛸
I WANT TO BELIEVE
View GitHub Profile
#!/usr/bin/env python
import requests
MORSE_MAP = {
'A': '.-', 'B': '-...', 'C': '-.-.',
'D': '-..', 'E': '.', 'F': '..-.',
'G': '--.', 'H': '....', 'I': '..',
'J': '.---', 'K': '-.-', 'L': '.-..',
'M': '--', 'N': '-.', 'O': '---',
print('OoT Dampe Heart Piece Cumulative Probability\n')
print('\t'.join(['try', 'probability', 'equation']))
for i in range(1, 99):
print('\t'.join([
f'{i:<4}',
f'{str(round((1-(9/10)**i)*100, 3))+"%":<12}',
f'1 - (9/10)**{i}',
]))
#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
#include <unistd.h>
#include <dirent.h>
#include <string.h>
#include <openssl/evp.h>
#include <curl/curl.h>
#define KEY_SERVER_IP "1.2.3.4"