Skip to content

Instantly share code, notes, and snippets.

View fbidu's full-sized avatar

Felipe Rodrigues fbidu

View GitHub Profile
@fbidu
fbidu / .travis.yml
Last active September 28, 2015 21:19
Using Codeception inside Travis CI
language: php
php:
- 5.5
- hhvm
cache:
directories:
- vendor
- $HOME/.composer/cache
install:
@fbidu
fbidu / first_week_day.sql
Created May 29, 2015 19:05
Draft of a function that returns the first weekday of a month
DROP FUNCTION first_week_day;
DELIMITER //
CREATE FUNCTION first_week_day (year INT, month INT, weekday_index INT)
RETURNS VARCHAR(10)
DETERMINISTIC
BEGIN
DECLARE day_number INT DEFAULT 1;
DECLARE date_string VARCHAR(10);
SET date_string = CONCAT(convert(year, char), "-", convert(month, char), "-", convert(day_number, char));
return date_string;
@fbidu
fbidu / monte_carlo.py
Last active February 6, 2023 15:00
Monte Carlo Pi em Python
# -*- encoding: latin-1 -*
# Importando a biblioteca de matematica
import math
# Importando a biblioteca de aleatoriedade
import random
# Inicialmente, não temos nenhum ponto 'dentro' do circulo
pontos_no_circulo = 0