This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package entrada; | |
import java.io.*; | |
/** | |
* @author Ruben Lacasa | |
* | |
*/ | |
public class Entrada { | |
/** | |
* @param args |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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' => '[email protected]','password' =>'mypassword', 'remember' => 1); | |
$client = XML_RPC2_Client::create( $server ); | |
$userid = $client->__call( 'User.login' , $params ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('.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", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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 <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
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"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT data FROM tbl WHERE date BETWEEN date1 AND date2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AuthType Basic | |
AuthName "Mi Sitio Seguro" | |
AuthBasicProvider file | |
AuthUserFile /ruta/completa/ficheroUsuarios | |
Require valid-user |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* vbaColorToWeb.php Class to convert VBA color to web Color | |
* | |
* | |
* PHP Version 5.3 | |
* | |
* @author Ruben Lacasa Mas <[email protected]> | |
* @copyright 2013 Ruben Lacasa Mas http://rubenlacasa.es | |
* @license http://creativecommons.org/licenses/by-nc-nd/3.0 | |
* CC-BY-NC-ND-3.0 |
OlderNewer