View generoPersona.php
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
function generoPersona($nombre, $provider = 'genderAPI') | |
{ | |
$providers = array( | |
'genderAPI' => array( | |
'url' => 'https://gender-api.com/get?name=', | |
'pais' => '&country=ES' | |
), | |
'genderize' => array( | |
'url' => 'https://api.genderize.io/?name=', | |
'pais' => '&country_id=es' |
View ExtractURLVarValues.sql
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
/** | |
Si le pasamos una cadena como: | |
'index.php?var=17&otravar=12&masvar=33&muchovar=21' | |
nos devuelve una tabla con los valores de las variables | |
*/ | |
DROP PROCEDURE IF EXISTS extractVars; | |
CREATE PROCEDURE extractVars(url VARCHAR(255)) | |
BEGIN | |
DECLARE posicion INT; | |
DECLARE fin INT; |
View quitaEspacios.php
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 | |
function quitaEspacios($texto) | |
{ | |
$partes = explode(' ', $texto); | |
$textoLimpio = ""; | |
foreach ($partes as $parte) { | |
if (strlen($parte) > 0 || $parte != "") { | |
$nombreLimpio .= $parte." "; | |
} | |
} |
View Preferences.sublime-settings
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
Show hidden characters
{ | |
"auto_complete": true, | |
"auto_complete_commit_on_tab": true, | |
"auto_complete_with_fields": true, | |
"bold_folder_labels": true, | |
"caret_style": "phase", | |
"color_scheme": "Packages/User/base16-ocean.light (SL).tmTheme", | |
"detect_indentation": true, | |
"fade_fold_buttons": false, | |
"folder_exclude_patterns": |
View vbaColorToWeb.php
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 <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 |
View .htaccess
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 |
View datosEntreFechas.sql
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 |
View datePickerInlineEs.html
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"> |
View SumaTiempos.php
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 <ruben@rubenlacasa.es> |
View datepickerEs.js
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", |
NewerOlder