Skip to content

Instantly share code, notes, and snippets.

View farandal's full-sized avatar

Francisco Aranda farandal

View GitHub Profile
@farandal
farandal / LiferayHelper.java
Created March 18, 2013 04:32
Liferay Helper used in a Play Framework App to query the liferay json api
/* Author: Francisco Aranda ([email protected]) */
package controllers;
import org.apache.http.HttpHost;
import org.apache.http.HttpResponse;
import org.apache.http.NameValuePair;
import org.apache.http.auth.AuthScope;
import org.apache.http.auth.UsernamePasswordCredentials;
import org.apache.http.client.entity.UrlEncodedFormEntity;
@farandal
farandal / HttpHelper.java
Created March 18, 2013 04:33
Http Helper -> Java Class to read the content of a webpage
package controllers;
import org.apache.http.HttpResponse;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.DefaultHttpClient;
import java.io.BufferedReader;
import java.io.IOException;
@farandal
farandal / Api.java
Created March 18, 2013 04:34
Play Framework Controller to read Liferay data using the LiferayHelper
package controllers;
import com.google.gson.*;
import com.google.gson.reflect.TypeToken;
import play.*;
import play.api.libs.json.JsValue;
import play.api.libs.json.Json;
import play.api.templates.*;
import play.mvc.*;
@farandal
farandal / gist:5923317
Created July 3, 2013 22:11
Nginx, Timthumb, Improved Cache.
#Attention!, this scripts needs a modified version of timthumb you'll find in my git account.
#Francisco Aranda, Developer, Software Architect and Enterpreneur, Chile.
#http://farandal.com
#http://www.git.com/farandal
location ~ /thumb/.*\.(png|jpg)$ {
#set $domain yourdomain.com; # Change this to your site's domain name, you may or not need to uncomment this.
set $root_fcgi /home/user/public_html/yourdomain.com/public; # Change this to the public root folder of your site
set $root_cache $root_fcgi/thumb; # Change this to a folder in which to cache the minified files
@farandal
farandal / gist:6144701
Created August 3, 2013 01:34
Translated default messages for the jQuery validation plugin. Spanish
/*
* Translated default messages for the jQuery validation plugin.
* Locale: ES
*/
jQuery.extend(jQuery.validator.messages, {
required: "Este campo es obligatorio.",
remote: "Por favor, rellena este campo.",
email: "Por favor, escribe una dirección de correo válida",
@farandal
farandal / gist:6144702
Created August 3, 2013 01:35
Validación RUT JQuery validation plugin
/* Copyright (c) 2009 José Joaquín Núñez ([email protected]) http://joaquinnunez.cl/blog/
* Licensed under GPL (http://www.opensource.org/licenses/gpl-2.0.php)
* Use only for non-commercial usage.
*
* Version : 0.5
*
* Requires: jQuery 1.2+
*/
(function($)
@farandal
farandal / gist:6144704
Created August 3, 2013 01:36
//Integración validador de RUT para JQuery validator
//Integración validador de RUT para JQuery validator
$.validator.addMethod("rut", function(value, element) {
return this.optional(element) || $.Rut.validar(value);
}, "Este campo debe ser un rut valido.");
@farandal
farandal / gist:6222864
Last active December 21, 2015 00:48
Jquery Validation For Contact Form 7 http://dineshkarki.com.np/jquery-validation-for-contact-form-7 jquery.jvcf7_validation.js
(function($) {
$(function() {
try {
if (typeof _wpcf7 == 'undefined' || _wpcf7 === null)
_wpcf7 = {};
_wpcf7 = $.extend({ cached: 0 }, _wpcf7);
$('div.wpcf7 > form').each(function(i, n) {
@farandal
farandal / AsyncAMD
Last active January 4, 2016 06:49
AMD porting of Async library. https://github.com/caolan/async
define('lib/async', [
'ax/class',
'ax/util',
'app/model/api',
'ax/console',
'ax/config',
],
function (klass, util, api, console, xdkConfig) {
// Private
<?php
function executeCurl($arrOptions) {
$mixCH = curl_init();
foreach ($arrOptions as $strCurlOpt => $mixCurlOptValue) {
curl_setopt($mixCH, $strCurlOpt, $mixCurlOptValue);
}
$mixResponse = curl_exec($mixCH);