Skip to content

Instantly share code, notes, and snippets.

View jardelsantana's full-sized avatar

Jardel Santana jardelsantana

View GitHub Profile
@jonatanfroes
jonatanfroes / gist:1935123
Created February 28, 2012 21:06
Buscar CEP CodeIgniter
//helper cep
if ( ! function_exists('buscar_endereco'))
{
function buscar_endereco($cep)
{
$cep = str_replace('.', '', $cep);
$cep = str_replace('-', '', $cep);
$url = 'http://republicavirtual.com.br/web_cep.php?cep='.urlencode($cep).'&formato=query_string';
@marasergio
marasergio / HibernateUtil.java
Created November 9, 2011 18:39
HibernateUtil - Configuração
package configuracao;
import org.hibernate.SessionFactory;
import org.hibernate.cfg.AnnotationConfiguration;
/**
*
* @author Mara
*/
public class HibernateUtil {