- FrontEnd
- HTML5
- CSS3
- Stylus
- Angular JS
- Gulp
- jQuery
- BackEnd
- Django 1.8.4
- PostgreSQL o MySQL
| # -*- coding: utf-8 -*- | |
| import csv | |
| import logging | |
| import tablib | |
| from datetime import datetime | |
| from django.db.models import Model | |
| from django.db.models.fields.files import FieldFile | |
| from unicodedata import normalize | |
| from django.core.exceptions import PermissionDenied |
| ### Python template | |
| # Byte-compiled / optimized / DLL files | |
| __pycache__/ | |
| *.py[cod] | |
| # C extensions | |
| *.so | |
| # Distribution / packaging | |
| .Python |
| UPDATE wp_options SET option_value = REPLACE(option_value,'http://localhost/www/compraregalos','http://compraregalos.mx'); | |
| UPDATE wp_posts SET post_content = REPLACE(post_content,'http://localhost/www/compraregalos','http://compraregalos.mx'); | |
| UPDATE wp_posts SET guid = REPLACE(guid,'http://localhost/www/compraregalos','http://compraregalos.mx'); | |
| UPDATE wp_postmeta SET meta_value = REPLACE(meta_value,'http://localhost/www/compraregalos','http://compraregalos.mx'); |
| .filter("unscape",function(){ | |
| return function(input){ | |
| return input.replace(/\\/g, ''); | |
| } | |
| }); |
| var scripts = document.getElementById('#IDENTIFICADOR DE <script>'); | |
| var queryString = scripts.src.replace(/^[^\?]+\??/,''); | |
| var params = parseQuery( queryString ); | |
| function parseQuery ( query ) { | |
| var Params = new Object (); | |
| if ( ! query ) return Params; // return empty object | |
| var Pairs = query.split(/[;&]/); | |
| for ( var i = 0; i < Pairs.length; i++ ) { | |
| var KeyVal = Pairs[i].split('='); |
| $.datepicker.regional['es-MX'] = { | |
| renderer: $.ui.datepicker.defaultRenderer, | |
| monthNames: ['Enero','Febrero','Marzo','Abril','Mayo','Junio', | |
| 'Julio','Agosto','Septiembre','Octubre','Noviembre','Diciembre'], | |
| monthNamesShort: ['Ene','Feb','Mar','Abr','May','Jun', | |
| 'Jul','Ago','Sep','Oct','Nov','Dic'], | |
| dayNames: ['Domingo','Lunes','Martes','Miércoles','Jueves','Viernes','Sábado'], | |
| dayNamesShort: ['Dom','Lun','Mar','Mié','Juv','Vie','Sáb'], | |
| dayNamesMin: ['Do','Lu','Ma','Mi','Ju','Vi','Sá'], | |
| dateFormat: 'dd/mm/yy', |
| .directive('autoFocus', function($timeout) { | |
| return { | |
| restrict: 'AC', | |
| link: function(_scope, _element) { | |
| _element[0].focus(); | |
| } | |
| }; | |
| }) |
I hereby claim:
To claim this, I am signing this object:
composer global require "laravel/installer=~1.1"