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 | |
/** | |
* Created by PhpStorm. | |
* User: elporfirio | |
* Date: 15/08/15 | |
* Time: 14:26 | |
*/ | |
#Datos para conexión |
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 | |
include 'config.php'; | |
$mysqli->query("SET NAMES 'utf8'"); | |
$querystr = 'SELECT ID, NOMBRE, APELLIDOPATERNO, APELLIDOMATERNO,SEXO | |
FROM maindb LIMIT 1000'; | |
$res = $mysqli->query($querystr); |
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
/** | |
* Created by elporfirio on 31/05/16. | |
*/ | |
angular.module('practicapp', []) | |
.controller('ContenidoController', function(){ | |
this.activo = 1; | |
this.activar = function(opcion){ | |
this.activo = opcion; |
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 | |
/** | |
* Created by PhpStorm. | |
* User: elporfirio | |
* Date: 20/08/16 | |
* Time: 11:49 AM | |
*/ | |
require('Contador.php'); | |
require('Registro.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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Subir Archivo o tomar foto</title> | |
</head> | |
<style> | |
.modal { | |
display: none; /* Hidden by default */ | |
position: fixed; /* Stay in place */ |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Title</title> | |
<style> | |
.clase-miku { | |
background-image: url('anime-wallpaper-3.jpg'); | |
} |
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
import {Injectable} from '@angular/core'; | |
import {BaseRequestOptions, RequestOptions} from '@angular/http'; | |
@Injectable() | |
export class TokenRequestOptionsService extends BaseRequestOptions { | |
private token: string; | |
constructor() { | |
super(); | |
this.addToken(); |
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
console.log('hello') |
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
/** Declaración de expresiones regulares **/ | |
var regexp = new RegExp('abc'); // Objeto | |
var regexp2 = /abc/; // Literales | |
/** Encontrar al menos un carácter en la lista **/ | |
var regexp3 = /[0123456789]/; | |
var regexp3alter = /[0-9]/; | |
/** GUIA RAPIDA DE ATAJOS |
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
return Observable.create(observer => { | |
this.ngZone.run(() => { | |
params.callback = (result) => { | |
if (result.status === 'FAIL') { | |
observer.error(result.errorDetails || result.errorMessage); | |
} else { | |
observer.next(result); | |
observer.complete(); | |
} |