Skip to content

Instantly share code, notes, and snippets.

View fikoborquez's full-sized avatar

Francisco Borquez fikoborquez

View GitHub Profile
@fikoborquez
fikoborquez / gist:78e06592b2710c3d0693
Created October 1, 2014 06:44
Agregando url de ruta inexistente a log de errores de Laravel
App::error(function(Exception $exception, $code)
{
if ($exception instanceof \Symfony\Component\HttpKernel\Exception\NotFoundHttpException)
{
Log::error('URL de ruta inexistente: ' . Request::url() );
}
Log::error($exception);
});
@fikoborquez
fikoborquez / gist:d40fed98cd27b4e29831
Created September 20, 2014 18:58
Crecimiento horizontal de un div con scroll
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8" />
<meta name="author" content="Fiko" />
<title>Probando crecimiento horizontal de un div</title>
<style>
.contenedor {
overflow: hidden;
overflow-x: scroll;