Skip to content

Instantly share code, notes, and snippets.

View pedryvo's full-sized avatar
🏠
Working from home

Pedro Ivo Dias pedryvo

🏠
Working from home
  • Brasil
View GitHub Profile
@pedryvo
pedryvo / fibo.rb
Last active May 5, 2019 02:26
speedio test
def fibonacci(n)
return 0 if n == 0
return 1 if n > 0 && n <= 2
first = 1
second = 1
until n < 3
fibonacci = first + second
first = second
second = fibonacci
n -= 1
ESTADOS_BRASILEIROS = [
["Acre", "AC"],
["Alagoas", "AL"],
["Amapá", "AP"],
["Amazonas", "AM"],
["Bahia", "BA"],
["Ceará", "CE"],
["Distrito Federal", "DF"],
["Espírito Santo", "ES"],
["Goiás", "GO"],
@pedryvo
pedryvo / contact.php
Created August 7, 2017 19:31 — forked from libryder/contact.php
Super simple PHP contact form in one file
<html>
<head>
<title>Contact Us</title>
</head>
<body>
<?php
if ($_POST['message']) {
$message = $_POST['message'];