Skip to content

Instantly share code, notes, and snippets.

View farandal's full-sized avatar

Francisco Aranda farandal

View GitHub Profile
@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: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 / 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 / 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 / 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;