Skip to content

Instantly share code, notes, and snippets.

@ig10
ig10 / search&destroy.rb
Created February 21, 2014 17:40
Search & Destroy IMG's
#!/usr/bin/ruby
# -*- encoding : utf-8 -*-
#Author: Ignacio Diez (i10)
#Date: July 14, 2012
puts "Eliminando Imagenes del Comparador\n====================================\n > Seleccione Sistema Operativo:\n"
puts " 1 - Mac\n 2 - Ubuntu"
raiz = {1 => "users", 2 => "home"}
@ig10
ig10 / CookieHandler.js
Last active December 27, 2015 00:59
JS+jQuery Cookie Handler
var Cookie = {
existe: function(nombre){
var cookies = document.cookie.split(';');
var existe = false;
$j.each(cookies, function(c, v){
if($j.trim(v).split('=')[0] == nombre){
existe = true;
}
});
return existe;