Skip to content

Instantly share code, notes, and snippets.

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

Jhonn Rodriguez jhonnrodr

🏠
Working from home
  • Remote
View GitHub Profile
@lupena
lupena / AzulPaymentGateway.php
Last active December 16, 2021 05:15
Class to handle Azul Payment Gateway Methods / Banco Popular Dominicano BPD / Azul.com.do
/**
* PHP version 5
* @package AzulPaymentGateway
* @author ideologic SRL <touch@ideologic.do>
* @since File available since Release 1
*/
<?php namespace App;
// use Illuminate\Database\Eloquent\Model;
// use DB;
$webservice = file_get_contents("http://graph.facebook.com/linc.do");
$json = json_decode($webservice);
var_dump($json->likes);
@eneldoserrata
eneldoserrata / gist:1b8a14feca66a3b52b0f
Created August 25, 2014 23:32
numbers to letters
from itertools import ifilter
UNIDADES = (
'',
'UN ',
'DOS ',
'TRES ',
'CUATRO ',
'CINCO ',
'SEIS ',