Skip to content

Instantly share code, notes, and snippets.

@sbarrat
sbarrat / Entrada.java
Created January 17, 2012 10:27
Clase que recoge los datos por teclado y devuelve lo que hemos escrito - JAVA
package entrada;
import java.io.*;
/**
* @author Ruben Lacasa
*
*/
public class Entrada {
/**
* @param args
@sbarrat
sbarrat / xmlrpcClientBugzilla.php
Created January 28, 2012 11:45
XMLRCP Client Bugzilla Login
/**
* require PEAR/XML_RPC2 library
* Works fine with bugzilla 4.0.3
*/
require_once 'XML/RPC2/Client.php';
$server = 'http://bugzilla.mydomain.com/xmlrpc.cgi';
$params = array( 'login' => 'bugzilla@mydomain.com','password' =>'mypassword', 'remember' => 1);
$client = XML_RPC2_Client::create( $server );
$userid = $client->__call( 'User.login' , $params );
@sbarrat
sbarrat / bugzillaWebService.php
Created January 31, 2012 09:17
XMLRPC_Client Bugzilla with Zend Framework
require_once 'Zend/Loader/Autoloader.php';
Zend_Loader_Autoloader::getInstance();
$server = 'http://bugzilla.mydomain.com/xmlrpc.cgi';
$client = new Zend_XmlRpc_Client( $server );
// Create the http client
$httpClient = new Zend_Http_Client();
$httpClient->setCookieJar();
$client->setHttpClient( $httpClient );
// Bugzilla Login
$params = new Zend_XmlRpc_Value_Struct(
@sbarrat
sbarrat / DBConnection.php
Created February 8, 2012 18:26
Singleton PDO DB Connection PHP
final class DBConnection {
private static $_handle = null;
private static $_dsn = "mysql:dbname=mydb;host=my.host.com;port=3306";
private static $_user = "myUserName";
private static $_password = "myPassword";
private static $_options = array(PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES utf8"); // SET UTF-8
/**
* Deny Construct
*/
@sbarrat
sbarrat / datepickerEs.js
Created July 20, 2012 16:03
Datepicker jQuery en castellano
$('.datepicker').datepicker({
dateFormat: "dd-mm-yy",
firstDay: 1,
dayNamesMin: ["Do", "Lu", "Ma", "Mi", "Ju", "Vi", "Sa"],
dayNamesShort: ["Dom", "Lun", "Mar", "Mie", "Jue", "Vie", "Sab"],
monthNames:
["Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio",
"Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre"],
monthNamesShort:
["Ene", "Feb", "Mar", "Abr", "May", "Jun",
@sbarrat
sbarrat / SumaTiempos.php
Last active December 17, 2015 16:59
Clase PHP para sumar tiempos / PHP Class to add times
<?php
/**
* SumaTiempos.php Clase para sumar tiempos
*
* Esta clase sirve para teniendo un tiempo inicial y un Array con tiempos
* los suma y nos devuelve el tiempo final
*
* PHP Version 5.3
*
* @author Ruben Lacasa Mas <ruben@rubenlacasa.es>
<!--
Demo de datepicker inline en castellano
Autor: Ruben Lacasa Mas <http://rubenlacasa.es>
-->
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="author" content="Ruben Lacasa Mas - rubenlacasa.es">
@sbarrat
sbarrat / datosEntreFechas.sql
Created June 12, 2013 07:58
Seleccionar datos entre dos fechas
SELECT data FROM tbl WHERE date BETWEEN date1 AND date2
@sbarrat
sbarrat / .htaccess
Created June 16, 2013 19:19
Acceso restringido de usuarios con Apache
AuthType Basic
AuthName "Mi Sitio Seguro"
AuthBasicProvider file
AuthUserFile /ruta/completa/ficheroUsuarios
Require valid-user
@sbarrat
sbarrat / vbaColorToWeb.php
Last active December 19, 2015 05:59
Function to change vba color to hex or rgb
/**
* vbaColorToWeb.php Class to convert VBA color to web Color
*
*
* PHP Version 5.3
*
* @author Ruben Lacasa Mas <ruben@rubenlacasa.es>
* @copyright 2013 Ruben Lacasa Mas http://rubenlacasa.es
* @license http://creativecommons.org/licenses/by-nc-nd/3.0
* CC-BY-NC-ND-3.0