Skip to content

Instantly share code, notes, and snippets.

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

Ronny Zapata ronnysuero

🏠
Working from home
View GitHub Profile
@ronnysuero
ronnysuero / git lg
Last active January 26, 2019 15:25
git color
git config --global alias.lg "log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit"
@ronnysuero
ronnysuero / .htaccess
Created January 26, 2016 16:44 — forked from keithics/.htaccess
Laravel and Shared hosting - Hostgator and without virtual host
AddHandler application/x-httpd-php53 .php
<IfModule mod_suphp.c>
suPHP_ConfigPath /public_html/DOMAIN.COM/public
<Files php.ini>
order allow,deny
deny from all
</Files>
</IfModule>
<IfModule mod_rewrite.c>
RewriteEngine On
set SERVEROUTPUT on size 100000;
DECLARE
VARIABE NUMBER;
BEGIN
VARIABE := IMPORTAR_PAISES_PKG.GUARDAR_PAISES( 26, 1, 'PRUEBA PARAM 1', 'PRUEBA PARAM 2', 1, 1 );
dbms_output.put_line(VARIABE);
END;