Skip to content

Instantly share code, notes, and snippets.

View porfidev's full-sized avatar
⚛️
Now coding react-native

Porfirio Chávez porfidev

⚛️
Now coding react-native
View GitHub Profile
@porfidev
porfidev / functions.php
Last active August 29, 2015 14:27
Carrusel con BS3 y AngularJS
<?php
/**
* Created by PhpStorm.
* User: elporfirio
* Date: 15/08/15
* Time: 14:26
*/
#Datos para conexión
@porfidev
porfidev / consulta.php
Created September 25, 2015 18:17
Uso correcto de DataTables para erikmx
<?php
include 'config.php';
$mysqli->query("SET NAMES 'utf8'");
$querystr = 'SELECT ID, NOMBRE, APELLIDOPATERNO, APELLIDOMATERNO,SEXO
FROM maindb LIMIT 1000';
$res = $mysqli->query($querystr);
@porfidev
porfidev / app.js
Last active June 1, 2016 01:28
Curso Angular - 03.1 Práctica con Controladores
/**
* Created by elporfirio on 31/05/16.
*/
angular.module('practicapp', [])
.controller('ContenidoController', function(){
this.activo = 1;
this.activar = function(opcion){
this.activo = opcion;
@porfidev
porfidev / contador_ActualizarContador.php
Last active October 26, 2019 21:13
Contador con PHP y AJAX
<?php
/**
* Created by PhpStorm.
* User: elporfirio
* Date: 20/08/16
* Time: 11:49 AM
*/
require('Contador.php');
require('Registro.php');
@porfidev
porfidev / index.html
Created August 23, 2016 23:08
Previo a capturar o subir un archivo :)
<!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 */
@porfidev
porfidev / index.html
Created August 26, 2016 23:38
Cambiar la imagen de fondo con jQuery y CSS
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
.clase-miku {
background-image: url('anime-wallpaper-3.jpg');
}
@porfidev
porfidev / token-request-options.service.ts
Created June 5, 2017 18:53
Interceptor (Experimental) para Angular4
import {Injectable} from '@angular/core';
import {BaseRequestOptions, RequestOptions} from '@angular/http';
@Injectable()
export class TokenRequestOptionsService extends BaseRequestOptions {
private token: string;
constructor() {
super();
this.addToken();
console.log('hello')
@porfidev
porfidev / index.js
Created September 8, 2017 19:08
Trucos para Expresiones regulares
/** 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
@porfidev
porfidev / example.js
Created November 3, 2017 15:07
ngZone on Observable
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();
}